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]

[src]

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

impl Debug for TestInvokeAuthorizerResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TestInvokeAuthorizerResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations