Struct rusoto_iam::AddRoleToInstanceProfileRequest[][src]

pub struct AddRoleToInstanceProfileRequest {
    pub instance_profile_name: String,
    pub role_name: String,
}

Fields

The name of the instance profile to update.

This parameter allows (per its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

The name of the role to add.

This parameter allows (per its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Trait Implementations

impl Default for AddRoleToInstanceProfileRequest
[src]

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

impl Debug for AddRoleToInstanceProfileRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddRoleToInstanceProfileRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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