Struct aws_sdk_iot::operation::test_invoke_authorizer::builders::TestInvokeAuthorizerOutputBuilder
source · #[non_exhaustive]pub struct TestInvokeAuthorizerOutputBuilder { /* private fields */ }
Expand description
A builder for TestInvokeAuthorizerOutput
.
Implementations§
source§impl TestInvokeAuthorizerOutputBuilder
impl TestInvokeAuthorizerOutputBuilder
sourcepub fn is_authenticated(self, input: bool) -> Self
pub fn is_authenticated(self, input: bool) -> Self
True if the token is authenticated, otherwise false.
sourcepub fn set_is_authenticated(self, input: Option<bool>) -> Self
pub fn set_is_authenticated(self, input: Option<bool>) -> Self
True if the token is authenticated, otherwise false.
sourcepub fn get_is_authenticated(&self) -> &Option<bool>
pub fn get_is_authenticated(&self) -> &Option<bool>
True if the token is authenticated, otherwise false.
sourcepub fn principal_id(self, input: impl Into<String>) -> Self
pub fn principal_id(self, input: impl Into<String>) -> Self
The principal ID.
sourcepub fn set_principal_id(self, input: Option<String>) -> Self
pub fn set_principal_id(self, input: Option<String>) -> Self
The principal ID.
sourcepub fn get_principal_id(&self) -> &Option<String>
pub fn get_principal_id(&self) -> &Option<String>
The principal ID.
sourcepub fn policy_documents(self, input: impl Into<String>) -> Self
pub fn policy_documents(self, input: impl Into<String>) -> Self
Appends an item to policy_documents
.
To override the contents of this collection use set_policy_documents
.
IAM policy documents.
sourcepub fn set_policy_documents(self, input: Option<Vec<String>>) -> Self
pub fn set_policy_documents(self, input: Option<Vec<String>>) -> Self
IAM policy documents.
sourcepub fn get_policy_documents(&self) -> &Option<Vec<String>>
pub fn get_policy_documents(&self) -> &Option<Vec<String>>
IAM policy documents.
sourcepub fn refresh_after_in_seconds(self, input: i32) -> Self
pub fn refresh_after_in_seconds(self, input: i32) -> Self
The number of seconds after which the temporary credentials are refreshed.
sourcepub fn set_refresh_after_in_seconds(self, input: Option<i32>) -> Self
pub fn set_refresh_after_in_seconds(self, input: Option<i32>) -> Self
The number of seconds after which the temporary credentials are refreshed.
sourcepub fn get_refresh_after_in_seconds(&self) -> &Option<i32>
pub fn get_refresh_after_in_seconds(&self) -> &Option<i32>
The number of seconds after which the temporary credentials are refreshed.
sourcepub fn disconnect_after_in_seconds(self, input: i32) -> Self
pub fn disconnect_after_in_seconds(self, input: i32) -> Self
The number of seconds after which the connection is terminated.
sourcepub fn set_disconnect_after_in_seconds(self, input: Option<i32>) -> Self
pub fn set_disconnect_after_in_seconds(self, input: Option<i32>) -> Self
The number of seconds after which the connection is terminated.
sourcepub fn get_disconnect_after_in_seconds(&self) -> &Option<i32>
pub fn get_disconnect_after_in_seconds(&self) -> &Option<i32>
The number of seconds after which the connection is terminated.
sourcepub fn build(self) -> TestInvokeAuthorizerOutput
pub fn build(self) -> TestInvokeAuthorizerOutput
Consumes the builder and constructs a TestInvokeAuthorizerOutput
.
Trait Implementations§
source§impl Clone for TestInvokeAuthorizerOutputBuilder
impl Clone for TestInvokeAuthorizerOutputBuilder
source§fn clone(&self) -> TestInvokeAuthorizerOutputBuilder
fn clone(&self) -> TestInvokeAuthorizerOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for TestInvokeAuthorizerOutputBuilder
impl Default for TestInvokeAuthorizerOutputBuilder
source§fn default() -> TestInvokeAuthorizerOutputBuilder
fn default() -> TestInvokeAuthorizerOutputBuilder
source§impl PartialEq for TestInvokeAuthorizerOutputBuilder
impl PartialEq for TestInvokeAuthorizerOutputBuilder
source§fn eq(&self, other: &TestInvokeAuthorizerOutputBuilder) -> bool
fn eq(&self, other: &TestInvokeAuthorizerOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestInvokeAuthorizerOutputBuilder
Auto Trait Implementations§
impl Freeze for TestInvokeAuthorizerOutputBuilder
impl RefUnwindSafe for TestInvokeAuthorizerOutputBuilder
impl Send for TestInvokeAuthorizerOutputBuilder
impl Sync for TestInvokeAuthorizerOutputBuilder
impl Unpin for TestInvokeAuthorizerOutputBuilder
impl UnwindSafe for TestInvokeAuthorizerOutputBuilder
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> 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