interface S3BucketLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotAliasPropsMixin.S3BucketLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotAliasPropsMixin_S3BucketLogDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotAliasPropsMixin.S3BucketLogDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotAliasPropsMixin.S3BucketLogDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotAliasPropsMixin » S3BucketLogDestinationProperty |
Specifies an Amazon S3 bucket for logging audio conversations.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const s3BucketLogDestinationProperty: lex.CfnBotAliasPropsMixin.S3BucketLogDestinationProperty = {
kmsKeyArn: 'kmsKeyArn',
logPrefix: 'logPrefix',
s3BucketArn: 's3BucketArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an Amazon S3 bucket. |
| log | string | The S3 prefix to assign to audio log files. |
| s3 | string | IBucket | The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored. |
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an Amazon S3 bucket.
logPrefix?
Type:
string
(optional)
The S3 prefix to assign to audio log files.
s3BucketArn?
Type:
string | IBucket
(optional)
The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.

.NET
Go
Java
Python
TypeScript