Interface SoftwareUpdateOptionsStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<SoftwareUpdateOptionsStatus.Builder,SoftwareUpdateOptionsStatus>
,SdkBuilder<SoftwareUpdateOptionsStatus.Builder,SoftwareUpdateOptionsStatus>
,SdkPojo
- Enclosing class:
- SoftwareUpdateOptionsStatus
public static interface SoftwareUpdateOptionsStatus.Builder extends SdkPojo, CopyableBuilder<SoftwareUpdateOptionsStatus.Builder,SoftwareUpdateOptionsStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SoftwareUpdateOptionsStatus.Builder
options(Consumer<SoftwareUpdateOptions.Builder> options)
The service software update options for a domain.SoftwareUpdateOptionsStatus.Builder
options(SoftwareUpdateOptions options)
The service software update options for a domain.default SoftwareUpdateOptionsStatus.Builder
status(Consumer<OptionStatus.Builder> status)
The status of service software update options, including creation date and last updated date.SoftwareUpdateOptionsStatus.Builder
status(OptionStatus status)
The status of service software update options, including creation date and last updated date.-
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
SoftwareUpdateOptionsStatus.Builder options(SoftwareUpdateOptions options)
The service software update options for a domain.
- Parameters:
options
- The service software update options for a domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
options
default SoftwareUpdateOptionsStatus.Builder options(Consumer<SoftwareUpdateOptions.Builder> options)
The service software update options for a domain.
This is a convenience method that creates an instance of theSoftwareUpdateOptions.Builder
avoiding the need to create one manually viaSoftwareUpdateOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tooptions(SoftwareUpdateOptions)
.- Parameters:
options
- a consumer that will call methods onSoftwareUpdateOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
options(SoftwareUpdateOptions)
-
status
SoftwareUpdateOptionsStatus.Builder status(OptionStatus status)
The status of service software update options, including creation date and last updated date.
- Parameters:
status
- The status of service software update options, including creation date and last updated date.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
default SoftwareUpdateOptionsStatus.Builder status(Consumer<OptionStatus.Builder> status)
The status of service software update options, including creation date and last updated date.
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)
-
-