Class: Aws::STS::Types::FederatedUser
- Inherits:
-
Struct
- Object
- Struct
- Aws::STS::Types::FederatedUser
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sts/types.rb
Overview
Identifiers for the federated user that is associated with the credentials.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN that specifies the federated user that is associated with the credentials.
-
#federated_user_id ⇒ String
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
Method Summary
Methods included from Aws::Structure
#empty?, included, #initialize, #key?, new, #to_h, #to_s
Instance Attribute Details
#arn ⇒ String
The ARN that specifies the federated user that is associated with the credentials. For more information about ARNs and how to use them in policies, see [IAM Identifiers] in the *IAM User Guide*.
[1]: docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html
1011 1012 1013 1014 1015 1016 |
# File 'lib/aws-sdk-sts/types.rb', line 1011 class FederatedUser < Struct.new( :federated_user_id, :arn) SENSITIVE = [] include Aws::Structure end |
#federated_user_id ⇒ String
The string that identifies the federated user associated with the credentials, similar to the unique ID of an IAM user.
1011 1012 1013 1014 1015 1016 |
# File 'lib/aws-sdk-sts/types.rb', line 1011 class FederatedUser < Struct.new( :federated_user_id, :arn) SENSITIVE = [] include Aws::Structure end |