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

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

Overview

Note:

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

{
  account_id: "AccountId", # required
  email: "Email", # required
}

An object containing the member’s accountId and email address.

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

Member account ID.

Returns:

  • (String)


97
98
99
100
101
# File 'lib/aws-sdk-guardduty/types.rb', line 97

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

#emailString

Member account’s email address.

Returns:

  • (String)


97
98
99
100
101
# File 'lib/aws-sdk-guardduty/types.rb', line 97

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