Class: Aws::AuditManager::Types::AWSAccount

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

Overview

The wrapper of Amazon Web Services account details, such as account ID or email address.

Constant Summary collapse

SENSITIVE =
[:email_address]

Instance Attribute Summary collapse

Instance Attribute Details

#email_addressString

The email address that's associated with the Amazon Web Services account.

Returns:

  • (String)


31
32
33
34
35
36
37
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 31

class AWSAccount < Struct.new(
  :id,
  :email_address,
  :name)
  SENSITIVE = [:email_address]
  include Aws::Structure
end

#idString

The identifier for the Amazon Web Services account.

Returns:

  • (String)


31
32
33
34
35
36
37
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 31

class AWSAccount < Struct.new(
  :id,
  :email_address,
  :name)
  SENSITIVE = [:email_address]
  include Aws::Structure
end

#nameString

The name of the Amazon Web Services account.

Returns:

  • (String)


31
32
33
34
35
36
37
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 31

class AWSAccount < Struct.new(
  :id,
  :email_address,
  :name)
  SENSITIVE = [:email_address]
  include Aws::Structure
end