Interface CfnBotPropsMixin.AudioLogDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.AudioLogDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.AudioLogDestinationProperty
extends software.amazon.jsii.JsiiSerializable
The location of audio log files collected when conversation logging is enabled for a bot.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.lex.*;
AudioLogDestinationProperty audioLogDestinationProperty = AudioLogDestinationProperty.builder()
.s3Bucket(S3BucketLogDestinationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.logPrefix("logPrefix")
.s3BucketArn("s3BucketArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotPropsMixin.AudioLogDestinationPropertystatic final classAn implementation forCfnBotPropsMixin.AudioLogDestinationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
Specifies the Amazon S3 bucket where the audio files are stored.Returns union: either
IResolvableorCfnBotPropsMixin.S3BucketLogDestinationProperty- See Also:
-
builder
-