Class: Aws::IoTAnalytics::Types::CustomerManagedChannelS3Storage
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::CustomerManagedChannelS3Storage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
Used to store channel data in an S3 bucket that you manage. If customer-managed storage is selected, the ‘retentionPeriod` parameter is ignored. You can’t change the choice of S3 storage after the data store is created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the S3 bucket in which channel data is stored.
-
#key_prefix ⇒ String
(Optional) The prefix used to create the keys of the channel data objects.
-
#role_arn ⇒ String
The ARN of the role that grants IoT Analytics permission to interact with your Amazon S3 resources.
Instance Attribute Details
#bucket ⇒ String
The name of the S3 bucket in which channel data is stored.
698 699 700 701 702 703 704 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 698 class CustomerManagedChannelS3Storage < Struct.new( :bucket, :key_prefix, :role_arn) SENSITIVE = [] include Aws::Structure end |
#key_prefix ⇒ String
(Optional) The prefix used to create the keys of the channel data objects. Each object in an S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).
698 699 700 701 702 703 704 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 698 class CustomerManagedChannelS3Storage < Struct.new( :bucket, :key_prefix, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that grants IoT Analytics permission to interact with your Amazon S3 resources.
698 699 700 701 702 703 704 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 698 class CustomerManagedChannelS3Storage < Struct.new( :bucket, :key_prefix, :role_arn) SENSITIVE = [] include Aws::Structure end |