interface CustomerManagedS3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnChannelPropsMixin.CustomerManagedS3Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnChannelPropsMixin_CustomerManagedS3Property |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnChannelPropsMixin.CustomerManagedS3Property |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnChannelPropsMixin.CustomerManagedS3Property |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnChannelPropsMixin » CustomerManagedS3Property |
Used to store channel data in an S3 bucket that you manage.
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.CfnChannelPropsMixin.CustomerManagedS3Property = {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket in which channel data is stored. |
| key | string | (Optional) The prefix used to create the keys of the channel 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 S3 bucket in which channel data is stored.
keyPrefix?
Type:
string
(optional)
(Optional) The prefix used to create the keys of the channel data objects.
Each object in an S3 bucket has a key that is its unique identifier within 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