Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data OptionStatus = OptionStatus' {}
- newOptionStatus :: UTCTime -> UTCTime -> OptionState -> OptionStatus
- optionStatus_pendingDeletion :: Lens' OptionStatus (Maybe Bool)
- optionStatus_updateVersion :: Lens' OptionStatus (Maybe Natural)
- optionStatus_creationDate :: Lens' OptionStatus UTCTime
- optionStatus_updateDate :: Lens' OptionStatus UTCTime
- optionStatus_state :: Lens' OptionStatus OptionState
Documentation
data OptionStatus Source #
The status of domain configuration option.
See: newOptionStatus
smart constructor.
OptionStatus' | |
|
Instances
:: UTCTime | |
-> UTCTime | |
-> OptionState | |
-> OptionStatus |
Create a value of OptionStatus
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:pendingDeletion:OptionStatus'
, optionStatus_pendingDeletion
- Indicates that the option will be deleted once processing is complete.
$sel:updateVersion:OptionStatus'
, optionStatus_updateVersion
- A unique integer that indicates when this option was last updated.
$sel:creationDate:OptionStatus'
, optionStatus_creationDate
- A timestamp for when this option was created.
$sel:updateDate:OptionStatus'
, optionStatus_updateDate
- A timestamp for when this option was last updated.
$sel:state:OptionStatus'
, optionStatus_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.
optionStatus_pendingDeletion :: Lens' OptionStatus (Maybe Bool) Source #
Indicates that the option will be deleted once processing is complete.
optionStatus_updateVersion :: Lens' OptionStatus (Maybe Natural) Source #
A unique integer that indicates when this option was last updated.
optionStatus_creationDate :: Lens' OptionStatus UTCTime Source #
A timestamp for when this option was created.
optionStatus_updateDate :: Lens' OptionStatus UTCTime Source #
A timestamp for when this option was last updated.
optionStatus_state :: Lens' OptionStatus OptionState Source #
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.