Class: Aws::SSO::Types::AccountInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSO::Types::AccountInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sso/types.rb
Overview
Provides information about your AWS account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier of the AWS account that is assigned to the user.
-
#account_name ⇒ String
The display name of the AWS account that is assigned to the user.
-
#email_address ⇒ String
The email address of the AWS account that is assigned to the user.
Method Summary
Methods included from Aws::Structure
#empty?, included, #initialize, #key?, new, #to_h, #to_s
Instance Attribute Details
#account_id ⇒ String
The identifier of the AWS account that is assigned to the user.
29 30 31 32 33 34 35 |
# File 'lib/aws-sdk-sso/types.rb', line 29 class AccountInfo < Struct.new( :account_id, :account_name, :email_address) SENSITIVE = [] include Aws::Structure end |
#account_name ⇒ String
The display name of the AWS account that is assigned to the user.
29 30 31 32 33 34 35 |
# File 'lib/aws-sdk-sso/types.rb', line 29 class AccountInfo < Struct.new( :account_id, :account_name, :email_address) SENSITIVE = [] include Aws::Structure end |
#email_address ⇒ String
The email address of the AWS account that is assigned to the user.
29 30 31 32 33 34 35 |
# File 'lib/aws-sdk-sso/types.rb', line 29 class AccountInfo < Struct.new( :account_id, :account_name, :email_address) SENSITIVE = [] include Aws::Structure end |