Class: Aws::PartnerCentralSelling::Types::Invitation
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralSelling::Types::Invitation
- Defined in:
- gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb
Overview
The Invitation structure represents an invitation exchanged between partners and AWS. It includes a message, receiver information, and a payload providing context for the invitation.
Constant Summary collapse
- SENSITIVE =
[:message]
Instance Attribute Summary collapse
-
#message ⇒ String
A message accompanying the invitation.
-
#payload ⇒ Types::Payload
Contains the data payload associated with the Engagement Invitation.
-
#receiver ⇒ Types::Receiver
Represents the entity that received the Engagement Invitation, including account and company details.
Instance Attribute Details
#message ⇒ String
A message accompanying the invitation.
2905 2906 2907 2908 2909 2910 2911 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2905 class Invitation < Struct.new( :message, :receiver, :payload) SENSITIVE = [:message] include Aws::Structure end |
#payload ⇒ Types::Payload
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.
2905 2906 2907 2908 2909 2910 2911 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2905 class Invitation < Struct.new( :message, :receiver, :payload) SENSITIVE = [:message] include Aws::Structure end |
#receiver ⇒ Types::Receiver
Represents the entity that received the Engagement Invitation, including account and company details. This field is essential for tracking the partner who is being invited to collaborate.
2905 2906 2907 2908 2909 2910 2911 |
# File 'gems/aws-sdk-partnercentralselling/lib/aws-sdk-partnercentralselling/types.rb', line 2905 class Invitation < Struct.new( :message, :receiver, :payload) SENSITIVE = [:message] include Aws::Structure end |