[][src]Struct rusoto_es::ElasticsearchDomainStatus

pub struct ElasticsearchDomainStatus {
    pub arn: String,
    pub access_policies: Option<String>,
    pub advanced_options: Option<HashMap<String, String>>,
    pub advanced_security_options: Option<AdvancedSecurityOptions>,
    pub cognito_options: Option<CognitoOptions>,
    pub created: Option<bool>,
    pub deleted: Option<bool>,
    pub domain_endpoint_options: Option<DomainEndpointOptions>,
    pub domain_id: String,
    pub domain_name: String,
    pub ebs_options: Option<EBSOptions>,
    pub elasticsearch_cluster_config: ElasticsearchClusterConfig,
    pub elasticsearch_version: Option<String>,
    pub encryption_at_rest_options: Option<EncryptionAtRestOptions>,
    pub endpoint: Option<String>,
    pub endpoints: Option<HashMap<String, String>>,
    pub log_publishing_options: Option<HashMap<String, LogPublishingOption>>,
    pub node_to_node_encryption_options: Option<NodeToNodeEncryptionOptions>,
    pub processing: Option<bool>,
    pub service_software_options: Option<ServiceSoftwareOptions>,
    pub snapshot_options: Option<SnapshotOptions>,
    pub upgrade_processing: Option<bool>,
    pub vpc_options: Option<VPCDerivedInfo>,
}

The current status of an Elasticsearch domain.

Fields

arn: String

The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity and Access Management for more information.

access_policies: Option<String>

IAM access policy as a JSON-formatted string.

advanced_options: Option<HashMap<String, String>>

Specifies the status of the AdvancedOptions

advanced_security_options: Option<AdvancedSecurityOptions>

The current status of the Elasticsearch domain's advanced security options.

cognito_options: Option<CognitoOptions>

The CognitoOptions for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.

created: Option<bool>

The domain creation status. True if the creation of an Elasticsearch domain is complete. False if domain creation is still in progress.

deleted: Option<bool>

The domain deletion status. True if a delete request has been received for the domain but resource cleanup is still in progress. False if the domain has not been deleted. Once domain deletion is complete, the status of the domain is no longer returned.

domain_endpoint_options: Option<DomainEndpointOptions>

The current status of the Elasticsearch domain's endpoint options.

domain_id: String

The unique identifier for the specified Elasticsearch domain.

domain_name: String

The name of an Elasticsearch domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).

ebs_options: Option<EBSOptions>

The EBSOptions for the specified domain. See Configuring EBS-based Storage for more information.

elasticsearch_cluster_config: ElasticsearchClusterConfig

The type and number of instances in the domain cluster.

elasticsearch_version: Option<String>encryption_at_rest_options: Option<EncryptionAtRestOptions>

Specifies the status of the EncryptionAtRestOptions.

endpoint: Option<String>

The Elasticsearch domain endpoint that you use to submit index and search requests.

endpoints: Option<HashMap<String, String>>

Map containing the Elasticsearch domain endpoints used to submit index and search requests. Example key, value: 'vpc','vpc-endpoint-h2dsd34efgyghrtguk5gt6j2foh4.us-east-1.es.amazonaws.com'.

log_publishing_options: Option<HashMap<String, LogPublishingOption>>

Log publishing options for the given domain.

node_to_node_encryption_options: Option<NodeToNodeEncryptionOptions>

Specifies the status of the NodeToNodeEncryptionOptions.

processing: Option<bool>

The status of the Elasticsearch domain configuration. True if Amazon Elasticsearch Service is processing configuration changes. False if the configuration is active.

service_software_options: Option<ServiceSoftwareOptions>

The current status of the Elasticsearch domain's service software.

snapshot_options: Option<SnapshotOptions>

Specifies the status of the SnapshotOptions

upgrade_processing: Option<bool>

The status of an Elasticsearch domain version upgrade. True if Amazon Elasticsearch Service is undergoing a version upgrade. False if the configuration is active.

vpc_options: Option<VPCDerivedInfo>

The VPCOptions for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.

Trait Implementations

impl Clone for ElasticsearchDomainStatus[src]

impl Debug for ElasticsearchDomainStatus[src]

impl Default for ElasticsearchDomainStatus[src]

impl<'de> Deserialize<'de> for ElasticsearchDomainStatus[src]

impl PartialEq<ElasticsearchDomainStatus> for ElasticsearchDomainStatus[src]

impl StructuralPartialEq for ElasticsearchDomainStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.