Show / Hide Table of Contents

Interface CfnBotPropsMixin.IAudioLogSettingProperty

Settings for logging audio of conversations between Amazon Lex and a user.

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

You specify whether to log audio and the Amazon S3 bucket where the audio file is stored.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-audiologsetting.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 audioLogSettingProperty = new AudioLogSettingProperty {
                 Destination = new AudioLogDestinationProperty {
                     S3Bucket = new S3BucketLogDestinationProperty {
                         KmsKeyArn = "kmsKeyArn",
                         LogPrefix = "logPrefix",
                         S3BucketArn = "s3BucketArn"
                     }
                 },
                 Enabled = false
             };

Synopsis

Properties

Destination

Specifies the location of the audio log files collected when conversation logging is enabled for a bot.

Enabled

Determines whether audio logging in enabled for the bot.

Properties

Destination

Specifies the location of the audio log files collected when conversation logging is enabled for a bot.

object? Destination { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnBotPropsMixin.IAudioLogDestinationProperty

Enabled

Determines whether audio logging in enabled for the bot.

object? Enabled { get; }
Property Value

object

Remarks

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

Type union: either bool or IResolvable

Back to top Generated by DocFX