interface ConversationLogSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotAliasPropsMixin.ConversationLogSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotAliasPropsMixin_ConversationLogSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotAliasPropsMixin.ConversationLogSettingsProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotAliasPropsMixin.ConversationLogSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotAliasPropsMixin » ConversationLogSettingsProperty |
Configures conversation logging that saves audio, text, and metadata for the conversations with your users.
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 conversationLogSettingsProperty: lex_mixins.CfnBotAliasPropsMixin.ConversationLogSettingsProperty = {
audioLogSettings: [{
destination: {
s3Bucket: {
kmsKeyArn: 'kmsKeyArn',
logPrefix: 'logPrefix',
s3BucketArn: 's3BucketArn',
},
},
enabled: false,
}],
textLogSettings: [{
destination: {
cloudWatch: {
cloudWatchLogGroupArn: 'cloudWatchLogGroupArn',
logPrefix: 'logPrefix',
},
},
enabled: false,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | IResolvable | (IResolvable | Audio)[] | The Amazon S3 settings for logging audio to an S3 bucket. |
| text | IResolvable | (IResolvable | Text)[] | The Amazon CloudWatch Logs settings for logging text and metadata. |
audioLogSettings?
Type:
IResolvable | (IResolvable | Audio)[]
(optional)
The Amazon S3 settings for logging audio to an S3 bucket.
textLogSettings?
Type:
IResolvable | (IResolvable | Text)[]
(optional)
The Amazon CloudWatch Logs settings for logging text and metadata.

.NET
Go
Java
Python
TypeScript