pub struct TestInvokeAuthorizerResponse {
pub disconnect_after_in_seconds: Option<i64>,
pub is_authenticated: Option<bool>,
pub policy_documents: Option<Vec<String>>,
pub principal_id: Option<String>,
pub refresh_after_in_seconds: Option<i64>,
}Fields§
§disconnect_after_in_seconds: Option<i64>The number of seconds after which the connection is terminated.
is_authenticated: Option<bool>True if the token is authenticated, otherwise false.
policy_documents: Option<Vec<String>>IAM policy documents.
principal_id: Option<String>The principal ID.
refresh_after_in_seconds: Option<i64>The number of seconds after which the temporary credentials are refreshed.
Trait Implementations§
Source§impl Clone for TestInvokeAuthorizerResponse
impl Clone for TestInvokeAuthorizerResponse
Source§fn clone(&self) -> TestInvokeAuthorizerResponse
fn clone(&self) -> TestInvokeAuthorizerResponse
Returns a duplicate 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 Debug for TestInvokeAuthorizerResponse
impl Debug for TestInvokeAuthorizerResponse
Source§impl Default for TestInvokeAuthorizerResponse
impl Default for TestInvokeAuthorizerResponse
Source§fn default() -> TestInvokeAuthorizerResponse
fn default() -> TestInvokeAuthorizerResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestInvokeAuthorizerResponse
impl<'de> Deserialize<'de> for TestInvokeAuthorizerResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TestInvokeAuthorizerResponse
impl PartialEq for TestInvokeAuthorizerResponse
Source§fn eq(&self, other: &TestInvokeAuthorizerResponse) -> bool
fn eq(&self, other: &TestInvokeAuthorizerResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TestInvokeAuthorizerResponse
Auto Trait Implementations§
impl Freeze for TestInvokeAuthorizerResponse
impl RefUnwindSafe for TestInvokeAuthorizerResponse
impl Send for TestInvokeAuthorizerResponse
impl Sync for TestInvokeAuthorizerResponse
impl Unpin for TestInvokeAuthorizerResponse
impl UnwindSafe for TestInvokeAuthorizerResponse
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