Interface SdkType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SdkType.Builder,SdkType>,SdkBuilder<SdkType.Builder,SdkType>,SdkPojo
- Enclosing class:
- SdkType
public static interface SdkType.Builder extends SdkPojo, CopyableBuilder<SdkType.Builder,SdkType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SdkType.BuilderconfigurationProperties(Collection<SdkConfigurationProperty> configurationProperties)A list of configuration properties of an SdkType.SdkType.BuilderconfigurationProperties(Consumer<SdkConfigurationProperty.Builder>... configurationProperties)A list of configuration properties of an SdkType.SdkType.BuilderconfigurationProperties(SdkConfigurationProperty... configurationProperties)A list of configuration properties of an SdkType.SdkType.Builderdescription(String description)The description of an SdkType.SdkType.BuilderfriendlyName(String friendlyName)The user-friendly name of an SdkType instance.SdkType.Builderid(String id)The identifier of an SdkType instance.-
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
-
id
SdkType.Builder id(String 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
SdkType.Builder friendlyName(String 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
SdkType.Builder description(String 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
SdkType.Builder configurationProperties(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
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 to#configurationProperties(List.) - 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:
#configurationProperties(java.util.Collection)
-
-