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

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

Overview

Note:

When making an API call, you may pass AWSAccount data as a hash:

{
  id: "AccountId",
  email_address: "EmailAddress",
  name: "AccountName",
}

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#email_addressString

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

Returns:

  • (String)


40
41
42
43
44
45
46
# File 'lib/aws-sdk-auditmanager/types.rb', line 40

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

#idString

The identifier for the Amazon Web Services account.

Returns:

  • (String)


40
41
42
43
44
45
46
# File 'lib/aws-sdk-auditmanager/types.rb', line 40

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

#nameString

The name of the Amazon Web Services account.

Returns:

  • (String)


40
41
42
43
44
45
46
# File 'lib/aws-sdk-auditmanager/types.rb', line 40

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