CustomerManagedS3Storage

Contains information about a customer managed Amazon S3 bucket.

Asset ManagementIndustrial IoTIoTTime Series Data

Properties

Name Type Description
s3ResourceArn object
roleArn object
View JSON Schema on GitHub

JSON Schema

iot-sitewise-customer-managed-s3-storage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-customer-managed-s3-storage-schema.json",
  "title": "CustomerManagedS3Storage",
  "description": "Contains information about a customer managed Amazon S3 bucket.",
  "type": "object",
  "properties": {
    "s3ResourceArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ARN"
        },
        {
          "description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the Amazon S3 object. For more information about how to find the ARN for an Amazon S3 object, see <a href=\"https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-arn-format.html\">Amazon S3 resources</a> in the <i>Amazon Simple Storage Service User Guide</i>."
        }
      ]
    },
    "roleArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ARN"
        },
        {
          "description": "The <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html\">ARN</a> of the Identity and Access Management role that allows IoT SiteWise to send data to Amazon S3."
        }
      ]
    }
  },
  "required": [
    "s3ResourceArn",
    "roleArn"
  ]
}