Struct rusoto_cloudsearch::OptionStatus[][src]

pub struct OptionStatus {
    pub creation_date: String,
    pub pending_deletion: Option<bool>,
    pub state: String,
    pub update_date: String,
    pub update_version: Option<i64>,
}

The status of domain configuration option.

Fields

A timestamp for when this option was created.

Indicates that the option will be deleted once processing is complete.

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.

A timestamp for when this option was last updated.

A unique integer that indicates when this option was last updated.

Trait Implementations

impl Default for OptionStatus
[src]

Returns the "default value" for a type. Read more

impl Debug for OptionStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for OptionStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OptionStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations