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) -> Option<&[String]>
 
pub fn missing_context_values(&self) -> Option<&[String]>
Contains any missing context values found while evaluating policy.
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<AuthResult> for AuthResult
 
impl PartialEq<AuthResult> 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 ==.