Module Values.RepositorySyncDefinitionSource

The definition for a repository with a sync configuration.

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

    The branch specified for a repository sync definition.

    *)
  2. directory : Directory.t option;
    (*

    The configuration file for a repository sync definition. This value comes from creating or updating the config-file field of a sync-configuration.

    *)
  3. parent : Parent.t option;
    (*

    The parent resource specified for a repository sync definition.

    *)
  4. target : Target.t option;
    (*

    The target resource specified for a repository sync definition. In some cases, such as CFN_STACK_SYNC, the parent and target resource are the same.

    *)
}
Sourceval make : ?branch:??? -> ?directory:??? -> ?parent:??? -> ?target:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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