Amazon CodePipeline · JSON Structure

Amazon Codepipeline Artifact Detail Structure

Artifact details for the action execution, such as the artifact location.

Type: object Properties: 2
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

ArtifactDetail is a JSON Structure definition published by Amazon CodePipeline, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name s3location

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-artifact-detail-structure.json",
  "name": "ArtifactDetail",
  "description": "Artifact details for the action execution, such as the artifact location.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArtifactName"
        },
        {
          "description": "The artifact object name for the action execution."
        }
      ]
    },
    "s3location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Location"
        },
        {
          "description": "The Amazon S3 artifact location for the action execution."
        }
      ]
    }
  }
}