@Stability(value=Stable)
public static interface CfnBotAlias.S3BucketLogDestinationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
S3BucketLogDestinationProperty s3BucketLogDestinationProperty = S3BucketLogDestinationProperty.builder()
.logPrefix("logPrefix")
.s3BucketArn("s3BucketArn")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBotAlias.S3BucketLogDestinationProperty.Builder
A builder for
CfnBotAlias.S3BucketLogDestinationProperty |
static class |
CfnBotAlias.S3BucketLogDestinationProperty.Jsii$Proxy
An implementation for
CfnBotAlias.S3BucketLogDestinationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBotAlias.S3BucketLogDestinationProperty.Builder |
builder() |
default String |
getKmsKeyArn()
The Amazon Resource Name (ARN) of an AWS Key Management Service key for encrypting audio log files stored in an S3 bucket.
|
String |
getLogPrefix()
The S3 prefix to assign to audio log files.
|
String |
getS3BucketArn()
The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.
|
@Stability(value=Stable) @NotNull String getLogPrefix()
@Stability(value=Stable) @NotNull String getS3BucketArn()
@Stability(value=Stable) @Nullable default String getKmsKeyArn()
@Stability(value=Stable) static CfnBotAlias.S3BucketLogDestinationProperty.Builder builder()
Copyright © 2022. All rights reserved.