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