Class: Aws::Organizations::Types::TransferParticipant

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

Overview

Contains details for a participant in a transfer. A transfer is the arrangement between two management accounts where one account designates the other with specified responsibilities for their organization.

Constant Summary collapse

SENSITIVE =
[:management_account_email]

Instance Attribute Summary collapse

Instance Attribute Details

#management_account_emailString

Email address for the management account.

Returns:

  • (String)


5363
5364
5365
5366
5367
5368
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 5363

class TransferParticipant < Struct.new(
  :management_account_id,
  :management_account_email)
  SENSITIVE = [:management_account_email]
  include Aws::Structure
end

#management_account_idString

ID for the management account.

Returns:

  • (String)


5363
5364
5365
5366
5367
5368
# File 'gems/aws-sdk-organizations/lib/aws-sdk-organizations/types.rb', line 5363

class TransferParticipant < Struct.new(
  :management_account_id,
  :management_account_email)
  SENSITIVE = [:management_account_email]
  include Aws::Structure
end