Struct aws_sdk_opensearch::client::fluent_builders::UpgradeDomain
source · pub struct UpgradeDomain { /* private fields */ }
Expand description
Fluent builder constructing a request to UpgradeDomain
.
Allows you to either upgrade your Amazon OpenSearch Service domain or perform an upgrade eligibility check to a compatible version of OpenSearch or Elasticsearch.
Implementations§
source§impl UpgradeDomain
impl UpgradeDomain
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpgradeDomain, AwsResponseRetryClassifier>, SdkError<UpgradeDomainError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpgradeDomain, AwsResponseRetryClassifier>, SdkError<UpgradeDomainError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpgradeDomainOutput, SdkError<UpgradeDomainError>>
pub async fn send(
self
) -> Result<UpgradeDomainOutput, SdkError<UpgradeDomainError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
Name of the OpenSearch Service domain that you want to upgrade.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
Name of the OpenSearch Service domain that you want to upgrade.
sourcepub fn target_version(self, input: impl Into<String>) -> Self
pub fn target_version(self, input: impl Into<String>) -> Self
OpenSearch or Elasticsearch version to which you want to upgrade, in the format Opensearch_X.Y or Elasticsearch_X.Y.
sourcepub fn set_target_version(self, input: Option<String>) -> Self
pub fn set_target_version(self, input: Option<String>) -> Self
OpenSearch or Elasticsearch version to which you want to upgrade, in the format Opensearch_X.Y or Elasticsearch_X.Y.
sourcepub fn perform_check_only(self, input: bool) -> Self
pub fn perform_check_only(self, input: bool) -> Self
When true, indicates that an upgrade eligibility check needs to be performed. Does not actually perform the upgrade.
sourcepub fn set_perform_check_only(self, input: Option<bool>) -> Self
pub fn set_perform_check_only(self, input: Option<bool>) -> Self
When true, indicates that an upgrade eligibility check needs to be performed. Does not actually perform the upgrade.
sourcepub fn advanced_options(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn advanced_options(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to AdvancedOptions
.
To override the contents of this collection use set_advanced_options
.
Only supports the override_main_response_version
parameter and not other advanced options. You can only include this option when upgrading to an OpenSearch version. Specifies whether the domain reports its version as 7.10 so that it continues to work with Elasticsearch OSS clients and plugins.
sourcepub fn set_advanced_options(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_advanced_options(self, input: Option<HashMap<String, String>>) -> Self
Only supports the override_main_response_version
parameter and not other advanced options. You can only include this option when upgrading to an OpenSearch version. Specifies whether the domain reports its version as 7.10 so that it continues to work with Elasticsearch OSS clients and plugins.
Trait Implementations§
source§impl Clone for UpgradeDomain
impl Clone for UpgradeDomain
source§fn clone(&self) -> UpgradeDomain
fn clone(&self) -> UpgradeDomain
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more