Class: Aws::IoTAnalytics::Types::ChannelStorage
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::ChannelStorage
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
When making an API call, you may pass ChannelStorage data as a hash:
{
service_managed_s3: {
},
customer_managed_s3: {
bucket: "BucketName", # required
key_prefix: "S3KeyPrefix",
role_arn: "RoleArn", # required
},
}
Where channel data is stored. You may choose one of serviceManagedS3
or customerManagedS3
storage. If not specified, the default is
serviceManagedS3
. This cannot be changed after creation of the
channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_managed_s3 ⇒ Types::CustomerManagedChannelS3Storage
Use this to store channel data in an S3 bucket that you manage.
-
#service_managed_s3 ⇒ Types::ServiceManagedChannelS3Storage
Use this to store channel data in an S3 bucket managed by AWS IoT Analytics.
Instance Attribute Details
#customer_managed_s3 ⇒ Types::CustomerManagedChannelS3Storage
Use this to store channel data in an S3 bucket that you manage. If
customer managed storage is selected, the retentionPeriod
parameter is ignored. You cannot change the choice of
service-managed or customer-managed S3 storage after the channel is
created.
318 319 320 321 322 323 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 318 class ChannelStorage < Struct.new( :service_managed_s3, :customer_managed_s3) SENSITIVE = [] include Aws::Structure end |
#service_managed_s3 ⇒ Types::ServiceManagedChannelS3Storage
Use this to store channel data in an S3 bucket managed by AWS IoT Analytics. You cannot change the choice of service-managed or customer-managed S3 storage after the channel is created.
318 319 320 321 322 323 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 318 class ChannelStorage < Struct.new( :service_managed_s3, :customer_managed_s3) SENSITIVE = [] include Aws::Structure end |