Struct aws_sdk_iot::types::AuthResult
source · #[non_exhaustive]pub struct AuthResult {
pub auth_info: Option<AuthInfo>,
pub allowed: Option<Allowed>,
pub denied: Option<Denied>,
pub auth_decision: Option<AuthDecision>,
pub missing_context_values: Option<Vec<String>>,
}
Expand description
The authorizer result.
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.auth_info: Option<AuthInfo>
Authorization information.
allowed: Option<Allowed>
The policies and statements that allowed the specified action.
denied: Option<Denied>
The policies and statements that denied the specified action.
auth_decision: Option<AuthDecision>
The final authorization decision of this scenario. Multiple statements are taken into account when determining the authorization decision. An explicit deny statement can override multiple allow statements.
missing_context_values: Option<Vec<String>>
Contains any missing context values found while evaluating policy.
Implementations§
source§impl AuthResult
impl AuthResult
sourcepub fn allowed(&self) -> Option<&Allowed>
pub fn allowed(&self) -> Option<&Allowed>
The policies and statements that allowed the specified action.
sourcepub fn denied(&self) -> Option<&Denied>
pub fn denied(&self) -> Option<&Denied>
The policies and statements that denied the specified action.
sourcepub fn auth_decision(&self) -> Option<&AuthDecision>
pub fn auth_decision(&self) -> Option<&AuthDecision>
The final authorization decision of this scenario. Multiple statements are taken into account when determining the authorization decision. An explicit deny statement can override multiple allow statements.
sourcepub fn missing_context_values(&self) -> &[String]
pub fn missing_context_values(&self) -> &[String]
Contains any missing context values found while evaluating policy.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .missing_context_values.is_none()
.
source§impl AuthResult
impl AuthResult
sourcepub fn builder() -> AuthResultBuilder
pub fn builder() -> AuthResultBuilder
Creates a new builder-style object to manufacture AuthResult
.
Trait Implementations§
source§impl Clone for AuthResult
impl Clone for AuthResult
source§fn clone(&self) -> AuthResult
fn clone(&self) -> AuthResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AuthResult
impl Debug for AuthResult
source§impl PartialEq for AuthResult
impl PartialEq for AuthResult
source§fn eq(&self, other: &AuthResult) -> bool
fn eq(&self, other: &AuthResult) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthResult
Auto Trait Implementations§
impl Freeze for AuthResult
impl RefUnwindSafe for AuthResult
impl Send for AuthResult
impl Sync for AuthResult
impl Unpin for AuthResult
impl UnwindSafe for AuthResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more