Class: Aws::GuardDuty::Types::AccountDetail

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

Overview

Contains information about the account.

Constant Summary collapse

SENSITIVE =
[:email]

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The member account ID.

Returns:

  • (String)


151
152
153
154
155
156
# File 'lib/aws-sdk-guardduty/types.rb', line 151

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

#emailString

The email address of the member account.

Returns:

  • (String)


151
152
153
154
155
156
# File 'lib/aws-sdk-guardduty/types.rb', line 151

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