AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

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

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.SecurityToken.Model.GetCallerIdentityResponse

Namespace: Amazon.SecurityToken.Model
Assembly: AWSSDK.SecurityToken.dll
Version: 3.x.y.z

Syntax

C#
public class GetCallerIdentityResponse : AmazonWebServiceResponse

The GetCallerIdentityResponse type exposes the following members

Constructors

NameDescription
Public Method GetCallerIdentityResponse()

Properties

NameTypeDescription
Public Property Account System.String

Gets and sets the property Account.

The Amazon Web Services account ID number of the account that owns or contains the calling entity.

Public Property Arn System.String

Gets and sets the property Arn.

The Amazon Web Services ARN associated with the calling entity.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property UserId System.String

Gets and sets the property UserId.

The unique identifier of the calling entity. The exact value depends on the type of entity that is 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.

Examples

This example shows a request and response made with the credentials for a user named Alice in the AWS account 123456789012.

To get details about a calling IAM user


var client = new AmazonSecurityTokenServiceClient();
var response = client.GetCallerIdentity(new GetCallerIdentityRequest 
{
});

string account = response.Account;
string arn = response.Arn;
string userId = response.UserId;

            

This example shows a request and response made with temporary credentials created by AssumeRole. The name of the assumed role is my-role-name, and the RoleSessionName is set to my-role-session-name.

To get details about a calling user federated with AssumeRole


var client = new AmazonSecurityTokenServiceClient();
var response = client.GetCallerIdentity(new GetCallerIdentityRequest 
{
});

string account = response.Account;
string arn = response.Arn;
string userId = response.UserId;

            

This example shows a request and response made with temporary credentials created by using GetFederationToken. The Name parameter is set to my-federated-user-name.

To get details about a calling user federated with GetFederationToken


var client = new AmazonSecurityTokenServiceClient();
var response = client.GetCallerIdentity(new GetCallerIdentityRequest 
{
});

string account = response.Account;
string arn = response.Arn;
string userId = response.UserId;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5