Struct aws_sdk_elasticloadbalancingv2::operation::modify_rule::builders::ModifyRuleFluentBuilder
source · pub struct ModifyRuleFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ModifyRule
.
Replaces the specified properties of the specified rule. Any properties that you do not specify are unchanged.
To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.
Implementations§
source§impl ModifyRuleFluentBuilder
impl ModifyRuleFluentBuilder
sourcepub fn as_input(&self) -> &ModifyRuleInputBuilder
pub fn as_input(&self) -> &ModifyRuleInputBuilder
Access the ModifyRule as a reference.
sourcepub async fn send(
self,
) -> Result<ModifyRuleOutput, SdkError<ModifyRuleError, HttpResponse>>
pub async fn send( self, ) -> Result<ModifyRuleOutput, SdkError<ModifyRuleError, HttpResponse>>
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 customize(
self,
) -> CustomizableOperation<ModifyRuleOutput, ModifyRuleError, Self>
pub fn customize( self, ) -> CustomizableOperation<ModifyRuleOutput, ModifyRuleError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn rule_arn(self, input: impl Into<String>) -> Self
pub fn rule_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the rule.
sourcepub fn set_rule_arn(self, input: Option<String>) -> Self
pub fn set_rule_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the rule.
sourcepub fn get_rule_arn(&self) -> &Option<String>
pub fn get_rule_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the rule.
sourcepub fn conditions(self, input: RuleCondition) -> Self
pub fn conditions(self, input: RuleCondition) -> Self
Appends an item to Conditions
.
To override the contents of this collection use set_conditions
.
The conditions.
sourcepub fn set_conditions(self, input: Option<Vec<RuleCondition>>) -> Self
pub fn set_conditions(self, input: Option<Vec<RuleCondition>>) -> Self
The conditions.
sourcepub fn get_conditions(&self) -> &Option<Vec<RuleCondition>>
pub fn get_conditions(&self) -> &Option<Vec<RuleCondition>>
The conditions.
sourcepub fn actions(self, input: Action) -> Self
pub fn actions(self, input: Action) -> Self
Appends an item to Actions
.
To override the contents of this collection use set_actions
.
The actions.
sourcepub fn set_actions(self, input: Option<Vec<Action>>) -> Self
pub fn set_actions(self, input: Option<Vec<Action>>) -> Self
The actions.
sourcepub fn get_actions(&self) -> &Option<Vec<Action>>
pub fn get_actions(&self) -> &Option<Vec<Action>>
The actions.
Trait Implementations§
source§impl Clone for ModifyRuleFluentBuilder
impl Clone for ModifyRuleFluentBuilder
source§fn clone(&self) -> ModifyRuleFluentBuilder
fn clone(&self) -> ModifyRuleFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for ModifyRuleFluentBuilder
impl !RefUnwindSafe for ModifyRuleFluentBuilder
impl Send for ModifyRuleFluentBuilder
impl Sync for ModifyRuleFluentBuilder
impl Unpin for ModifyRuleFluentBuilder
impl !UnwindSafe for ModifyRuleFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more