Struct rusoto_sts::GetCallerIdentityResponse [] [src]

pub struct GetCallerIdentityResponse {
    pub account: Option<String>,
    pub arn: Option<String>,
    pub user_id: Option<String>,
}

Contains the response to a successful GetCallerIdentity request, including information about the entity making the request.

Fields

The AWS account ID number of the account that owns or contains the calling entity.

The AWS ARN associated with the calling entity.

The unique identifier of the calling entity. The exact value depends on the type of entity making the call. The values returned are those listed in the aws:userid column in the Principal table found on the Policy Variables reference page in the IAM User Guide.

Trait Implementations

impl Default for GetCallerIdentityResponse
[src]

[src]

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

impl Debug for GetCallerIdentityResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetCallerIdentityResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations