interface AudioLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.AudioLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_AudioLogDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.AudioLogDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.AudioLogDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » AudioLogDestinationProperty |
The location of audio log files collected when conversation logging is enabled for a bot.
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 audioLogDestinationProperty: lex.CfnBotPropsMixin.AudioLogDestinationProperty = {
s3Bucket: {
kmsKeyArn: 'kmsKeyArn',
logPrefix: 'logPrefix',
s3BucketArn: 's3BucketArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Specifies the Amazon S3 bucket where the audio files are stored. |
s3Bucket?
Type:
IResolvable | S3
(optional)
Specifies the Amazon S3 bucket where the audio files are stored.

.NET
Go
Java
Python
TypeScript