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)A timestamp for when this option was created.OptionStatus.BuilderpendingDeletion(Boolean pendingDeletion)Indicates that the option will be deleted once processing is complete.OptionStatus.Builderstate(String state)The state of processing a change to an option.OptionStatus.Builderstate(OptionState state)The state of processing a change to an option.OptionStatus.BuilderupdateDate(Instant updateDate)A timestamp for when this option was last updated.OptionStatus.BuilderupdateVersion(Integer updateVersion)A unique integer that indicates when this option was last updated.-
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
-
creationDate
OptionStatus.Builder creationDate(Instant creationDate)
A timestamp for when this option was created.
- Parameters:
creationDate- A timestamp for when this option was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateDate
OptionStatus.Builder updateDate(Instant updateDate)
A timestamp for when this option was last updated.
- Parameters:
updateDate- A timestamp for when this option was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updateVersion
OptionStatus.Builder updateVersion(Integer updateVersion)
A unique integer that indicates when this option was last updated.
- Parameters:
updateVersion- A unique integer that indicates when this option was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
OptionStatus.Builder state(String state)
The state of processing a change to an option. Possible values:
RequiresIndexDocuments: the option's latest value will not be deployed until IndexDocuments has been called and indexing is complete.Processing: the option's latest value is in the process of being activated.Active: the option's latest value is completely deployed.FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.
- Parameters:
state- The state of processing a change to an option. Possible values:RequiresIndexDocuments: the option's latest value will not be deployed until IndexDocuments has been called and indexing is complete.Processing: the option's latest value is in the process of being activated.Active: the option's latest value is completely deployed.FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.
- 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 processing a change to an option. Possible values:
RequiresIndexDocuments: the option's latest value will not be deployed until IndexDocuments has been called and indexing is complete.Processing: the option's latest value is in the process of being activated.Active: the option's latest value is completely deployed.FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.
- Parameters:
state- The state of processing a change to an option. Possible values:RequiresIndexDocuments: the option's latest value will not be deployed until IndexDocuments has been called and indexing is complete.Processing: the option's latest value is in the process of being activated.Active: the option's latest value is completely deployed.FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.
- 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 that the option will be deleted once processing is complete.
- Parameters:
pendingDeletion- Indicates that the option will be deleted once processing is complete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-