Module Values.ScopeConfigurationSource

Contains configuration information about the scope for a webhook.

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

    The name of either the group, enterprise, or organization that will send webhook events to CodeBuild, depending on the type of webhook.

    *)
  2. domain : String_.t option;
    (*

    The domain of the GitHub Enterprise organization or the GitLab Self Managed group. Note that this parameter is only required if your project's source type is GITHUB_ENTERPRISE or GITLAB_SELF_MANAGED.

    *)
  3. scope : WebhookScopeType.t;
    (*

    The type of scope for a GitHub or GitLab webhook. The scope default is GITHUB_ORGANIZATION.

    *)
}
Sourceval context_ : string
Sourceval make : ?domain:??? -> name:String_.t -> scope:WebhookScopeType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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