Interface ConversationLogSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConversationLogSettings.Builder,ConversationLogSettings>,SdkBuilder<ConversationLogSettings.Builder,ConversationLogSettings>,SdkPojo
- Enclosing class:
- ConversationLogSettings
public static interface ConversationLogSettings.Builder extends SdkPojo, CopyableBuilder<ConversationLogSettings.Builder,ConversationLogSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationLogSettings.BuilderaudioLogSettings(Collection<AudioLogSetting> audioLogSettings)The Amazon S3 settings for logging audio to an S3 bucket.ConversationLogSettings.BuilderaudioLogSettings(Consumer<AudioLogSetting.Builder>... audioLogSettings)The Amazon S3 settings for logging audio to an S3 bucket.ConversationLogSettings.BuilderaudioLogSettings(AudioLogSetting... audioLogSettings)The Amazon S3 settings for logging audio to an S3 bucket.ConversationLogSettings.BuildertextLogSettings(Collection<TextLogSetting> textLogSettings)The Amazon CloudWatch Logs settings for logging text and metadata.ConversationLogSettings.BuildertextLogSettings(Consumer<TextLogSetting.Builder>... textLogSettings)The Amazon CloudWatch Logs settings for logging text and metadata.ConversationLogSettings.BuildertextLogSettings(TextLogSetting... textLogSettings)The Amazon CloudWatch Logs settings for logging text and metadata.-
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
-
textLogSettings
ConversationLogSettings.Builder textLogSettings(Collection<TextLogSetting> textLogSettings)
The Amazon CloudWatch Logs settings for logging text and metadata.
- Parameters:
textLogSettings- The Amazon CloudWatch Logs settings for logging text and metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textLogSettings
ConversationLogSettings.Builder textLogSettings(TextLogSetting... textLogSettings)
The Amazon CloudWatch Logs settings for logging text and metadata.
- Parameters:
textLogSettings- The Amazon CloudWatch Logs settings for logging text and metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textLogSettings
ConversationLogSettings.Builder textLogSettings(Consumer<TextLogSetting.Builder>... textLogSettings)
The Amazon CloudWatch Logs settings for logging text and metadata.
This is a convenience method that creates an instance of theTextLogSetting.Builderavoiding the need to create one manually viaTextLogSetting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#textLogSettings(List.) - Parameters:
textLogSettings- a consumer that will call methods onTextLogSetting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#textLogSettings(java.util.Collection)
-
audioLogSettings
ConversationLogSettings.Builder audioLogSettings(Collection<AudioLogSetting> audioLogSettings)
The Amazon S3 settings for logging audio to an S3 bucket.
- Parameters:
audioLogSettings- The Amazon S3 settings for logging audio to an S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
audioLogSettings
ConversationLogSettings.Builder audioLogSettings(AudioLogSetting... audioLogSettings)
The Amazon S3 settings for logging audio to an S3 bucket.
- Parameters:
audioLogSettings- The Amazon S3 settings for logging audio to an S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
audioLogSettings
ConversationLogSettings.Builder audioLogSettings(Consumer<AudioLogSetting.Builder>... audioLogSettings)
The Amazon S3 settings for logging audio to an S3 bucket.
This is a convenience method that creates an instance of theAudioLogSetting.Builderavoiding the need to create one manually viaAudioLogSetting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#audioLogSettings(List.) - Parameters:
audioLogSettings- a consumer that will call methods onAudioLogSetting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#audioLogSettings(java.util.Collection)
-
-