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
-
#payload ⇒ Types::EngagementContextPayload
Contains the specific details of the Engagement context.
-
#type ⇒ String
Specifies the type of Engagement context.
Instance Attribute Details
#payload ⇒ Types::EngagementContextPayload
Contains the specific details of the Engagement context. The structure of this payload varies depending on the Type field.
1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1280 class EngagementContextDetails < Struct.new( :payload, :type) 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.
1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1280 class EngagementContextDetails < Struct.new( :payload, :type) SENSITIVE = [] include Aws::Structure end |