Module Values.RepositoryMetadataSource

Information about a repository.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The ID of the Amazon Web Services account associated with the repository.

    *)
  2. repositoryId : RepositoryId.t option;
    (*

    The ID of the repository.

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

    The repository's name.

    *)
  4. repositoryDescription : RepositoryDescription.t option;
    (*

    A comment or description about the repository.

    *)
  5. defaultBranch : BranchName.t option;
    (*

    The repository's default branch name.

    *)
  6. lastModifiedDate : LastModifiedDate.t option;
    (*

    The date and time the repository was last modified, in timestamp format.

    *)
  7. creationDate : CreationDate.t option;
    (*

    The date and time the repository was created, in timestamp format.

    *)
  8. cloneUrlHttp : CloneUrlHttp.t option;
    (*

    The URL to use for cloning the repository over HTTPS.

    *)
  9. cloneUrlSsh : CloneUrlSsh.t option;
    (*

    The URL to use for cloning the repository over SSH.

    *)
  10. arn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the repository.

    *)
  11. kmsKeyId : KmsKeyId.t option;
    (*

    The ID of the Key Management Service encryption key used to encrypt and decrypt the repository.

    *)
}
Sourceval make : ?accountId:??? -> ?repositoryId:??? -> ?repositoryName:??? -> ?repositoryDescription:??? -> ?defaultBranch:??? -> ?lastModifiedDate:??? -> ?creationDate:??? -> ?cloneUrlHttp:??? -> ?cloneUrlSsh:??? -> ?arn:??? -> ?kmsKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.t | `Timestamp of LastModifiedDate.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