Struct aws_sdk_opensearch::input::CreateDomainInput [−][src]
#[non_exhaustive]pub struct CreateDomainInput {Show 16 fields
pub domain_name: Option<String>,
pub engine_version: Option<String>,
pub cluster_config: Option<ClusterConfig>,
pub ebs_options: Option<EbsOptions>,
pub access_policies: Option<String>,
pub snapshot_options: Option<SnapshotOptions>,
pub vpc_options: Option<VpcOptions>,
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 domain_endpoint_options: Option<DomainEndpointOptions>,
pub advanced_security_options: Option<AdvancedSecurityOptionsInput>,
pub tag_list: Option<Vec<Tag>>,
pub auto_tune_options: Option<AutoTuneOptionsInput>,
}
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_name: Option<String>
The name of the Amazon OpenSearch Service domain you're 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).
engine_version: Option<String>
String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the Amazon OpenSearch Service domain. For example, "OpenSearch_1.0" or "Elasticsearch_7.9". For more information, see Creating and managing Amazon OpenSearch Service domains .
cluster_config: Option<ClusterConfig>
Configuration options for a domain. Specifies the instance type and number of instances in the domain.
ebs_options: Option<EbsOptions>
Options to enable, disable, and specify the type and size of EBS storage volumes.
access_policies: Option<String>
IAM access policy as a JSON-formatted string.
snapshot_options: Option<SnapshotOptions>
Option to set time, in UTC format, of the daily automated snapshot. Default value is 0 hours.
vpc_options: Option<VpcOptions>
Options to specify the subnets and security groups for a VPC endpoint. For more information, see Launching your Amazon OpenSearch Service domains using a VPC .
cognito_options: Option<CognitoOptions>
Options to specify the Cognito user and identity pools for OpenSearch Dashboards authentication. For more information, see Configuring Amazon Cognito authentication for OpenSearch Dashboards.
encryption_at_rest_options: Option<EncryptionAtRestOptions>
Options for encryption of data at rest.
node_to_node_encryption_options: Option<NodeToNodeEncryptionOptions>
Node-to-node encryption options.
advanced_options: 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 Advanced cluster parameters
for more information.
log_publishing_options: Option<HashMap<LogType, LogPublishingOption>>
Map of LogType
and LogPublishingOption
, each containing options to publish a given type
of OpenSearch log.
domain_endpoint_options: Option<DomainEndpointOptions>
Options to specify configurations that will be applied to the domain endpoint.
advanced_security_options: Option<AdvancedSecurityOptionsInput>
Specifies advanced security options.
tag_list: Option<Vec<Tag>>
A list of Tag
added during domain creation.
auto_tune_options: Option<AutoTuneOptionsInput>
Specifies Auto-Tune options.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDomain, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDomain, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDomain
>
Creates a new builder-style object to manufacture CreateDomainInput
The name of the Amazon OpenSearch Service domain you're 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).
String of format Elasticsearch_X.Y or OpenSearch_X.Y to specify the engine version for the Amazon OpenSearch Service domain. For example, "OpenSearch_1.0" or "Elasticsearch_7.9". For more information, see Creating and managing Amazon OpenSearch Service domains .
Configuration options for a domain. Specifies the instance type and number of instances in the domain.
Options to enable, disable, and specify the type and size of EBS storage volumes.
IAM access policy as a JSON-formatted string.
Option to set time, in UTC format, of the daily automated snapshot. Default value is 0 hours.
Options to specify the subnets and security groups for a VPC endpoint. For more information, see Launching your Amazon OpenSearch Service domains using a VPC .
Options to specify the Cognito user and identity pools for OpenSearch Dashboards authentication. For more information, see Configuring Amazon Cognito authentication for OpenSearch Dashboards.
Options for encryption of data at rest.
Node-to-node encryption options.
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 Advanced cluster parameters
for more information.
Map of LogType
and LogPublishingOption
, each containing options to publish a given type
of OpenSearch log.
Options to specify configurations that will be applied to the domain endpoint.
Specifies advanced security options.
Specifies Auto-Tune options.
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 CreateDomainInput
impl Send for CreateDomainInput
impl Sync for CreateDomainInput
impl Unpin for CreateDomainInput
impl UnwindSafe for CreateDomainInput
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