Class: Aws::SSO::Types::AccountInfo

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-core/lib/aws-sdk-sso/types.rb

Overview

Provides information about your AWS account.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The identifier of the AWS account that is assigned to the user.

Returns:

  • (String)


29
30
31
32
33
34
35
# File 'gems/aws-sdk-core/lib/aws-sdk-sso/types.rb', line 29

class AccountInfo < Struct.new(
  :account_id,
  :account_name,
  :email_address)
  SENSITIVE = []
  include Aws::Structure
end

#account_nameString

The display name of the AWS account that is assigned to the user.

Returns:

  • (String)


29
30
31
32
33
34
35
# File 'gems/aws-sdk-core/lib/aws-sdk-sso/types.rb', line 29

class AccountInfo < Struct.new(
  :account_id,
  :account_name,
  :email_address)
  SENSITIVE = []
  include Aws::Structure
end

#email_addressString

The email address of the AWS account that is assigned to the user.

Returns:

  • (String)


29
30
31
32
33
34
35
# File 'gems/aws-sdk-core/lib/aws-sdk-sso/types.rb', line 29

class AccountInfo < Struct.new(
  :account_id,
  :account_name,
  :email_address)
  SENSITIVE = []
  include Aws::Structure
end