Struct aws_sdk_backup::model::Condition [−][src]
#[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. Conditions are used to filter resources
in a selection that is assigned to a backup plan.
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, such as StringEquals
, that is applied to a key-value pair
used to filter resources in a selection.
condition_key: Option<String>
The key in a key-value pair. For example, in "ec2:ResourceTag/Department":
"accounting"
, "ec2:ResourceTag/Department"
is the key.
condition_value: Option<String>
The value in a key-value pair. For example, in "ec2:ResourceTag/Department":
"accounting"
, "accounting"
is the value.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Condition
impl UnwindSafe for Condition
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more