Interface EBSOptionsStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EBSOptionsStatus.Builder,EBSOptionsStatus>
,SdkBuilder<EBSOptionsStatus.Builder,EBSOptionsStatus>
,SdkPojo
- Enclosing class:
- EBSOptionsStatus
public static interface EBSOptionsStatus.Builder extends SdkPojo, CopyableBuilder<EBSOptionsStatus.Builder,EBSOptionsStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EBSOptionsStatus.Builder
options(Consumer<EBSOptions.Builder> options)
The configured EBS options for the specified domain.EBSOptionsStatus.Builder
options(EBSOptions options)
The configured EBS options for the specified domain.default EBSOptionsStatus.Builder
status(Consumer<OptionStatus.Builder> status)
The status of the EBS options for the specified domain.EBSOptionsStatus.Builder
status(OptionStatus status)
The status of the EBS options for the specified 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, sdkFields
-
-
-
-
Method Detail
-
options
EBSOptionsStatus.Builder options(EBSOptions options)
The configured EBS options for the specified domain.
- Parameters:
options
- The configured EBS options for the specified domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
default EBSOptionsStatus.Builder options(Consumer<EBSOptions.Builder> options)
The configured EBS options for the specified domain.
This is a convenience method that creates an instance of theEBSOptions.Builder
avoiding the need to create one manually viaEBSOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooptions(EBSOptions)
.- Parameters:
options
- a consumer that will call methods onEBSOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
options(EBSOptions)
-
status
EBSOptionsStatus.Builder status(OptionStatus status)
The status of the EBS options for the specified domain.
- Parameters:
status
- The status of the EBS options for the specified domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
default EBSOptionsStatus.Builder status(Consumer<OptionStatus.Builder> status)
The status of the EBS options for the specified domain.
This is a convenience method that creates an instance of theOptionStatus.Builder
avoiding the need to create one manually viaOptionStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostatus(OptionStatus)
.- Parameters:
status
- a consumer that will call methods onOptionStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
status(OptionStatus)
-
-