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.
1975 1976 1977 1978 1979 1980 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1975 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.
1975 1976 1977 1978 1979 1980 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 1975 class EngagementMemberSummary < Struct.new( :company_name, :website_url) SENSITIVE = [:company_name] include Aws::Structure end |