Class CfnBotAliasPropsMixin.TextLogDestinationProperty
Defines the Amazon CloudWatch Logs destination log group for conversation text logs.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotAliasPropsMixin.TextLogDestinationProperty : CfnBotAliasPropsMixin.ITextLogDestinationProperty
Syntax (vb)
Public Class CfnBotAliasPropsMixin.TextLogDestinationProperty Implements CfnBotAliasPropsMixin.ITextLogDestinationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Lex;
var textLogDestinationProperty = new TextLogDestinationProperty {
CloudWatch = new CloudWatchLogGroupLogDestinationProperty {
CloudWatchLogGroupArn = "cloudWatchLogGroupArn",
LogPrefix = "logPrefix"
}
};
Synopsis
Constructors
| TextLogDestinationProperty() | Defines the Amazon CloudWatch Logs destination log group for conversation text logs. |
Properties
| CloudWatch | Defines the Amazon CloudWatch Logs log group where text and metadata logs are delivered. |
Constructors
TextLogDestinationProperty()
Defines the Amazon CloudWatch Logs destination log group for conversation text logs.
public TextLogDestinationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Lex;
var textLogDestinationProperty = new TextLogDestinationProperty {
CloudWatch = new CloudWatchLogGroupLogDestinationProperty {
CloudWatchLogGroupArn = "cloudWatchLogGroupArn",
LogPrefix = "logPrefix"
}
};
Properties
CloudWatch
Defines the Amazon CloudWatch Logs log group where text and metadata logs are delivered.
public object? CloudWatch { get; set; }