#[non_exhaustive]pub struct CreateElasticsearchDomainInput { /* private fields */ }
Implementations§
source§impl CreateElasticsearchDomainInput
impl CreateElasticsearchDomainInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateElasticsearchDomain, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateElasticsearchDomain, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateElasticsearchDomain
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateElasticsearchDomainInput
.
source§impl CreateElasticsearchDomainInput
impl CreateElasticsearchDomainInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The name of the Elasticsearch domain that you are creating. Domain names are unique across the domains owned by an account within an AWS region. Domain names must start with a lowercase letter and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
sourcepub fn elasticsearch_version(&self) -> Option<&str>
pub fn elasticsearch_version(&self) -> Option<&str>
String of format X.Y to specify version for the Elasticsearch domain eg. "1.5" or "2.3". For more information, see Creating Elasticsearch Domains in the Amazon Elasticsearch Service Developer Guide.
sourcepub fn elasticsearch_cluster_config(
&self
) -> Option<&ElasticsearchClusterConfig>
pub fn elasticsearch_cluster_config(
&self
) -> Option<&ElasticsearchClusterConfig>
Configuration options for an Elasticsearch domain. Specifies the instance type and number of instances in the domain cluster.
sourcepub fn ebs_options(&self) -> Option<&EbsOptions>
pub fn ebs_options(&self) -> Option<&EbsOptions>
Options to enable, disable and specify the type and size of EBS storage volumes.
sourcepub fn access_policies(&self) -> Option<&str>
pub fn access_policies(&self) -> Option<&str>
IAM access policy as a JSON-formatted string.
sourcepub fn snapshot_options(&self) -> Option<&SnapshotOptions>
pub fn snapshot_options(&self) -> Option<&SnapshotOptions>
Option to set time, in UTC format, of the daily automated snapshot. Default value is 0 hours.
sourcepub fn vpc_options(&self) -> Option<&VpcOptions>
pub fn vpc_options(&self) -> Option<&VpcOptions>
Options to specify the subnets and security groups for VPC endpoint. For more information, see Creating a VPC in VPC Endpoints for Amazon Elasticsearch Service Domains
sourcepub fn cognito_options(&self) -> Option<&CognitoOptions>
pub fn cognito_options(&self) -> Option<&CognitoOptions>
Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.
sourcepub fn encryption_at_rest_options(&self) -> Option<&EncryptionAtRestOptions>
pub fn encryption_at_rest_options(&self) -> Option<&EncryptionAtRestOptions>
Specifies the Encryption At Rest Options.
sourcepub fn node_to_node_encryption_options(
&self
) -> Option<&NodeToNodeEncryptionOptions>
pub fn node_to_node_encryption_options(
&self
) -> Option<&NodeToNodeEncryptionOptions>
Specifies the NodeToNodeEncryptionOptions.
sourcepub fn advanced_options(&self) -> Option<&HashMap<String, String>>
pub fn advanced_options(&self) -> Option<&HashMap<String, String>>
Option to allow references to indices in an HTTP request body. Must be false
when configuring access to individual sub-resources. By default, the value is true
. See Configuration Advanced Options for more information.
sourcepub fn log_publishing_options(
&self
) -> Option<&HashMap<LogType, LogPublishingOption>>
pub fn log_publishing_options(
&self
) -> Option<&HashMap<LogType, LogPublishingOption>>
Map of LogType
and LogPublishingOption
, each containing options to publish a given type of Elasticsearch log.
sourcepub fn domain_endpoint_options(&self) -> Option<&DomainEndpointOptions>
pub fn domain_endpoint_options(&self) -> Option<&DomainEndpointOptions>
Options to specify configuration that will be applied to the domain endpoint.
sourcepub fn advanced_security_options(&self) -> Option<&AdvancedSecurityOptionsInput>
pub fn advanced_security_options(&self) -> Option<&AdvancedSecurityOptionsInput>
Specifies advanced security options.
sourcepub fn auto_tune_options(&self) -> Option<&AutoTuneOptionsInput>
pub fn auto_tune_options(&self) -> Option<&AutoTuneOptionsInput>
Specifies Auto-Tune options.
Trait Implementations§
source§impl Clone for CreateElasticsearchDomainInput
impl Clone for CreateElasticsearchDomainInput
source§fn clone(&self) -> CreateElasticsearchDomainInput
fn clone(&self) -> CreateElasticsearchDomainInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<CreateElasticsearchDomainInput> for CreateElasticsearchDomainInput
impl PartialEq<CreateElasticsearchDomainInput> for CreateElasticsearchDomainInput
source§fn eq(&self, other: &CreateElasticsearchDomainInput) -> bool
fn eq(&self, other: &CreateElasticsearchDomainInput) -> bool
self
and other
values to be equal, and is used
by ==
.