Amazon Proton · JSON Structure

Amazon Proton S3Object Source Structure

Template bundle S3 bucket data.

Type: object Properties: 2 Required: 2
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

S3ObjectSource is a JSON Structure definition published by Amazon Proton, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

bucket key

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-proton/refs/heads/main/json-structure/amazon-proton-s3object-source-structure.json",
  "name": "S3ObjectSource",
  "description": "Template bundle S3 bucket data.",
  "type": "object",
  "properties": {
    "bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "The name of the S3 bucket that contains a template bundle."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": "The path to the S3 bucket that contains a template bundle."
        }
      ]
    }
  },
  "required": [
    "bucket",
    "key"
  ]
}