Struct aws_sdk_opensearch::types::DomainConfig
source · #[non_exhaustive]pub struct DomainConfig {Show 18 fields
pub engine_version: Option<VersionStatus>,
pub cluster_config: Option<ClusterConfigStatus>,
pub ebs_options: Option<EbsOptionsStatus>,
pub access_policies: Option<AccessPoliciesStatus>,
pub ip_address_type: Option<IpAddressTypeStatus>,
pub snapshot_options: Option<SnapshotOptionsStatus>,
pub vpc_options: Option<VpcDerivedInfoStatus>,
pub cognito_options: Option<CognitoOptionsStatus>,
pub encryption_at_rest_options: Option<EncryptionAtRestOptionsStatus>,
pub node_to_node_encryption_options: Option<NodeToNodeEncryptionOptionsStatus>,
pub advanced_options: Option<AdvancedOptionsStatus>,
pub log_publishing_options: Option<LogPublishingOptionsStatus>,
pub domain_endpoint_options: Option<DomainEndpointOptionsStatus>,
pub advanced_security_options: Option<AdvancedSecurityOptionsStatus>,
pub auto_tune_options: Option<AutoTuneOptionsStatus>,
pub change_progress_details: Option<ChangeProgressDetails>,
pub off_peak_window_options: Option<OffPeakWindowOptionsStatus>,
pub software_update_options: Option<SoftwareUpdateOptionsStatus>,
}
Expand description
Container for the configuration of an OpenSearch Service 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.engine_version: Option<VersionStatus>
The OpenSearch or Elasticsearch version that the domain is running.
cluster_config: Option<ClusterConfigStatus>
Container for the cluster configuration of a the domain.
ebs_options: Option<EbsOptionsStatus>
Container for EBS options configured for the domain.
access_policies: Option<AccessPoliciesStatus>
Specifies the access policies for the domain.
ip_address_type: Option<IpAddressTypeStatus>
The type of IP addresses supported by the endpoint for the domain.
snapshot_options: Option<SnapshotOptionsStatus>
DEPRECATED. Container for parameters required to configure automated snapshots of domain indexes.
vpc_options: Option<VpcDerivedInfoStatus>
The current VPC options for the domain and the status of any updates to their configuration.
cognito_options: Option<CognitoOptionsStatus>
Container for Amazon Cognito options for the domain.
encryption_at_rest_options: Option<EncryptionAtRestOptionsStatus>
Key-value pairs to enable encryption at rest.
node_to_node_encryption_options: Option<NodeToNodeEncryptionOptionsStatus>
Whether node-to-node encryption is enabled or disabled.
advanced_options: Option<AdvancedOptionsStatus>
Key-value pairs to specify advanced configuration options. For more information, see Advanced options.
log_publishing_options: Option<LogPublishingOptionsStatus>
Key-value pairs to configure log publishing.
domain_endpoint_options: Option<DomainEndpointOptionsStatus>
Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.
advanced_security_options: Option<AdvancedSecurityOptionsStatus>
Container for fine-grained access control settings for the domain.
auto_tune_options: Option<AutoTuneOptionsStatus>
Container for Auto-Tune settings for the domain.
change_progress_details: Option<ChangeProgressDetails>
Container for information about the progress of an existing configuration change.
off_peak_window_options: Option<OffPeakWindowOptionsStatus>
Container for off-peak window options for the domain.
software_update_options: Option<SoftwareUpdateOptionsStatus>
Software update options for the domain.
Implementations§
source§impl DomainConfig
impl DomainConfig
sourcepub fn engine_version(&self) -> Option<&VersionStatus>
pub fn engine_version(&self) -> Option<&VersionStatus>
The OpenSearch or Elasticsearch version that the domain is running.
sourcepub fn cluster_config(&self) -> Option<&ClusterConfigStatus>
pub fn cluster_config(&self) -> Option<&ClusterConfigStatus>
Container for the cluster configuration of a the domain.
sourcepub fn ebs_options(&self) -> Option<&EbsOptionsStatus>
pub fn ebs_options(&self) -> Option<&EbsOptionsStatus>
Container for EBS options configured for the domain.
sourcepub fn access_policies(&self) -> Option<&AccessPoliciesStatus>
pub fn access_policies(&self) -> Option<&AccessPoliciesStatus>
Specifies the access policies for the domain.
sourcepub fn ip_address_type(&self) -> Option<&IpAddressTypeStatus>
pub fn ip_address_type(&self) -> Option<&IpAddressTypeStatus>
The type of IP addresses supported by the endpoint for the domain.
sourcepub fn snapshot_options(&self) -> Option<&SnapshotOptionsStatus>
pub fn snapshot_options(&self) -> Option<&SnapshotOptionsStatus>
DEPRECATED. Container for parameters required to configure automated snapshots of domain indexes.
sourcepub fn vpc_options(&self) -> Option<&VpcDerivedInfoStatus>
pub fn vpc_options(&self) -> Option<&VpcDerivedInfoStatus>
The current VPC options for the domain and the status of any updates to their configuration.
sourcepub fn cognito_options(&self) -> Option<&CognitoOptionsStatus>
pub fn cognito_options(&self) -> Option<&CognitoOptionsStatus>
Container for Amazon Cognito options for the domain.
sourcepub fn encryption_at_rest_options(
&self
) -> Option<&EncryptionAtRestOptionsStatus>
pub fn encryption_at_rest_options( &self ) -> Option<&EncryptionAtRestOptionsStatus>
Key-value pairs to enable encryption at rest.
sourcepub fn node_to_node_encryption_options(
&self
) -> Option<&NodeToNodeEncryptionOptionsStatus>
pub fn node_to_node_encryption_options( &self ) -> Option<&NodeToNodeEncryptionOptionsStatus>
Whether node-to-node encryption is enabled or disabled.
sourcepub fn advanced_options(&self) -> Option<&AdvancedOptionsStatus>
pub fn advanced_options(&self) -> Option<&AdvancedOptionsStatus>
Key-value pairs to specify advanced configuration options. For more information, see Advanced options.
sourcepub fn log_publishing_options(&self) -> Option<&LogPublishingOptionsStatus>
pub fn log_publishing_options(&self) -> Option<&LogPublishingOptionsStatus>
Key-value pairs to configure log publishing.
sourcepub fn domain_endpoint_options(&self) -> Option<&DomainEndpointOptionsStatus>
pub fn domain_endpoint_options(&self) -> Option<&DomainEndpointOptionsStatus>
Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.
sourcepub fn advanced_security_options(
&self
) -> Option<&AdvancedSecurityOptionsStatus>
pub fn advanced_security_options( &self ) -> Option<&AdvancedSecurityOptionsStatus>
Container for fine-grained access control settings for the domain.
sourcepub fn auto_tune_options(&self) -> Option<&AutoTuneOptionsStatus>
pub fn auto_tune_options(&self) -> Option<&AutoTuneOptionsStatus>
Container for Auto-Tune settings for the domain.
sourcepub fn change_progress_details(&self) -> Option<&ChangeProgressDetails>
pub fn change_progress_details(&self) -> Option<&ChangeProgressDetails>
Container for information about the progress of an existing configuration change.
sourcepub fn off_peak_window_options(&self) -> Option<&OffPeakWindowOptionsStatus>
pub fn off_peak_window_options(&self) -> Option<&OffPeakWindowOptionsStatus>
Container for off-peak window options for the domain.
sourcepub fn software_update_options(&self) -> Option<&SoftwareUpdateOptionsStatus>
pub fn software_update_options(&self) -> Option<&SoftwareUpdateOptionsStatus>
Software update options for the domain.
source§impl DomainConfig
impl DomainConfig
sourcepub fn builder() -> DomainConfigBuilder
pub fn builder() -> DomainConfigBuilder
Creates a new builder-style object to manufacture DomainConfig
.
Trait Implementations§
source§impl Clone for DomainConfig
impl Clone for DomainConfig
source§fn clone(&self) -> DomainConfig
fn clone(&self) -> DomainConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DomainConfig
impl Debug for DomainConfig
source§impl PartialEq for DomainConfig
impl PartialEq for DomainConfig
source§fn eq(&self, other: &DomainConfig) -> bool
fn eq(&self, other: &DomainConfig) -> bool
self
and other
values to be equal, and is used
by ==
.