interface CustomerManagedS3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatastorePropsMixin.CustomerManagedS3Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatastorePropsMixin_CustomerManagedS3Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatastorePropsMixin.CustomerManagedS3Property |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatastorePropsMixin.CustomerManagedS3Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » 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 { aws_iotanalytics as iotanalytics } from '@aws-cdk/cfn-property-mixins';
const customerManagedS3Property: iotanalytics.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 ITA 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 ITA permission to interact with your Amazon S3 resources.

.NET
Go
Java
Python
TypeScript