ArtifactLocation

Represents information about the location of an artifact.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
type object
s3Location object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-artifact-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-artifact-location-schema.json",
  "title": "ArtifactLocation",
  "description": "Represents information about the location of an artifact.",
  "type": "object",
  "properties": {
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArtifactLocationType"
        },
        {
          "description": "The type of artifact in the location."
        }
      ]
    },
    "s3Location": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3ArtifactLocation"
        },
        {
          "description": "The S3 bucket that contains the artifact."
        }
      ]
    }
  }
}