[][src]Struct rusoto_securityhub::AwsElasticsearchDomainDetails

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>,
}

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

impl Clone for AwsElasticsearchDomainDetails[src]

impl Debug for AwsElasticsearchDomainDetails[src]

impl Default for AwsElasticsearchDomainDetails[src]

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

impl PartialEq<AwsElasticsearchDomainDetails> for AwsElasticsearchDomainDetails[src]

impl Serialize for AwsElasticsearchDomainDetails[src]

impl StructuralPartialEq for AwsElasticsearchDomainDetails[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> 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.