You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::IoTAnalytics::Types::DatastoreStorage
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::DatastoreStorage
- Defined in:
- (unknown)
Overview
When passing DatastoreStorage as input to an Aws::Client method, you can use a vanilla Hash:
{
service_managed_s3: {
},
customer_managed_s3: {
bucket: "BucketName", # required
key_prefix: "S3KeyPrefix",
role_arn: "RoleArn", # required
},
}
Where data store data is stored. You can choose one of serviceManagedS3
or customerManagedS3
storage. If not specified, the default is serviceManagedS3
. You cannot change this storage option after the data store is created.
Returned by:
Instance Attribute Summary collapse
-
#customer_managed_s3 ⇒ Types::CustomerManagedDatastoreS3Storage
Use this to store data store data in an S3 bucket that you manage.
-
#service_managed_s3 ⇒ Types::ServiceManagedDatastoreS3Storage
Use this to store data store data in an S3 bucket managed by AWS IoT Analytics.
Instance Attribute Details
#customer_managed_s3 ⇒ Types::CustomerManagedDatastoreS3Storage
Use this to store data store data in an S3 bucket that you manage. When
customer managed storage is selected, the retentionPeriod
parameter is
ignored. The choice of service-managed or customer-managed S3 storage
cannot be changed after creation of the data store.
#service_managed_s3 ⇒ Types::ServiceManagedDatastoreS3Storage
Use this to store data store 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 data store is created.