interface ConversationLogSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.ConversationLogSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_ConversationLogSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.ConversationLogSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.ConversationLogSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » 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 { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const conversationLogSettingsProperty: lex.CfnBotPropsMixin.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