Interface AudioLogSetting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AudioLogSetting.Builder,AudioLogSetting>,SdkBuilder<AudioLogSetting.Builder,AudioLogSetting>,SdkPojo
- Enclosing class:
- AudioLogSetting
public static interface AudioLogSetting.Builder extends SdkPojo, CopyableBuilder<AudioLogSetting.Builder,AudioLogSetting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AudioLogSetting.Builderdestination(Consumer<AudioLogDestination.Builder> destination)Sets the value of the Destination property for this object.AudioLogSetting.Builderdestination(AudioLogDestination destination)Sets the value of the Destination property for this object.AudioLogSetting.Builderenabled(Boolean enabled)Determines whether audio logging in enabled for the bot.AudioLogSetting.BuilderselectiveLoggingEnabled(Boolean selectiveLoggingEnabled)The option to enable selective conversation log capture for audio.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
enabled
AudioLogSetting.Builder enabled(Boolean enabled)
Determines whether audio logging in enabled for the bot.
- Parameters:
enabled- Determines whether audio logging in enabled for the bot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
AudioLogSetting.Builder destination(AudioLogDestination destination)
Sets the value of the Destination property for this object.- Parameters:
destination- The new value for the Destination property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default AudioLogSetting.Builder destination(Consumer<AudioLogDestination.Builder> destination)
Sets the value of the Destination property for this object. This is a convenience method that creates an instance of theAudioLogDestination.Builderavoiding the need to create one manually viaAudioLogDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(AudioLogDestination).- Parameters:
destination- a consumer that will call methods onAudioLogDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(AudioLogDestination)
-
selectiveLoggingEnabled
AudioLogSetting.Builder selectiveLoggingEnabled(Boolean selectiveLoggingEnabled)
The option to enable selective conversation log capture for audio.
- Parameters:
selectiveLoggingEnabled- The option to enable selective conversation log capture for audio.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-