Interface EnvironmentInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentInfo.Builder,EnvironmentInfo>,SdkBuilder<EnvironmentInfo.Builder,EnvironmentInfo>,SdkPojo
- Enclosing class:
- EnvironmentInfo
public static interface EnvironmentInfo.Builder extends SdkPojo, CopyableBuilder<EnvironmentInfo.Builder,EnvironmentInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentInfo.BuilderavailabilityZoneInformation(Collection<AvailabilityZoneInfo> availabilityZoneInformation)A list ofAvailabilityZoneInfofor the domain.EnvironmentInfo.BuilderavailabilityZoneInformation(Consumer<AvailabilityZoneInfo.Builder>... availabilityZoneInformation)A list ofAvailabilityZoneInfofor the domain.EnvironmentInfo.BuilderavailabilityZoneInformation(AvailabilityZoneInfo... availabilityZoneInformation)A list ofAvailabilityZoneInfofor the domain.-
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
-
availabilityZoneInformation
EnvironmentInfo.Builder availabilityZoneInformation(Collection<AvailabilityZoneInfo> availabilityZoneInformation)
A list of
AvailabilityZoneInfofor the domain.- Parameters:
availabilityZoneInformation- A list ofAvailabilityZoneInfofor the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
availabilityZoneInformation
EnvironmentInfo.Builder availabilityZoneInformation(AvailabilityZoneInfo... availabilityZoneInformation)
A list of
AvailabilityZoneInfofor the domain.- Parameters:
availabilityZoneInformation- A list ofAvailabilityZoneInfofor the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
availabilityZoneInformation
EnvironmentInfo.Builder availabilityZoneInformation(Consumer<AvailabilityZoneInfo.Builder>... availabilityZoneInformation)
A list of
This is a convenience method that creates an instance of theAvailabilityZoneInfofor the domain.AvailabilityZoneInfo.Builderavoiding the need to create one manually viaAvailabilityZoneInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#availabilityZoneInformation(List.) - Parameters:
availabilityZoneInformation- a consumer that will call methods onAvailabilityZoneInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#availabilityZoneInformation(java.util.Collection)
-
-