Module Values.RepositoryLinkInfoSource

Information about the repository link resource, such as the repository link ARN, the associated connection ARN, encryption key ARN, and owner ID.

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

    The Amazon Resource Name (ARN) of the connection associated with the repository link.

    *)
  2. encryptionKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.

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

    The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.

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

    The provider type for the connection, such as GitHub, associated with the repository link.

    *)
  5. repositoryLinkArn : RepositoryLinkArn.t option;
    (*

    The Amazon Resource Name (ARN) of the repository link.

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

    The ID of the repository link.

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

    The name of the repository associated with the repository link.

    *)
}
Sourceval make : ?connectionArn:??? -> ?encryptionKeyArn:??? -> ?ownerId:??? -> ?providerType:??? -> ?repositoryLinkArn:??? -> ?repositoryLinkId:??? -> ?repositoryName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConnectionArn.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