Class: Aws::PartnerCentralSelling::Types::EngagementContextDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::EngagementContextDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
Provides detailed context information for an Engagement. This structure allows for specifying the type of context and its associated payload.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier of the engagement context.
-
#payload ⇒ Types::EngagementContextPayload
Contains the specific details of the Engagement context.
-
#type ⇒ String
Specifies the type of Engagement context.
Instance Attribute Details
#id ⇒ String
The unique identifier of the engagement context. This ID is used to reference and manage the specific context within the engagement.
1395 1396 1397 1398 1399 1400 1401 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1395 class EngagementContextDetails < Struct.new( :id, :type, :payload) SENSITIVE = [] include Aws::Structure end |
#payload ⇒ Types::EngagementContextPayload
Contains the specific details of the Engagement context. The structure of this payload varies depending on the Type field.
1395 1396 1397 1398 1399 1400 1401 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1395 class EngagementContextDetails < Struct.new( :id, :type, :payload) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Specifies the type of Engagement context. Valid values are “CustomerProject” or “Document”, indicating whether the context relates to a customer project or a document respectively.
1395 1396 1397 1398 1399 1400 1401 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1395 class EngagementContextDetails < Struct.new( :id, :type, :payload) SENSITIVE = [] include Aws::Structure end |