Class CfnBotPropsMixin.AudioLogDestinationProperty
The location of audio log files collected when conversation logging is enabled for a bot.
Implements
Inherited Members
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
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
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; }