Struct aws_sdk_backup::model::Condition
source · [−]#[non_exhaustive]pub struct Condition {
pub condition_type: Option<ConditionType>,
pub condition_key: Option<String>,
pub condition_value: Option<String>,
}
Expand description
Contains an array of triplets made up of a condition type (such as StringEquals
), a key, and a value. Used to filter resources using their tags and assign them to a backup plan. Case sensitive.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.condition_type: Option<ConditionType>
An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports StringEquals
. For more flexible assignment options, including StringLike
and the ability to exclude resources from your backup plan, use Conditions
(with an "s" on the end) for your BackupSelection
.
condition_key: Option<String>
The key in a key-value pair. For example, in the tag Department: Accounting
, Department
is the key.
condition_value: Option<String>
The value in a key-value pair. For example, in the tag Department: Accounting
, Accounting
is the value.
Implementations
sourceimpl Condition
impl Condition
sourcepub fn condition_type(&self) -> Option<&ConditionType>
pub fn condition_type(&self) -> Option<&ConditionType>
An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports StringEquals
. For more flexible assignment options, including StringLike
and the ability to exclude resources from your backup plan, use Conditions
(with an "s" on the end) for your BackupSelection
.
sourcepub fn condition_key(&self) -> Option<&str>
pub fn condition_key(&self) -> Option<&str>
The key in a key-value pair. For example, in the tag Department: Accounting
, Department
is the key.
sourcepub fn condition_value(&self) -> Option<&str>
pub fn condition_value(&self) -> Option<&str>
The value in a key-value pair. For example, in the tag Department: Accounting
, Accounting
is the value.
Trait Implementations
impl StructuralPartialEq for Condition
Auto Trait Implementations
impl RefUnwindSafe for Condition
impl Send for Condition
impl Sync for Condition
impl Unpin for Condition
impl UnwindSafe for Condition
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