Show / Hide Table of Contents

Interface CfnBotAliasPropsMixin.ITextLogSettingProperty

Defines settings to enable text conversation logs.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnBotAliasPropsMixin.ITextLogSettingProperty
Syntax (vb)
Public Interface CfnBotAliasPropsMixin.ITextLogSettingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-textlogsetting.html

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 textLogSettingProperty = new TextLogSettingProperty {
                 Destination = new TextLogDestinationProperty {
                     CloudWatch = new CloudWatchLogGroupLogDestinationProperty {
                         CloudWatchLogGroupArn = "cloudWatchLogGroupArn",
                         LogPrefix = "logPrefix"
                     }
                 },
                 Enabled = false
             };

Synopsis

Properties

Destination

Defines the Amazon CloudWatch Logs destination log group for conversation text logs.

Enabled

Determines whether conversation logs should be stored for an alias.

Properties

Destination

Defines the Amazon CloudWatch Logs destination log group for conversation text logs.

object? Destination { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-textlogsetting.html#cfn-lex-botalias-textlogsetting-destination

Type union: either IResolvable or CfnBotAliasPropsMixin.ITextLogDestinationProperty

Enabled

Determines whether conversation logs should be stored for an alias.

object? Enabled { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-botalias-textlogsetting.html#cfn-lex-botalias-textlogsetting-enabled

Type union: either bool or IResolvable

Back to top Generated by DocFX