{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simspace-weaver/refs/heads/main/json-schema/amazon-simspace-weaver-s3-destination-schema.json",
"title": "S3Destination",
"description": "An Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates a file.",
"type": "object",
"properties": {
"BucketName": {
"allOf": [
{
"$ref": "#/components/schemas/BucketName"
},
{
"description": "The name of an Amazon S3 bucket. For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide."
}
]
},
"ObjectKeyPrefix": {
"allOf": [
{
"$ref": "#/components/schemas/ObjectKeyPrefix"
},
{
"description": "A string prefix for an Amazon S3 object key. It's usually a folder name. For more information about folders in Amazon S3, see Organizing objects in the Amazon S3 console using folders in the Amazon Simple Storage Service User Guide."
}
]
}
}
}