Struct rusoto_iot::CreateRoleAliasRequest[][src]

pub struct CreateRoleAliasRequest {
    pub credential_duration_seconds: Option<i64>,
    pub role_alias: String,
    pub role_arn: String,
}

Fields

How long (in seconds) the credentials will be valid.

The role alias that points to a role ARN. This allows you to change the role without having to update the device.

The role ARN.

Trait Implementations

impl Default for CreateRoleAliasRequest
[src]

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

impl Debug for CreateRoleAliasRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateRoleAliasRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateRoleAliasRequest
[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