Module Values.WebhookSource

Describes a webhook that connects repository events to an Amplify app.

Sourcetype nonrec t = {
  1. webhookArn : WebhookArn.t option;
    (*

    The Amazon Resource Name (ARN) for the webhook.

    *)
  2. webhookId : WebhookId.t option;
    (*

    The ID of the webhook.

    *)
  3. webhookUrl : WebhookUrl.t option;
    (*

    The URL of the webhook.

    *)
  4. appId : AppId.t option;
    (*

    The unique ID of an Amplify app.

    *)
  5. branchName : BranchName.t option;
    (*

    The name for a branch that is part of an Amplify app.

    *)
  6. description : Description.t option;
    (*

    The description for a webhook.

    *)
  7. createTime : CreateTime.t option;
    (*

    A timestamp of when Amplify created the webhook in your Git repository.

    *)
  8. updateTime : UpdateTime.t option;
    (*

    A timestamp of when Amplify updated the webhook in your Git repository.

    *)
}
Sourceval make : ?webhookArn:??? -> ?webhookId:??? -> ?webhookUrl:??? -> ?appId:??? -> ?branchName:??? -> ?description:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of WebhookArn.t | `Timestamp of CreateTime.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