Module Values.DefinitionRepositoryDetailsSource

Contains detailed information about the source code repository that hosts the workflow definition files.

Sourcetype nonrec t = {
  1. connectionArn : ConnectionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the connection to the source code repository.

    *)
  2. fullRepositoryId : FullRepositoryId.t option;
    (*

    The full repository identifier, including the repository owner and name. For example, 'repository-owner/repository-name'.

    *)
  3. sourceReference : SourceReference.t option;
    (*

    The source reference for the repository, such as a branch name, tag, or commit ID.

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

    The provider type of the source code repository, such as Bitbucket, GitHub, GitHubEnterpriseServer, GitLab, and GitLabSelfManaged.

    *)
  5. providerEndpoint : String_.t option;
    (*

    The endpoint URL of the source code repository provider.

    *)
}
Sourceval make : ?connectionArn:??? -> ?fullRepositoryId:??? -> ?sourceReference:??? -> ?providerType:??? -> ?providerEndpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConnectionArn.t | `Structure of (string * [> `Enum of string | `String of SourceReferenceValue.t ]) list ]) 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