Interface ConfigurationEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigurationEvent.Builder,ConfigurationEvent>,SdkBuilder<ConfigurationEvent.Builder,ConfigurationEvent>,SdkPojo
- All Known Subinterfaces:
DefaultConfigurationEvent.Builder
- All Known Implementing Classes:
ConfigurationEvent.BuilderImpl
- Enclosing class:
- ConfigurationEvent
@Mutable @NotThreadSafe public static interface ConfigurationEvent.Builder extends SdkPojo, CopyableBuilder<ConfigurationEvent.Builder,ConfigurationEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ConfigurationEvent.BuilderchannelDefinitions(Collection<ChannelDefinition> channelDefinitions)Indicates which speaker is on which audio channel.ConfigurationEvent.BuilderchannelDefinitions(Consumer<ChannelDefinition.Builder>... channelDefinitions)Indicates which speaker is on which audio channel.ConfigurationEvent.BuilderchannelDefinitions(ChannelDefinition... channelDefinitions)Indicates which speaker is on which audio channel.default ConfigurationEvent.BuilderpostCallAnalyticsSettings(Consumer<PostCallAnalyticsSettings.Builder> postCallAnalyticsSettings)Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.ConfigurationEvent.BuilderpostCallAnalyticsSettings(PostCallAnalyticsSettings postCallAnalyticsSettings)Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
channelDefinitions
ConfigurationEvent.Builder channelDefinitions(Collection<ChannelDefinition> channelDefinitions)
Indicates which speaker is on which audio channel.
- Parameters:
channelDefinitions- Indicates which speaker is on which audio channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
channelDefinitions
ConfigurationEvent.Builder channelDefinitions(ChannelDefinition... channelDefinitions)
Indicates which speaker is on which audio channel.
- Parameters:
channelDefinitions- Indicates which speaker is on which audio channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
channelDefinitions
ConfigurationEvent.Builder channelDefinitions(Consumer<ChannelDefinition.Builder>... channelDefinitions)
Indicates which speaker is on which audio channel.
This is a convenience method that creates an instance of theChannelDefinition.Builderavoiding the need to create one manually viaChannelDefinition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#channelDefinitions(List.) - Parameters:
channelDefinitions- a consumer that will call methods onChannelDefinition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#channelDefinitions(java.util.Collection)
-
postCallAnalyticsSettings
ConfigurationEvent.Builder postCallAnalyticsSettings(PostCallAnalyticsSettings postCallAnalyticsSettings)
Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.
PostCallAnalyticsSettingsprovides you with the same insights as a Call Analytics post-call transcription. Refer to Post-call analytics for more information on this feature.- Parameters:
postCallAnalyticsSettings- Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.PostCallAnalyticsSettingsprovides you with the same insights as a Call Analytics post-call transcription. Refer to Post-call analytics for more information on this feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postCallAnalyticsSettings
default ConfigurationEvent.Builder postCallAnalyticsSettings(Consumer<PostCallAnalyticsSettings.Builder> postCallAnalyticsSettings)
Provides additional optional settings for your Call Analytics post-call request, including encryption and output locations for your redacted transcript.
This is a convenience method that creates an instance of thePostCallAnalyticsSettingsprovides you with the same insights as a Call Analytics post-call transcription. Refer to Post-call analytics for more information on this feature.PostCallAnalyticsSettings.Builderavoiding the need to create one manually viaPostCallAnalyticsSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topostCallAnalyticsSettings(PostCallAnalyticsSettings).- Parameters:
postCallAnalyticsSettings- a consumer that will call methods onPostCallAnalyticsSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
postCallAnalyticsSettings(PostCallAnalyticsSettings)
-
-