Class: Aws::Detective::Types::Account

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

Overview

An Amazon Web Services account that is the administrator account of or a member of a behavior graph.

Constant Summary collapse

SENSITIVE =
[:email_address]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The account identifier of the Amazon Web Services account.

Returns:

  • (String)


77
78
79
80
81
82
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 77

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

#email_addressString

The Amazon Web Services account root user email address for the Amazon Web Services account.

Returns:

  • (String)


77
78
79
80
81
82
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 77

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