Class: Aws::PartnerCentralAccount::Types::Participant
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralAccount::Types::Participant
- 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
Defined Under Namespace
Classes: Account, PartnerProfile, SellerProfile, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account ⇒ Types::AccountSummary
The AWS account information for the participant.
-
#partner_profile ⇒ Types::PartnerProfileSummary
The partner profile information for the participant.
-
#seller_profile ⇒ Types::SellerProfileSummary
The seller profile information for the participant.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#account ⇒ Types::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_profile ⇒ Types::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_profile ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1784 1785 1786 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1784 def unknown @unknown end |