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