Struct rusoto_iot::TestInvokeAuthorizerResponse[][src]

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

The number of seconds after which the connection is terminated.

True if the token is authenticated, otherwise false.

IAM policy documents.

The principal ID.

The number of seconds after which the temporary credentials are refreshed.

Trait Implementations

impl Default for TestInvokeAuthorizerResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for TestInvokeAuthorizerResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for TestInvokeAuthorizerResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TestInvokeAuthorizerResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations