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.



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_profileTypes::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_profileTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1797
1798
1799
# File 'gems/aws-sdk-partnercentralaccount/lib/aws-sdk-partnercentralaccount/types.rb', line 1797

def unknown
  @unknown
end