Struct rusoto_iam::AttachGroupPolicyRequest[][src]

pub struct AttachGroupPolicyRequest {
    pub group_name: String,
    pub policy_arn: String,
}

Fields

The name (friendly name, not ARN) of the group to attach the policy to.

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 Amazon Resource Name (ARN) of the IAM policy you want to attach.

For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

Trait Implementations

impl Default for AttachGroupPolicyRequest
[src]

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

impl Debug for AttachGroupPolicyRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AttachGroupPolicyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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