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.
1900 1901 1902 1903 1904 1905 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1900 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.
1900 1901 1902 1903 1904 1905 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1900 class EngagementMemberSummary < Struct.new( :company_name, :website_url) SENSITIVE = [:company_name] include Aws::Structure end |