Interface UpdateConfigurationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<UpdateConfigurationResponse.Builder,UpdateConfigurationResponse>
,KafkaResponse.Builder
,SdkBuilder<UpdateConfigurationResponse.Builder,UpdateConfigurationResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- UpdateConfigurationResponse
public static interface UpdateConfigurationResponse.Builder extends KafkaResponse.Builder, SdkPojo, CopyableBuilder<UpdateConfigurationResponse.Builder,UpdateConfigurationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateConfigurationResponse.Builder
arn(String arn)
The Amazon Resource Name (ARN) of the configuration.default UpdateConfigurationResponse.Builder
latestRevision(Consumer<ConfigurationRevision.Builder> latestRevision)
Latest revision of the configuration.UpdateConfigurationResponse.Builder
latestRevision(ConfigurationRevision latestRevision)
Latest revision of the configuration.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kafka.model.KafkaResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
arn
UpdateConfigurationResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) of the configuration.
- Parameters:
arn
-The Amazon Resource Name (ARN) of the configuration.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latestRevision
UpdateConfigurationResponse.Builder latestRevision(ConfigurationRevision latestRevision)
Latest revision of the configuration.
- Parameters:
latestRevision
-Latest revision of the configuration.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latestRevision
default UpdateConfigurationResponse.Builder latestRevision(Consumer<ConfigurationRevision.Builder> latestRevision)
Latest revision of the configuration.
This is a convenience method that creates an instance of theConfigurationRevision.Builder
avoiding the need to create one manually viaConfigurationRevision.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tolatestRevision(ConfigurationRevision)
.- Parameters:
latestRevision
- a consumer that will call methods onConfigurationRevision.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
latestRevision(ConfigurationRevision)
-
-