Interface OptionStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OptionStatus.Builder,OptionStatus>,SdkBuilder<OptionStatus.Builder,OptionStatus>,SdkPojo
- Enclosing class:
- OptionStatus
public static interface OptionStatus.Builder extends SdkPojo, CopyableBuilder<OptionStatus.Builder,OptionStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OptionStatus.BuildercreationDate(Instant creationDate)The timestamp when the entity was created.OptionStatus.BuilderpendingDeletion(Boolean pendingDeletion)Indicates whether the entity is being deleted.OptionStatus.Builderstate(String state)The state of the entity.OptionStatus.Builderstate(OptionState state)The state of the entity.OptionStatus.BuilderupdateDate(Instant updateDate)The timestamp of the last time the entity was updated.OptionStatus.BuilderupdateVersion(Integer updateVersion)The latest version of the entity.-
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
-
creationDate
OptionStatus.Builder creationDate(Instant creationDate)
The timestamp when the entity was created.
- Parameters:
creationDate- The timestamp when the entity was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateDate
OptionStatus.Builder updateDate(Instant updateDate)
The timestamp of the last time the entity was updated.
- Parameters:
updateDate- The timestamp of the last time the entity was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateVersion
OptionStatus.Builder updateVersion(Integer updateVersion)
The latest version of the entity.
- Parameters:
updateVersion- The latest version of the entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
OptionStatus.Builder state(String state)
The state of the entity.
- Parameters:
state- The state of the entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OptionState,OptionState
-
state
OptionStatus.Builder state(OptionState state)
The state of the entity.
- Parameters:
state- The state of the entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OptionState,OptionState
-
pendingDeletion
OptionStatus.Builder pendingDeletion(Boolean pendingDeletion)
Indicates whether the entity is being deleted.
- Parameters:
pendingDeletion- Indicates whether the entity is being deleted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-