Module Values.EngagementInvitationSummarySource

Provides a summarized view of the Engagement Invitation, including details like the identifier, status, and sender. This summary helps partners track and manage AWS originated opportunities.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the Engagement Invitation. The ARN is a unique identifier that allows partners to reference the invitation in their system and manage its lifecycle.

    *)
  2. payloadType : EngagementInvitationPayloadType.t option;
    (*

    Describes the type of payload associated with the Engagement Invitation, such as Opportunity or MarketplaceOffer. This helps partners understand the nature of the engagement request from AWS.

    *)
  3. id : EngagementInvitationArnOrIdentifier.t option;
    (*

    Represents the unique identifier of the Engagement Invitation. This identifier is used to track the invitation and to manage responses like acceptance or rejection.

    *)
  4. engagementId : EngagementIdentifier.t option;
    (*

    The identifier of the Engagement associated with this invitation. This links the invitation to its parent Engagement.

    *)
  5. engagementTitle : EngagementTitle.t option;
    (*

    Provides a short title or description of the Engagement Invitation. This title helps partners quickly identify and differentiate between multiple engagement opportunities.

    *)
  6. status : InvitationStatus.t option;
    (*

    Represents the current status of the Engagement Invitation, such as Pending, Accepted, or Rejected. The status helps track the progress and response to the invitation.

    *)
  7. invitationDate : DateTime.t option;
    (*

    Indicates the date when the Engagement Invitation was sent to the partner. This provides context for when the opportunity was shared and helps in tracking the timeline for engagement.

    *)
  8. expirationDate : DateTime.t option;
    (*

    Indicates the date and time when the Engagement Invitation will expire. After this date, the invitation can no longer be accepted, and the opportunity will be unavailable to the partner.

    *)
  9. senderAwsAccountId : AwsAccount.t option;
    (*

    Specifies the AWS account ID of the sender who initiated the Engagement Invitation. This allows the partner to identify the AWS entity or representative responsible for sharing the opportunity.

    *)
  10. senderCompanyName : EngagementInvitationSummarySenderCompanyNameString.t option;
    (*

    Indicates the name of the company or AWS division that sent the Engagement Invitation. This information is useful for partners to know which part of AWS is requesting engagement.

    *)
  11. receiver : Receiver.t option;
    (*

    Specifies the partner company or individual that received the Engagement Invitation. This field is important for tracking who the invitation was sent to within the partner organization.

    *)
  12. catalog : CatalogIdentifier.t option;
    (*

    Specifies the catalog in which the Engagement Invitation resides. This can be either the AWS or Sandbox catalog, indicating whether the opportunity is live or being tested.

    *)
  13. participantType : ParticipantType.t option;
    (*

    Identifies the role of the caller in the engagement invitation.

    *)
}
Sourceval make : ?arn:??? -> ?payloadType:??? -> ?id:??? -> ?engagementId:??? -> ?engagementTitle:??? -> ?status:??? -> ?invitationDate:??? -> ?expirationDate:??? -> ?senderAwsAccountId:??? -> ?senderCompanyName:??? -> ?receiver:??? -> ?catalog:??? -> ?participantType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `String of Alias.t ]) list ]) list | `Timestamp of DateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t