Struct rusoto_iam::DeleteRolePolicyRequest[][src]

pub struct DeleteRolePolicyRequest {
    pub policy_name: String,
    pub role_name: String,
}

Fields

The name of the inline policy to delete from the specified IAM role.

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 (friendly name, not ARN) identifying the role that the policy is embedded in.

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 DeleteRolePolicyRequest
[src]

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

impl Debug for DeleteRolePolicyRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteRolePolicyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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