Module Values.SyncConfigurationSource

Information, such as repository, branch, provider, and resource names for a specific sync configuration.

Sourcetype nonrec t = {
  1. branch : BranchName.t option;
    (*

    The branch associated with a specific sync configuration.

    *)
  2. configFile : DeploymentFilePath.t option;
    (*

    The file path to the configuration file associated with a specific sync configuration. The path should point to an actual file in the sync configurations linked repository.

    *)
  3. ownerId : OwnerId.t option;
    (*

    The owner ID for the repository associated with a specific sync configuration, such as the owner ID in GitHub.

    *)
  4. providerType : ProviderType.t option;
    (*

    The connection provider type associated with a specific sync configuration, such as GitHub.

    *)
  5. repositoryLinkId : RepositoryLinkId.t option;
    (*

    The ID of the repository link associated with a specific sync configuration.

    *)
  6. repositoryName : RepositoryName.t option;
    (*

    The name of the repository associated with a specific sync configuration.

    *)
  7. resourceName : ResourceName.t option;
    (*

    The name of the connection resource associated with a specific sync configuration.

    *)
  8. roleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role associated with a specific sync configuration.

    *)
  9. syncType : SyncConfigurationType.t option;
    (*

    The type of sync for a specific sync configuration.

    *)
  10. publishDeploymentStatus : PublishDeploymentStatus.t option;
    (*

    Whether to enable or disable publishing of deployment status to source providers.

    *)
  11. triggerResourceUpdateOn : TriggerResourceUpdateOn.t option;
    (*

    When to trigger Git sync to begin the stack update.

    *)
  12. pullRequestComment : PullRequestComment.t option;
    (*

    A toggle that specifies whether to enable or disable pull request comments for the sync configuration to be created.

    *)
}
Sourceval make : ?branch:??? -> ?configFile:??? -> ?ownerId:??? -> ?providerType:??? -> ?repositoryLinkId:??? -> ?repositoryName:??? -> ?resourceName:??? -> ?roleArn:??? -> ?syncType:??? -> ?publishDeploymentStatus:??? -> ?triggerResourceUpdateOn:??? -> ?pullRequestComment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BranchName.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