Struct aws_sdk_iot::types::builders::AuthResultBuilder   
source · #[non_exhaustive]pub struct AuthResultBuilder { /* private fields */ }Expand description
A builder for AuthResult.
Implementations§
source§impl AuthResultBuilder
 
impl AuthResultBuilder
sourcepub fn set_auth_info(self, input: Option<AuthInfo>) -> Self
 
pub fn set_auth_info(self, input: Option<AuthInfo>) -> Self
Authorization information.
sourcepub fn get_auth_info(&self) -> &Option<AuthInfo>
 
pub fn get_auth_info(&self) -> &Option<AuthInfo>
Authorization information.
sourcepub fn allowed(self, input: Allowed) -> Self
 
pub fn allowed(self, input: Allowed) -> Self
The policies and statements that allowed the specified action.
sourcepub fn set_allowed(self, input: Option<Allowed>) -> Self
 
pub fn set_allowed(self, input: Option<Allowed>) -> Self
The policies and statements that allowed the specified action.
sourcepub fn get_allowed(&self) -> &Option<Allowed>
 
pub fn get_allowed(&self) -> &Option<Allowed>
The policies and statements that allowed the specified action.
sourcepub fn denied(self, input: Denied) -> Self
 
pub fn denied(self, input: Denied) -> Self
The policies and statements that denied the specified action.
sourcepub fn set_denied(self, input: Option<Denied>) -> Self
 
pub fn set_denied(self, input: Option<Denied>) -> Self
The policies and statements that denied the specified action.
sourcepub fn get_denied(&self) -> &Option<Denied>
 
pub fn get_denied(&self) -> &Option<Denied>
The policies and statements that denied the specified action.
sourcepub fn auth_decision(self, input: AuthDecision) -> Self
 
pub fn auth_decision(self, input: AuthDecision) -> Self
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 set_auth_decision(self, input: Option<AuthDecision>) -> Self
 
pub fn set_auth_decision(self, input: Option<AuthDecision>) -> Self
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 get_auth_decision(&self) -> &Option<AuthDecision>
 
pub fn get_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, input: impl Into<String>) -> Self
 
pub fn missing_context_values(self, input: impl Into<String>) -> Self
Appends an item to missing_context_values.
To override the contents of this collection use set_missing_context_values.
Contains any missing context values found while evaluating policy.
sourcepub fn set_missing_context_values(self, input: Option<Vec<String>>) -> Self
 
pub fn set_missing_context_values(self, input: Option<Vec<String>>) -> Self
Contains any missing context values found while evaluating policy.
sourcepub fn get_missing_context_values(&self) -> &Option<Vec<String>>
 
pub fn get_missing_context_values(&self) -> &Option<Vec<String>>
Contains any missing context values found while evaluating policy.
sourcepub fn build(self) -> AuthResult
 
pub fn build(self) -> AuthResult
Consumes the builder and constructs a AuthResult.
Trait Implementations§
source§impl Clone for AuthResultBuilder
 
impl Clone for AuthResultBuilder
source§fn clone(&self) -> AuthResultBuilder
 
fn clone(&self) -> AuthResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AuthResultBuilder
 
impl Debug for AuthResultBuilder
source§impl Default for AuthResultBuilder
 
impl Default for AuthResultBuilder
source§fn default() -> AuthResultBuilder
 
fn default() -> AuthResultBuilder
source§impl PartialEq for AuthResultBuilder
 
impl PartialEq for AuthResultBuilder
source§fn eq(&self, other: &AuthResultBuilder) -> bool
 
fn eq(&self, other: &AuthResultBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AuthResultBuilder
Auto Trait Implementations§
impl Freeze for AuthResultBuilder
impl RefUnwindSafe for AuthResultBuilder
impl Send for AuthResultBuilder
impl Sync for AuthResultBuilder
impl Unpin for AuthResultBuilder
impl UnwindSafe for AuthResultBuilder
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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