Struct aws_sdk_iot::model::auth_result::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for AuthResult
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn set_auth_info(self, input: Option<AuthInfo>) -> Self
pub fn set_auth_info(self, input: Option<AuthInfo>) -> Self
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 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 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 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 build(self) -> AuthResult
pub fn build(self) -> AuthResult
Consumes the builder and constructs a AuthResult
.