Class: Aws::PartnerCentralSelling::Types::Payload
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::Payload
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
Payload is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Payload corresponding to the set member.
Contains the data payload associated with the Engagement Invitation. This payload includes essential details related to the AWS opportunity and is used by partners to evaluate whether to accept or reject the engagement.
Direct Known Subclasses
Defined Under Namespace
Classes: OpportunityInvitation, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#opportunity_invitation ⇒ Types::OpportunityInvitationPayload
Specifies the details of the opportunity invitation within the Engagement Invitation payload.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#opportunity_invitation ⇒ Types::OpportunityInvitationPayload
Specifies the details of the opportunity invitation within the Engagement Invitation payload. This data helps partners understand the context, scope, and expected involvement for the opportunity from AWS.
2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2386 class Payload < Struct.new( :opportunity_invitation, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class OpportunityInvitation < Payload; end class Unknown < Payload; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2386 2387 2388 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2386 def unknown @unknown end |