interface CloudWatchLogGroupLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotAliasPropsMixin.CloudWatchLogGroupLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotAliasPropsMixin_CloudWatchLogGroupLogDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotAliasPropsMixin.CloudWatchLogGroupLogDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotAliasPropsMixin.CloudWatchLogGroupLogDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotAliasPropsMixin » 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/cfn-property-mixins';
const cloudWatchLogGroupLogDestinationProperty: lex.CfnBotAliasPropsMixin.CloudWatchLogGroupLogDestinationProperty = {
cloudWatchLogGroupArn: 'cloudWatchLogGroupArn',
logPrefix: 'logPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | ILog | 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 | ILog
(optional)
The Amazon Resource Name (ARN) of the log group where text and metadata logs are delivered.
logPrefix?
Type:
string
(optional)
The prefix of the log stream name within the log group that you specified.

.NET
Go
Java
Python
TypeScript