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 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 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 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 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 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for TestInvokeAuthorizerOutputBuilder
impl Default for TestInvokeAuthorizerOutputBuilder
source§fn default() -> TestInvokeAuthorizerOutputBuilder
fn default() -> TestInvokeAuthorizerOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<TestInvokeAuthorizerOutputBuilder> for TestInvokeAuthorizerOutputBuilder
impl PartialEq<TestInvokeAuthorizerOutputBuilder> for TestInvokeAuthorizerOutputBuilder
source§fn eq(&self, other: &TestInvokeAuthorizerOutputBuilder) -> bool
fn eq(&self, other: &TestInvokeAuthorizerOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestInvokeAuthorizerOutputBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more