Show / Hide Table of Contents

Class CfnBotPropsMixin.AudioLogDestinationProperty

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

Inheritance
object
CfnBotPropsMixin.AudioLogDestinationProperty
Implements
CfnBotPropsMixin.IAudioLogDestinationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Lex
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBotPropsMixin.AudioLogDestinationProperty : CfnBotPropsMixin.IAudioLogDestinationProperty
Syntax (vb)
Public Class CfnBotPropsMixin.AudioLogDestinationProperty Implements CfnBotPropsMixin.IAudioLogDestinationProperty
Remarks

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

Synopsis

Constructors

AudioLogDestinationProperty()

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

Properties

S3Bucket

Specifies the Amazon S3 bucket where the audio files are stored.

Constructors

AudioLogDestinationProperty()

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

public AudioLogDestinationProperty()
Remarks

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

Properties

S3Bucket

Specifies the Amazon S3 bucket where the audio files are stored.

public object? S3Bucket { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnBotPropsMixin.IS3BucketLogDestinationProperty

Implements

CfnBotPropsMixin.IAudioLogDestinationProperty
Back to top Generated by DocFX