interface TextLogSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotAliasPropsMixin.TextLogSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotAliasPropsMixin_TextLogSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotAliasPropsMixin.TextLogSettingProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotAliasPropsMixin.TextLogSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotAliasPropsMixin » TextLogSettingProperty |
Defines settings to enable text conversation logs.
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 textLogSettingProperty: lex_mixins.CfnBotAliasPropsMixin.TextLogSettingProperty = {
destination: {
cloudWatch: {
cloudWatchLogGroupArn: 'cloudWatchLogGroupArn',
logPrefix: 'logPrefix',
},
},
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | IResolvable | Text | Defines the Amazon CloudWatch Logs destination log group for conversation text logs. |
| enabled? | boolean | IResolvable | Determines whether conversation logs should be stored for an alias. |
destination?
Type:
IResolvable | Text
(optional)
Defines the Amazon CloudWatch Logs destination log group for conversation text logs.
enabled?
Type:
boolean | IResolvable
(optional)
Determines whether conversation logs should be stored for an alias.

.NET
Go
Java
Python
TypeScript