S3Destination

An Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates a file.

DefenseDigital TwinSimulationSpatial Simulation

Properties

Name Type Description
BucketName object
ObjectKeyPrefix object
View JSON Schema on GitHub

JSON Schema

amazon-simspace-weaver-s3-destination-schema.json Raw ↑
{
  "$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 <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html\">Creating, configuring, and working with Amazon S3 buckets</a> in the <i>Amazon Simple Storage Service User Guide</i>."
        }
      ]
    },
    "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 <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-folders.html\">Organizing objects in the Amazon S3 console using folders</a> in the <i>Amazon Simple Storage Service User Guide</i>."
        }
      ]
    }
  }
}