Module Values.CreateConnectionRequestSource

Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.

Sourcetype nonrec t = {
  1. connectionName : ConnectionName.t;
    (*

    A name for the new connection. It must be unique across all App Runner connections for the Amazon Web Services account in the Amazon Web Services Region.

    *)
  2. providerType : ProviderType.t;
    (*

    The source repository provider.

    *)
  3. tags : TagList.t option;
    (*

    A list of metadata items that you can associate with your connection resource. A tag is a key-value pair.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> connectionName:ConnectionName.t -> providerType:ProviderType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ConnectionName.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