S3Location

The Amazon S3 artifact location for an action's artifacts.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
bucket object
key object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-s3-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-s3-location-schema.json",
  "title": "S3Location",
  "description": "The Amazon S3 artifact location for an action's artifacts.",
  "type": "object",
  "properties": {
    "bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "The Amazon S3 artifact bucket for an action's artifacts."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "The artifact name."
        }
      ]
    }
  }
}