Class: Aws::STS::Types::GetCallerIdentityResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::STS::Types::GetCallerIdentityResponse
- Defined in:
- gems/aws-sdk-core/lib/aws-sdk-sts/types.rb
Overview
Contains the response to a successful GetCallerIdentity request, including information about the entity making the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account ⇒ String
The Amazon Web Services account ID number of the account that owns or contains the calling entity.
-
#arn ⇒ String
The Amazon Web Services ARN associated with the calling entity.
-
#user_id ⇒ String
The unique identifier of the calling entity.
Instance Attribute Details
#account ⇒ String
The Amazon Web Services account ID number of the account that owns or contains the calling entity.
1234 1235 1236 1237 1238 1239 1240 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1234 class GetCallerIdentityResponse < Struct.new( :user_id, :account, :arn) SENSITIVE = [] include Aws::Structure end |
#arn ⇒ String
The Amazon Web Services ARN associated with the calling entity.
1234 1235 1236 1237 1238 1239 1240 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1234 class GetCallerIdentityResponse < Struct.new( :user_id, :account, :arn) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
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.
1234 1235 1236 1237 1238 1239 1240 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1234 class GetCallerIdentityResponse < Struct.new( :user_id, :account, :arn) SENSITIVE = [] include Aws::Structure end |