Interface OptionVersion.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OptionVersion.Builder,OptionVersion>,SdkBuilder<OptionVersion.Builder,OptionVersion>,SdkPojo
- Enclosing class:
- OptionVersion
public static interface OptionVersion.Builder extends SdkPojo, CopyableBuilder<OptionVersion.Builder,OptionVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OptionVersion.BuilderisDefault(Boolean isDefault)Indicates whether the version is the default version of the option.OptionVersion.Builderversion(String version)The version of the option.-
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
-
version
OptionVersion.Builder version(String version)
The version of the option.
- Parameters:
version- The version of the option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isDefault
OptionVersion.Builder isDefault(Boolean isDefault)
Indicates whether the version is the default version of the option.
- Parameters:
isDefault- Indicates whether the version is the default version of the option.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-