Show / Hide Table of Contents

Class CfnBot.TextLogSettingProperty

Defines settings to enable text conversation logs.

Inheritance
object
CfnBot.TextLogSettingProperty
Implements
CfnBot.ITextLogSettingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBot.TextLogSettingProperty : CfnBot.ITextLogSettingProperty
Syntax (vb)
Public Class CfnBot.TextLogSettingProperty Implements CfnBot.ITextLogSettingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-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.AWS.Lex;

             var textLogSettingProperty = new TextLogSettingProperty {
                 Destination = new TextLogDestinationProperty {
                     CloudWatch = new CloudWatchLogGroupLogDestinationProperty {
                         CloudWatchLogGroupArn = "cloudWatchLogGroupArn",
                         LogPrefix = "logPrefix"
                     }
                 },
                 Enabled = false
             };

Synopsis

Constructors

TextLogSettingProperty()

Defines settings to enable text conversation logs.

Properties

Destination

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

Enabled

Determines whether conversation logs should be stored for an alias.

Constructors

TextLogSettingProperty()

Defines settings to enable text conversation logs.

public TextLogSettingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-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.AWS.Lex;

             var textLogSettingProperty = new TextLogSettingProperty {
                 Destination = new TextLogDestinationProperty {
                     CloudWatch = new CloudWatchLogGroupLogDestinationProperty {
                         CloudWatchLogGroupArn = "cloudWatchLogGroupArn",
                         LogPrefix = "logPrefix"
                     }
                 },
                 Enabled = false
             };

Properties

Destination

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

public object Destination { get; set; }
Property Value

object

Remarks

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

Enabled

Determines whether conversation logs should be stored for an alias.

public object Enabled { get; set; }
Property Value

object

Remarks

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

Implements

CfnBot.ITextLogSettingProperty
Back to top Generated by DocFX