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.
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1797 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.
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1797 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.
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1797 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
1797 1798 1799 |
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1797 def unknown @unknown end |