interface CloudWatchLogGroupLogDestinationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Lex.CfnBot.CloudWatchLogGroupLogDestinationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_CloudWatchLogGroupLogDestinationProperty | 
|  Java | software.amazon.awscdk.services.lex.CfnBot.CloudWatchLogGroupLogDestinationProperty | 
|  Python | aws_cdk.aws_lex.CfnBot.CloudWatchLogGroupLogDestinationProperty | 
|  TypeScript | aws-cdk-lib»aws_lex»CfnBot»CloudWatchLogGroupLogDestinationProperty | 
The Amazon CloudWatch Logs log group where the text and metadata logs are delivered.
The log group must exist before you enable logging.
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-lib';
const cloudWatchLogGroupLogDestinationProperty: lex.CfnBot.CloudWatchLogGroupLogDestinationProperty = {
  cloudWatchLogGroupArn: 'cloudWatchLogGroupArn',
  logPrefix: 'logPrefix',
};
Properties
| Name | Type | Description | 
|---|---|---|
| cloud | string | The Amazon Resource Name (ARN) of the log group where text and metadata logs are delivered. | 
| log | string | The prefix of the log stream name within the log group that you specified. | 
cloudWatchLogGroupArn
Type:
string
The Amazon Resource Name (ARN) of the log group where text and metadata logs are delivered.
logPrefix
Type:
string
The prefix of the log stream name within the log group that you specified.
