Struct aws_sdk_vpclattice::types::RuleUpdate
source · #[non_exhaustive]pub struct RuleUpdate {
pub rule_identifier: String,
pub match: Option<RuleMatch>,
pub priority: Option<i32>,
pub action: Option<RuleAction>,
}
Expand description
Represents an object when updating a rule.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.rule_identifier: String
The ID or Amazon Resource Name (ARN) of the rule.
match: Option<RuleMatch>
The rule match.
priority: Option<i32>
The rule priority. A listener can't have multiple rules with the same priority.
action: Option<RuleAction>
The rule action.
Implementations§
source§impl RuleUpdate
impl RuleUpdate
source§impl RuleUpdate
impl RuleUpdate
sourcepub fn builder() -> RuleUpdateBuilder
pub fn builder() -> RuleUpdateBuilder
Creates a new builder-style object to manufacture RuleUpdate
.
Trait Implementations§
source§impl Clone for RuleUpdate
impl Clone for RuleUpdate
source§fn clone(&self) -> RuleUpdate
fn clone(&self) -> RuleUpdate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RuleUpdate
impl Debug for RuleUpdate
source§impl PartialEq for RuleUpdate
impl PartialEq for RuleUpdate
source§fn eq(&self, other: &RuleUpdate) -> bool
fn eq(&self, other: &RuleUpdate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RuleUpdate
Auto Trait Implementations§
impl RefUnwindSafe for RuleUpdate
impl Send for RuleUpdate
impl Sync for RuleUpdate
impl Unpin for RuleUpdate
impl UnwindSafe for RuleUpdate
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.