Module Values.AutoBranchCreationConfigSource

Describes the automated branch creation configuration.

Sourcetype nonrec t = {
  1. stage : Stage.t option;
    (*

    Describes the current stage for the autocreated branch.

    *)
  2. framework : Framework.t option;
    (*

    The framework for the autocreated branch.

    *)
  3. enableAutoBuild : EnableAutoBuild.t option;
    (*

    Enables auto building for the autocreated branch.

    *)
  4. environmentVariables : EnvironmentVariables.t option;
    (*

    The environment variables for the autocreated branch.

    *)
  5. basicAuthCredentials : BasicAuthCredentials.t option;
    (*

    The basic authorization credentials for the autocreated branch. You must base64-encode the authorization credentials and provide them in the format user:password.

    *)
  6. enableBasicAuth : EnableBasicAuth.t option;
    (*

    Enables basic authorization for the autocreated branch.

    *)
  7. enablePerformanceMode : EnablePerformanceMode.t option;
    (*

    Enables performance mode for the branch. Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

    *)
  8. buildSpec : BuildSpec.t option;
    (*

    The build specification (build spec) for the autocreated branch.

    *)
  9. enablePullRequestPreview : EnablePullRequestPreview.t option;
    (*

    Enables pull request previews for the autocreated branch.

    *)
  10. pullRequestEnvironmentName : PullRequestEnvironmentName.t option;
    (*

    The Amplify environment name for the pull request.

    *)
}
Sourceval make : ?stage:??? -> ?framework:??? -> ?enableAutoBuild:??? -> ?environmentVariables:??? -> ?basicAuthCredentials:??? -> ?enableBasicAuth:??? -> ?enablePerformanceMode:??? -> ?buildSpec:??? -> ?enablePullRequestPreview:??? -> ?pullRequestEnvironmentName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of EnableAutoBuild.t | `Enum of string | `Map of ([> `String of EnvKey.t ] * [> `String of EnvValue.t ]) list | `String of Framework.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