Struct rusoto_iam::GetUserPolicyResponse[][src]

pub struct GetUserPolicyResponse {
    pub policy_document: String,
    pub policy_name: String,
    pub user_name: String,
}

Contains the response to a successful GetUserPolicy request.

Fields

The policy document.

The name of the policy.

The user the policy is associated with.

Trait Implementations

impl Default for GetUserPolicyResponse
[src]

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

impl Debug for GetUserPolicyResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetUserPolicyResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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