Interface UpdateLoggingConfigurationRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateLoggingConfigurationRequest.Builder,
,UpdateLoggingConfigurationRequest> IvschatRequest.Builder
,SdkBuilder<UpdateLoggingConfigurationRequest.Builder,
,UpdateLoggingConfigurationRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateLoggingConfigurationRequest
@Mutable
@NotThreadSafe
public static interface UpdateLoggingConfigurationRequest.Builder
extends IvschatRequest.Builder, SdkPojo, CopyableBuilder<UpdateLoggingConfigurationRequest.Builder,UpdateLoggingConfigurationRequest>
-
Method Summary
Modifier and TypeMethodDescriptiondestinationConfiguration
(Consumer<DestinationConfiguration.Builder> destinationConfiguration) A complex type that contains a destination configuration for where chat content will be logged.destinationConfiguration
(DestinationConfiguration destinationConfiguration) A complex type that contains a destination configuration for where chat content will be logged.identifier
(String identifier) Identifier of the logging configuration to be updated.Logging-configuration name.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.ivschat.model.IvschatRequest.Builder
build
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 Details
-
identifier
Identifier of the logging configuration to be updated.
- Parameters:
identifier
- Identifier of the logging configuration to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Logging-configuration name. The value does not need to be unique.
- Parameters:
name
- Logging-configuration name. The value does not need to be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationConfiguration
UpdateLoggingConfigurationRequest.Builder destinationConfiguration(DestinationConfiguration destinationConfiguration) A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (
cloudWatchLogs
,firehose
, ors3
) in adestinationConfiguration
.- Parameters:
destinationConfiguration
- A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (cloudWatchLogs
,firehose
, ors3
) in adestinationConfiguration
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationConfiguration
default UpdateLoggingConfigurationRequest.Builder destinationConfiguration(Consumer<DestinationConfiguration.Builder> destinationConfiguration) A complex type that contains a destination configuration for where chat content will be logged. There can be only one type of destination (
This is a convenience method that creates an instance of thecloudWatchLogs
,firehose
, ors3
) in adestinationConfiguration
.DestinationConfiguration.Builder
avoiding the need to create one manually viaDestinationConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todestinationConfiguration(DestinationConfiguration)
.- Parameters:
destinationConfiguration
- a consumer that will call methods onDestinationConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdateLoggingConfigurationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateLoggingConfigurationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-