aws-cdk-lib.aws_iotanalytics.CfnChannel.CustomerManagedS3Property

interface CustomerManagedS3Property

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnChannel.CustomerManagedS3Property
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnChannel_CustomerManagedS3Property
Javasoftware.amazon.awscdk.services.iotanalytics.CfnChannel.CustomerManagedS3Property
Pythonaws_cdk.aws_iotanalytics.CfnChannel.CustomerManagedS3Property
TypeScript aws-cdk-lib » aws_iotanalytics » CfnChannel » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const customerManagedS3Property: iotanalytics.CfnChannel.CustomerManagedS3Property = {
  bucket: 'bucket',
  roleArn: 'roleArn',

  // the properties below are optional
  keyPrefix: 'keyPrefix',
};

Properties

NameTypeDescription
bucketstringThe name of the S3 bucket in which channel data is stored.
roleArnstringThe ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.
keyPrefix?string(Optional) The prefix used to create the keys of the channel data objects.

bucket

Type: string

The name of the S3 bucket in which channel data is stored.


roleArn

Type: string

The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.


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 (/).