interface AudioLogSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotAliasPropsMixin.AudioLogSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotAliasPropsMixin_AudioLogSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotAliasPropsMixin.AudioLogSettingProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotAliasPropsMixin.AudioLogSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotAliasPropsMixin » AudioLogSettingProperty |
Settings for logging audio of conversations between Amazon Lex and a user.
You specify whether to log audio and the Amazon S3 bucket where the audio file is stored.
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 audioLogSettingProperty: lex_mixins.CfnBotAliasPropsMixin.AudioLogSettingProperty = {
destination: {
s3Bucket: {
kmsKeyArn: 'kmsKeyArn',
logPrefix: 'logPrefix',
s3BucketArn: 's3BucketArn',
},
},
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | IResolvable | Audio | The location of audio log files collected when conversation logging is enabled for a bot. |
| enabled? | boolean | IResolvable | Determines whether audio logging in enabled for the bot. |
destination?
Type:
IResolvable | Audio
(optional)
The location of audio log files collected when conversation logging is enabled for a bot.
enabled?
Type:
boolean | IResolvable
(optional)
Determines whether audio logging in enabled for the bot.

.NET
Go
Java
Python
TypeScript