interface CustomerManagedS3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatastorePropsMixin.CustomerManagedS3Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatastorePropsMixin_CustomerManagedS3Property |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatastorePropsMixin.CustomerManagedS3Property |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatastorePropsMixin.CustomerManagedS3Property |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatastorePropsMixin » CustomerManagedS3Property |
S3-customer-managed;
When you choose customer-managed storage, the retentionPeriod parameter is ignored. You can't change the choice of Amazon S3 storage after your data store is created.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const customerManagedS3Property: iotanalytics_mixins.CfnDatastorePropsMixin.CustomerManagedS3Property = {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the Amazon S3 bucket where your data is stored. |
| key | string | (Optional) The prefix used to create the keys of the data store data objects. |
| role | string | The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources. |
bucket?
Type:
string
(optional)
The name of the Amazon S3 bucket where your data is stored.
keyPrefix?
Type:
string
(optional)
(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 (/).
roleArn?
Type:
string
(optional)
The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

.NET
Go
Java
Python
TypeScript