Amazon CodeDeploy · JSON Structure

Amazon Codedeploy S3 Location Structure

Information about the location of application artifacts stored in Amazon S3.

Type: object Properties: 5
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

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

Properties

bucket key bundleType version eTag

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-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-s3-location-structure.json",
  "name": "S3Location",
  "description": "Information about the location of application artifacts stored in Amazon S3.",
  "type": "object",
  "properties": {
    "bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "The name of the Amazon S3 bucket where the application revision is stored."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "The name of the Amazon S3 object that represents the bundled artifacts for the application revision."
        }
      ]
    },
    "bundleType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BundleType"
        },
        {
          "description": "<p>The file type of the application revision. Must be one of the following:</p> <ul> <li> <p> <code>tar</code>: A tar archive file.</p> </li> <li> <p> <code>tgz</code>: A compressed tar archive file.</p> </li> <li> <p> <code>zip</code>: A zip archive file.</p> </li> </ul>"
        }
      ]
    },
    "version": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VersionId"
        },
        {
          "description": "<p>A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.</p> <p>If the version is not specified, the system uses the most recent version by default.</p>"
        }
      ]
    },
    "eTag": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ETag"
        },
        {
          "description": "<p>The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.</p> <p>If the ETag is not specified as an input parameter, ETag validation of the object is skipped.</p>"
        }
      ]
    }
  }
}