Struct aws_sdk_elasticsearch::model::ElasticsearchDomainStatus [−][src]
#[non_exhaustive]pub struct ElasticsearchDomainStatus {Show 24 fields
pub domain_id: Option<String>,
pub domain_name: Option<String>,
pub arn: Option<String>,
pub created: Option<bool>,
pub deleted: Option<bool>,
pub endpoint: Option<String>,
pub endpoints: Option<HashMap<String, String>>,
pub processing: Option<bool>,
pub upgrade_processing: Option<bool>,
pub elasticsearch_version: Option<String>,
pub elasticsearch_cluster_config: Option<ElasticsearchClusterConfig>,
pub ebs_options: Option<EbsOptions>,
pub access_policies: Option<String>,
pub snapshot_options: Option<SnapshotOptions>,
pub vpc_options: Option<VpcDerivedInfo>,
pub cognito_options: Option<CognitoOptions>,
pub encryption_at_rest_options: Option<EncryptionAtRestOptions>,
pub node_to_node_encryption_options: Option<NodeToNodeEncryptionOptions>,
pub advanced_options: Option<HashMap<String, String>>,
pub log_publishing_options: Option<HashMap<LogType, LogPublishingOption>>,
pub service_software_options: Option<ServiceSoftwareOptions>,
pub domain_endpoint_options: Option<DomainEndpointOptions>,
pub advanced_security_options: Option<AdvancedSecurityOptions>,
pub auto_tune_options: Option<AutoTuneOptionsOutput>,
}
Expand description
The current status of an Elasticsearch domain.
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.domain_id: Option<String>
The unique identifier for the specified Elasticsearch domain.
domain_name: Option<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).
arn: Option<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.
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.
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'
.
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.
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.
elasticsearch_version: Option<String>
elasticsearch_cluster_config: Option<ElasticsearchClusterConfig>
The type and number of instances in the domain cluster.
ebs_options: Option<EbsOptions>
The EBSOptions
for the specified domain. See Configuring EBS-based Storage for more information.
access_policies: Option<String>
IAM access policy as a JSON-formatted string.
snapshot_options: Option<SnapshotOptions>
Specifies the status of the SnapshotOptions
vpc_options: Option<VpcDerivedInfo>
The VPCOptions
for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.
cognito_options: Option<CognitoOptions>
The CognitoOptions
for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.
encryption_at_rest_options: Option<EncryptionAtRestOptions>
Specifies the status of the EncryptionAtRestOptions
.
node_to_node_encryption_options: Option<NodeToNodeEncryptionOptions>
Specifies the status of the NodeToNodeEncryptionOptions
.
advanced_options: Option<HashMap<String, String>>
Specifies the status of the AdvancedOptions
log_publishing_options: Option<HashMap<LogType, LogPublishingOption>>
Log publishing options for the given domain.
service_software_options: Option<ServiceSoftwareOptions>
The current status of the Elasticsearch domain's service software.
domain_endpoint_options: Option<DomainEndpointOptions>
The current status of the Elasticsearch domain's endpoint options.
advanced_security_options: Option<AdvancedSecurityOptions>
The current status of the Elasticsearch domain's advanced security options.
auto_tune_options: Option<AutoTuneOptionsOutput>
The current status of the Elasticsearch domain's Auto-Tune options.
Implementations
The unique identifier for the specified Elasticsearch domain.
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).
The Amazon resource name (ARN) of an Elasticsearch domain. See Identifiers for IAM Entities in Using AWS Identity and Access Management for more information.
The domain creation status. True
if the creation of an Elasticsearch domain is complete. False
if domain creation is still in progress.
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.
The Elasticsearch domain endpoint that you use to submit index and search requests.
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'
.
The status of the Elasticsearch domain configuration. True
if Amazon Elasticsearch Service is processing configuration changes. False
if the configuration is active.
The status of an Elasticsearch domain version upgrade. True
if Amazon Elasticsearch Service is undergoing a version upgrade. False
if the configuration is active.
The type and number of instances in the domain cluster.
The EBSOptions
for the specified domain. See Configuring EBS-based Storage for more information.
IAM access policy as a JSON-formatted string.
Specifies the status of the SnapshotOptions
The VPCOptions
for the specified domain. For more information, see VPC Endpoints for Amazon Elasticsearch Service Domains.
The CognitoOptions
for the specified domain. For more information, see Amazon Cognito Authentication for Kibana.
Specifies the status of the EncryptionAtRestOptions
.
Specifies the status of the NodeToNodeEncryptionOptions
.
Specifies the status of the AdvancedOptions
Log publishing options for the given domain.
The current status of the Elasticsearch domain's service software.
The current status of the Elasticsearch domain's endpoint options.
The current status of the Elasticsearch domain's advanced security options.
The current status of the Elasticsearch domain's Auto-Tune options.
Creates a new builder-style object to manufacture ElasticsearchDomainStatus
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 ElasticsearchDomainStatus
impl Send for ElasticsearchDomainStatus
impl Sync for ElasticsearchDomainStatus
impl Unpin for ElasticsearchDomainStatus
impl UnwindSafe for ElasticsearchDomainStatus
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