Struct aws_sdk_iam::model::PermissionsBoundaryDecisionDetail [−][src]
#[non_exhaustive]pub struct PermissionsBoundaryDecisionDetail {
pub allowed_by_permissions_boundary: bool,
}
Expand description
Contains information about the effect that a permissions boundary has on a policy simulation when the boundary is applied to an IAM entity.
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.allowed_by_permissions_boundary: bool
Specifies whether an action is allowed by a permissions boundary that is applied to an
IAM entity (user or role). A value of true
means that the permissions
boundary does not deny the action. This means that the policy includes an
Allow
statement that matches the request. In this case, if an
identity-based policy also allows the action, the request is allowed. A value of
false
means that either the requested action is not allowed (implicitly
denied) or that the action is explicitly denied by the permissions boundary. In both of
these cases, the action is not allowed, regardless of the identity-based policy.
Implementations
Specifies whether an action is allowed by a permissions boundary that is applied to an
IAM entity (user or role). A value of true
means that the permissions
boundary does not deny the action. This means that the policy includes an
Allow
statement that matches the request. In this case, if an
identity-based policy also allows the action, the request is allowed. A value of
false
means that either the requested action is not allowed (implicitly
denied) or that the action is explicitly denied by the permissions boundary. In both of
these cases, the action is not allowed, regardless of the identity-based policy.
Creates a new builder-style object to manufacture PermissionsBoundaryDecisionDetail
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 Send for PermissionsBoundaryDecisionDetail
impl Sync for PermissionsBoundaryDecisionDetail
impl Unpin for PermissionsBoundaryDecisionDetail
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