@Stability(value=Stable)
public static interface CfnBotAlias.AudioLogSettingProperty
extends software.amazon.jsii.JsiiSerializable
You specify whether to log audio and the Amazon S3 bucket where the audio file is 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.*;
AudioLogSettingProperty audioLogSettingProperty = AudioLogSettingProperty.builder()
.destination(AudioLogDestinationProperty.builder()
.s3Bucket(S3BucketLogDestinationProperty.builder()
.logPrefix("logPrefix")
.s3BucketArn("s3BucketArn")
// the properties below are optional
.kmsKeyArn("kmsKeyArn")
.build())
.build())
.enabled(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBotAlias.AudioLogSettingProperty.Builder
A builder for
CfnBotAlias.AudioLogSettingProperty |
static class |
CfnBotAlias.AudioLogSettingProperty.Jsii$Proxy
An implementation for
CfnBotAlias.AudioLogSettingProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBotAlias.AudioLogSettingProperty.Builder |
builder() |
Object |
getDestination()
The location of audio log files collected when conversation logging is enabled for a bot.
|
Object |
getEnabled()
Determines whether audio logging in enabled for the bot.
|
@Stability(value=Stable) @NotNull Object getDestination()
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) static CfnBotAlias.AudioLogSettingProperty.Builder builder()
Copyright © 2022. All rights reserved.