Class: Aws::PartnerCentralSelling::Types::EngagementMemberSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::EngagementMemberSummary
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
The EngagementMemberSummary provides a snapshot of essential information about participants in an AWS Partner Central Engagement. This compact data structure encapsulates key details of each member, facilitating efficient collaboration and management within the Engagement.
Constant Summary collapse
- SENSITIVE =
[:company_name]
Instance Attribute Summary collapse
-
#company_name ⇒ String
The official name of the member's company or organization.
-
#website_url ⇒ String
The URL of the member company's website.
Instance Attribute Details
#company_name ⇒ String
The official name of the member's company or organization.
1806 1807 1808 1809 1810 1811 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1806 class EngagementMemberSummary < Struct.new( :company_name, :website_url) SENSITIVE = [:company_name] include Aws::Structure end |
#website_url ⇒ String
The URL of the member company's website. This offers a way to find more information about the member organization and serves as an additional identifier.
1806 1807 1808 1809 1810 1811 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1806 class EngagementMemberSummary < Struct.new( :company_name, :website_url) SENSITIVE = [:company_name] include Aws::Structure end |