pub struct CreateRule { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateRule
.
Creates a rule for the specified listener. The listener must be associated with an Application Load Balancer.
Each rule consists of a priority, one or more actions, and one or more conditions. Rules are evaluated in priority order, from the lowest value to the highest value. When the conditions for a rule are met, its actions are performed. If the conditions for no rules are met, the actions for the default rule are performed. For more information, see Listener rules in the Application Load Balancers Guide.
Implementations
sourceimpl CreateRule
impl CreateRule
sourcepub async fn send(self) -> Result<CreateRuleOutput, SdkError<CreateRuleError>>
pub async fn send(self) -> Result<CreateRuleOutput, SdkError<CreateRuleError>>
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 listener_arn(self, input: impl Into<String>) -> Self
pub fn listener_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the listener.
sourcepub fn set_listener_arn(self, input: Option<String>) -> Self
pub fn set_listener_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the listener.
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 priority(self, input: i32) -> Self
pub fn priority(self, input: i32) -> Self
The rule priority. A listener can't have multiple rules with the same priority.
sourcepub fn set_priority(self, input: Option<i32>) -> Self
pub fn set_priority(self, input: Option<i32>) -> Self
The rule priority. A listener can't have multiple rules with the same priority.
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.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
The tags to assign to the rule.
The tags to assign to the rule.
Trait Implementations
sourceimpl Clone for CreateRule
impl Clone for CreateRule
sourcefn clone(&self) -> CreateRule
fn clone(&self) -> CreateRule
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 CreateRule
impl Send for CreateRule
impl Sync for CreateRule
impl Unpin for CreateRule
impl !UnwindSafe for CreateRule
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
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