Amazon Compute Optimizer · JSON Structure

Compute Optimizer S3 Destination Structure

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.

Type: object Properties: 3
Cost OptimizationFinOpsMachine LearningResource Recommendations

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

Properties

bucket key metadataKey

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-compute-optimizer/refs/heads/main/json-structure/compute-optimizer-s3-destination-structure.json",
  "name": "S3Destination",
  "description": "Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.",
  "type": "object",
  "properties": {
    "bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DestinationBucket"
        },
        {
          "description": "The name of the Amazon S3 bucket used as the destination of an export file."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DestinationKey"
        },
        {
          "description": "<p>The Amazon S3 bucket key of an export file.</p> <p>The key uniquely identifies the object, or export file, in the S3 bucket.</p>"
        }
      ]
    },
    "metadataKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MetadataKey"
        },
        {
          "description": "<p>The Amazon S3 bucket key of a metadata file.</p> <p>The key uniquely identifies the object, or metadata file, in the S3 bucket.</p>"
        }
      ]
    }
  }
}