[][src]Enum aws_iam::model::types::ConditionOperatorQuantifier

pub enum ConditionOperatorQuantifier {
    ForAllValues,
    ForAnyValue,
}

You can use the Condition element of a policy to test multiple keys or multiple values for a single key in a request. You can use condition keys to test the values of the matching keys in the request. For example, you can use a condition key to control access to specific attributes of a DynamoDB table or to an Amazon EC2 instance based on tags.

From Creating a Condition with Multiple Keys or Values.

Variants

ForAllValues

The condition must hold true for all values provided.

ForAnyValue

The condition must hold true for at least one value provided.

Trait Implementations

impl Clone for ConditionOperatorQuantifier[src]

impl Eq for ConditionOperatorQuantifier[src]

impl PartialEq<ConditionOperatorQuantifier> for ConditionOperatorQuantifier[src]

impl Debug for ConditionOperatorQuantifier[src]

impl Hash for ConditionOperatorQuantifier[src]

impl StructuralPartialEq for ConditionOperatorQuantifier[src]

impl StructuralEq for ConditionOperatorQuantifier[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,