Struct aws_sdk_cloudsearch::model::OptionStatus
source · [−]#[non_exhaustive]pub struct OptionStatus {
pub creation_date: Option<DateTime>,
pub update_date: Option<DateTime>,
pub update_version: i32,
pub state: Option<OptionState>,
pub pending_deletion: Option<bool>,
}Expand description
The status of domain configuration option.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.creation_date: Option<DateTime>A timestamp for when this option was created.
update_date: Option<DateTime>A timestamp for when this option was last updated.
update_version: i32A unique integer that indicates when this option was last updated.
state: Option<OptionState>The state of processing a change to an option. Possible values:
RequiresIndexDocuments: the option's latest value will not be deployed untilIndexDocumentshas 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.
pending_deletion: Option<bool>Indicates that the option will be deleted once processing is complete.
Implementations
A timestamp for when this option was created.
A timestamp for when this option was last updated.
A unique integer that indicates when this option was last updated.
The state of processing a change to an option. Possible values:
RequiresIndexDocuments: the option's latest value will not be deployed untilIndexDocumentshas 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.
Indicates that the option will be deleted once processing is complete.
Creates a new builder-style object to manufacture OptionStatus
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for OptionStatus
impl Send for OptionStatus
impl Sync for OptionStatus
impl Unpin for OptionStatus
impl UnwindSafe for OptionStatus
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more