interface AudioLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.AudioLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_AudioLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.AudioLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.AudioLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const audioLogDestinationProperty: lex_mixins.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