interface CloudWatchLogGroupLogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.CloudWatchLogGroupLogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_CloudWatchLogGroupLogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.CloudWatchLogGroupLogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.CloudWatchLogGroupLogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const cloudWatchLogGroupLogDestinationProperty: lex_mixins.CfnBotPropsMixin.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
(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