pub struct UpdateArchiveRule { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateArchiveRule
.
Updates the criteria and values for the specified archive rule.
Implementations§
source§impl UpdateArchiveRule
impl UpdateArchiveRule
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateArchiveRule, AwsResponseRetryClassifier>, SdkError<UpdateArchiveRuleError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateArchiveRule, AwsResponseRetryClassifier>, SdkError<UpdateArchiveRuleError>>
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<UpdateArchiveRuleOutput, SdkError<UpdateArchiveRuleError>>
pub async fn send(
self
) -> Result<UpdateArchiveRuleOutput, SdkError<UpdateArchiveRuleError>>
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 analyzer_name(self, input: impl Into<String>) -> Self
pub fn analyzer_name(self, input: impl Into<String>) -> Self
The name of the analyzer to update the archive rules for.
sourcepub fn set_analyzer_name(self, input: Option<String>) -> Self
pub fn set_analyzer_name(self, input: Option<String>) -> Self
The name of the analyzer to update the archive rules for.
sourcepub fn set_rule_name(self, input: Option<String>) -> Self
pub fn set_rule_name(self, input: Option<String>) -> Self
The name of the rule to update.
sourcepub fn filter(self, k: impl Into<String>, v: Criterion) -> Self
pub fn filter(self, k: impl Into<String>, v: Criterion) -> Self
Adds a key-value pair to filter
.
To override the contents of this collection use set_filter
.
A filter to match for the rules to update. Only rules that match the filter are updated.
sourcepub fn set_filter(self, input: Option<HashMap<String, Criterion>>) -> Self
pub fn set_filter(self, input: Option<HashMap<String, Criterion>>) -> Self
A filter to match for the rules to update. Only rules that match the filter are updated.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A client token.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A client token.
Trait Implementations§
source§impl Clone for UpdateArchiveRule
impl Clone for UpdateArchiveRule
source§fn clone(&self) -> UpdateArchiveRule
fn clone(&self) -> UpdateArchiveRule
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more