Class: Aws::PartnerCentralSelling::Types::EngagementContextPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::EngagementContextPayload
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-partnercentralselling/types.rb
Overview
EngagementContextPayload is a union - when making an API calls you must set exactly one of the members.
EngagementContextPayload is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EngagementContextPayload corresponding to the set member.
Represents the payload of an Engagement context. The structure of this payload varies based on the context type specified in the EngagementContextDetails.
Direct Known Subclasses
Defined Under Namespace
Classes: CustomerProject, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_project ⇒ Types::CustomerProjectsContext
Contains detailed information about a customer project when the context type is “CustomerProject”.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#customer_project ⇒ Types::CustomerProjectsContext
Contains detailed information about a customer project when the context type is “CustomerProject”. This field is present only when the Type in EngagementContextDetails is set to “CustomerProject”.
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1303 class EngagementContextPayload < Struct.new( :customer_project, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomerProject < EngagementContextPayload; end class Unknown < EngagementContextPayload; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1303 1304 1305 |
# File 'lib/aws-sdk-partnercentralselling/types.rb', line 1303 def unknown @unknown end |