Interface SdkType.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<SdkType.Builder,,SdkType> SdkBuilder<SdkType.Builder,,SdkType> SdkPojo
- Enclosing class:
- SdkType
@Mutable
@NotThreadSafe
public static interface SdkType.Builder
extends SdkPojo, CopyableBuilder<SdkType.Builder,SdkType>
-
Method Summary
Modifier and TypeMethodDescriptionconfigurationProperties(Collection<SdkConfigurationProperty> configurationProperties) A list of configuration properties of an SdkType.configurationProperties(Consumer<SdkConfigurationProperty.Builder>... configurationProperties) A list of configuration properties of an SdkType.configurationProperties(SdkConfigurationProperty... configurationProperties) A list of configuration properties of an SdkType.description(String description) The description of an SdkType.friendlyName(String friendlyName) The user-friendly name of an SdkType instance.The identifier of an SdkType instance.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
id
The identifier of an SdkType instance.
- Parameters:
id- The identifier of an SdkType instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
friendlyName
The user-friendly name of an SdkType instance.
- Parameters:
friendlyName- The user-friendly name of an SdkType instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
The description of an SdkType.
- Parameters:
description- The description of an SdkType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationProperties
SdkType.Builder configurationProperties(Collection<SdkConfigurationProperty> configurationProperties) A list of configuration properties of an SdkType.
- Parameters:
configurationProperties- A list of configuration properties of an SdkType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationProperties
A list of configuration properties of an SdkType.
- Parameters:
configurationProperties- A list of configuration properties of an SdkType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationProperties
SdkType.Builder configurationProperties(Consumer<SdkConfigurationProperty.Builder>... configurationProperties) A list of configuration properties of an SdkType.
This is a convenience method that creates an instance of theSdkConfigurationProperty.Builderavoiding the need to create one manually viaSdkConfigurationProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toconfigurationProperties(List<SdkConfigurationProperty>).- Parameters:
configurationProperties- a consumer that will call methods onSdkConfigurationProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-