Struct aws_sdk_iam::model::ContextEntry [−][src]
#[non_exhaustive]pub struct ContextEntry {
pub context_key_name: Option<String>,
pub context_key_values: Option<Vec<String>>,
pub context_key_type: Option<ContextKeyTypeEnum>,
}
Expand description
Contains information about a condition context key. It includes the name of the key and
specifies the value (or values, if the context key supports multiple values) to use in the
simulation. This information is used when evaluating the Condition
elements of
the input policies.
This data type is used as an input parameter to SimulateCustomPolicy and SimulatePrincipalPolicy.
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.context_key_name: Option<String>
The full name of a condition context key, including the service prefix. For example,
aws:SourceIp
or s3:VersionId
.
context_key_values: Option<Vec<String>>
The value (or values, if the condition context key supports multiple values) to provide
to the simulation when the key is referenced by a Condition
element in an
input policy.
context_key_type: Option<ContextKeyTypeEnum>
The data type of the value (or values) specified in the ContextKeyValues
parameter.
Implementations
The full name of a condition context key, including the service prefix. For example,
aws:SourceIp
or s3:VersionId
.
The value (or values, if the condition context key supports multiple values) to provide
to the simulation when the key is referenced by a Condition
element in an
input policy.
The data type of the value (or values) specified in the ContextKeyValues
parameter.
Creates a new builder-style object to manufacture ContextEntry
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ContextEntry
impl Send for ContextEntry
impl Sync for ContextEntry
impl Unpin for ContextEntry
impl UnwindSafe for ContextEntry
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