Module Values.RejectConnectionInvitationResponseSource

Rejects a connection invitation from another partner, declining the partnership request.

Sourcetype nonrec t = {
  1. catalog : Catalog.t option;
    (*

    The catalog identifier where the connection invitation was rejected.

    *)
  2. id : ConnectionInvitationId.t option;
    (*

    The unique identifier of the rejected connection invitation.

    *)
  3. arn : ConnectionInvitationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the rejected connection invitation.

    *)
  4. connectionId : ConnectionId.t option;
    (*

    The identifier of the connection associated with the rejected invitation.

    *)
  5. connectionType : ConnectionType.t option;
    (*

    The type of connection that was being invited for.

    *)
  6. createdAt : DateTime.t option;
    (*

    The timestamp when the connection invitation was originally created.

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

    The timestamp when the connection invitation was last updated (rejected).

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

    The timestamp when the connection invitation would have expired.

    *)
  9. otherParticipantIdentifier : ParticipantIdentifier.t option;
    (*

    The identifier of the other participant who sent the invitation.

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

    The type of participant (inviter or invitee) in the connection invitation.

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

    The current status of the connection invitation (rejected).

    *)
  12. invitationMessage : RejectConnectionInvitationResponseInvitationMessageString.t option;
    (*

    The message that was included with the original connection invitation.

    *)
  13. inviterEmail : Email.t option;
    (*

    The email address of the person who sent the connection invitation.

    *)
  14. inviterName : SensitiveUnicodeString.t option;
    (*

    The name of the person who sent the connection invitation.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?catalog:??? -> ?id:??? -> ?arn:??? -> ?connectionId:??? -> ?connectionType:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?expiresAt:??? -> ?otherParticipantIdentifier:??? -> ?participantType:??? -> ?status:??? -> ?invitationMessage:??? -> ?inviterEmail:??? -> ?inviterName:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Catalog.t | `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