Class: Aws::PartnerCentralAccount::Types::Participant

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

Overview

Note:

Participant is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Participant corresponding to the set member.

Represents a participant in a partner connection, containing their profile and account information.

Direct Known Subclasses

Account, PartnerProfile, SellerProfile, Unknown

Defined Under Namespace

Classes: Account, PartnerProfile, SellerProfile, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#accountTypes::AccountSummary

The AWS account information for the participant.



1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1784

class Participant < Struct.new(
  :partner_profile,
  :seller_profile,
  :account,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class PartnerProfile < Participant; end
  class SellerProfile < Participant; end
  class Account < Participant; end
  class Unknown < Participant; end
end

#partner_profileTypes::PartnerProfileSummary

The partner profile information for the participant.



1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1784

class Participant < Struct.new(
  :partner_profile,
  :seller_profile,
  :account,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class PartnerProfile < Participant; end
  class SellerProfile < Participant; end
  class Account < Participant; end
  class Unknown < Participant; end
end

#seller_profileTypes::SellerProfileSummary

The seller profile information for the participant.



1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1784

class Participant < Struct.new(
  :partner_profile,
  :seller_profile,
  :account,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class PartnerProfile < Participant; end
  class SellerProfile < Participant; end
  class Account < Participant; end
  class Unknown < Participant; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1784
1785
1786
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1784

def unknown
  @unknown
end