Module Values.CreateTicketV2RequestSource

Grants permission to create a ticket in the chosen ITSM based on finding information for the provided finding metadata UID.

Sourcetype nonrec t = {
  1. connectorId : NonEmptyString.t;
    (*

    The UUID of the connectorV2 to identify connectorV2 resource.

    *)
  2. findingMetadataUid : NonEmptyString.t;
    (*

    The the unique ID for the finding.

    *)
  3. clientToken : ClientToken.t option;
    (*

    The client idempotency token.

    *)
  4. mode : TicketCreationMode.t option;
    (*

    The mode for ticket creation. When set to DRYRUN, the ticket is created using a Security Hub owned template test finding to verify the integration is working correctly.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?mode:??? -> connectorId:NonEmptyString.t -> findingMetadataUid:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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