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 domain or perform an upgrade eligibility check to a compatible version of OpenSearch or Elasticsearch.
Implementations
sourceimpl UpgradeDomain
impl UpgradeDomain
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
The name of an domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
The name of an domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
sourcepub fn target_version(self, input: impl Into<String>) -> Self
pub fn target_version(self, input: impl Into<String>) -> Self
The version of OpenSearch you intend to upgrade the domain to.
sourcepub fn set_target_version(self, input: Option<String>) -> Self
pub fn set_target_version(self, input: Option<String>) -> Self
The version of OpenSearch you intend to upgrade the domain to.
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
.
Exposes select native OpenSearch configuration values from opensearch.yml
. Currently, the following advanced options are available:
- 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 istrue
. See Advanced cluster parameters for more information. - Option to specify the percentage of heap space allocated to field data. By default, this setting is unbounded.
For more information, see Advanced cluster parameters.
sourcepub fn set_advanced_options(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_advanced_options(
self,
input: Option<HashMap<String, String>>
) -> Self
Exposes select native OpenSearch configuration values from opensearch.yml
. Currently, the following advanced options are available:
- 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 istrue
. See Advanced cluster parameters for more information. - Option to specify the percentage of heap space allocated to field data. By default, this setting is unbounded.
For more information, see Advanced cluster parameters.
Trait Implementations
sourceimpl Clone for UpgradeDomain
impl Clone for UpgradeDomain
sourcefn clone(&self) -> UpgradeDomain
fn clone(&self) -> UpgradeDomain
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for UpgradeDomain
impl Send for UpgradeDomain
impl Sync for UpgradeDomain
impl Unpin for UpgradeDomain
impl !UnwindSafe for UpgradeDomain
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more