AWSSTSGetCallerIdentityResponse
Objective-C
@interface AWSSTSGetCallerIdentityResponse : AWSModel
Swift
class AWSSTSGetCallerIdentityResponse : AWSModel
Contains the response to a successful GetCallerIdentity request, including information about the entity making the request.
-
The Amazon Web Services account ID number of the account that owns or contains the calling entity.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable account;
Swift
var account: String? { get set }
-
The Amazon Web Services ARN associated with the calling entity.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable arn;
Swift
var arn: String? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable userId;
Swift
var userId: String? { get set }