Class: Aws::IoTAnalytics::Types::IotSiteWiseCustomerManagedDatastoreS3Storage
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::IotSiteWiseCustomerManagedDatastoreS3Storage
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
Note:
When making an API call, you may pass IotSiteWiseCustomerManagedDatastoreS3Storage data as a hash:
{
bucket: "BucketName", # required
key_prefix: "S3KeyPrefix",
}
Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the choice of Amazon S3 storage after your data store is created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket where your data is stored.
-
#key_prefix ⇒ String
(Optional) The prefix used to create the keys of the data store data objects.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket where your data is stored.
2581 2582 2583 2584 2585 2586 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2581 class IotSiteWiseCustomerManagedDatastoreS3Storage < Struct.new( :bucket, :key_prefix) SENSITIVE = [] include Aws::Structure end |
#key_prefix ⇒ String
(Optional) The prefix used to create the keys of the data store data objects. Each object in an Amazon 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 (/).
2581 2582 2583 2584 2585 2586 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2581 class IotSiteWiseCustomerManagedDatastoreS3Storage < Struct.new( :bucket, :key_prefix) SENSITIVE = [] include Aws::Structure end |