interface TextLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.TextLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_TextLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.TextLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.TextLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » TextLogDestinationProperty |
Defines the Amazon CloudWatch Logs destination log group for conversation text 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 textLogDestinationProperty: lex_mixins.CfnBotPropsMixin.TextLogDestinationProperty = {
cloudWatch: {
cloudWatchLogGroupArn: 'cloudWatchLogGroupArn',
logPrefix: 'logPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | Defines the Amazon CloudWatch Logs log group where text and metadata logs are delivered. |
cloudWatch?
Type:
IResolvable | Cloud
(optional)
Defines the Amazon CloudWatch Logs log group where text and metadata logs are delivered.

.NET
Go
Java
Python
TypeScript