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 ==
.