pub struct AwsElasticsearchDomainDetails {
pub access_policies: Option<String>,
pub domain_endpoint_options: Option<AwsElasticsearchDomainDomainEndpointOptions>,
pub domain_id: Option<String>,
pub domain_name: Option<String>,
pub elasticsearch_version: Option<String>,
pub encryption_at_rest_options: Option<AwsElasticsearchDomainEncryptionAtRestOptions>,
pub endpoint: Option<String>,
pub endpoints: Option<HashMap<String, String>>,
pub node_to_node_encryption_options: Option<AwsElasticsearchDomainNodeToNodeEncryptionOptions>,
pub vpc_options: Option<AwsElasticsearchDomainVPCOptions>,
}
Expand description
Information about an Elasticsearch domain.
Fields§
§access_policies: Option<String>
IAM policy document specifying the access policies for the new Amazon ES domain.
domain_endpoint_options: Option<AwsElasticsearchDomainDomainEndpointOptions>
Additional options for the domain endpoint.
domain_id: Option<String>
Unique identifier for an Amazon ES domain.
domain_name: Option<String>
Name of an Amazon ES domain.
Domain names are unique across all domains owned by the same account within an AWS Region.
Domain names must start with a lowercase letter and must be between 3 and 28 characters.
Valid characters are a-z (lowercase only), 0-9, and – (hyphen).
elasticsearch_version: Option<String>
Elasticsearch version.
encryption_at_rest_options: Option<AwsElasticsearchDomainEncryptionAtRestOptions>
Details about the configuration for encryption at rest.
endpoint: Option<String>
Domain-specific endpoint used to submit index, search, and data upload requests to an Amazon ES domain.
The endpoint is a service URL.
endpoints: Option<HashMap<String, String>>
The key-value pair that exists if the Amazon ES domain uses VPC endpoints.
node_to_node_encryption_options: Option<AwsElasticsearchDomainNodeToNodeEncryptionOptions>
Details about the configuration for node-to-node encryption.
vpc_options: Option<AwsElasticsearchDomainVPCOptions>
Information that Amazon ES derives based on VPCOptions
for the domain.
Trait Implementations§
Source§impl Clone for AwsElasticsearchDomainDetails
impl Clone for AwsElasticsearchDomainDetails
Source§fn clone(&self) -> AwsElasticsearchDomainDetails
fn clone(&self) -> AwsElasticsearchDomainDetails
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for AwsElasticsearchDomainDetails
impl Default for AwsElasticsearchDomainDetails
Source§fn default() -> AwsElasticsearchDomainDetails
fn default() -> AwsElasticsearchDomainDetails
Source§impl<'de> Deserialize<'de> for AwsElasticsearchDomainDetails
impl<'de> Deserialize<'de> for AwsElasticsearchDomainDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for AwsElasticsearchDomainDetails
impl PartialEq for AwsElasticsearchDomainDetails
Source§fn eq(&self, other: &AwsElasticsearchDomainDetails) -> bool
fn eq(&self, other: &AwsElasticsearchDomainDetails) -> bool
self
and other
values to be equal, and is used by ==
.