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