Module Values.CreateConnectionInputSource

Creates a connection that can then be given to other Amazon Web Services services like CodePipeline so that it can access third-party code repositories. The connection is in pending status until the third-party connection handshake is completed from the console.

Sourcetype nonrec t = {
  1. providerType : ProviderType.t option;
    (*

    The name of the external provider where your third-party code repository is configured.

    *)
  2. connectionName : ConnectionName.t;
    (*

    The name of the connection to be created.

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

    The key-value pair to use when tagging the resource.

    *)
  4. hostArn : HostArn.t option;
    (*

    The Amazon Resource Name (ARN) of the host associated with the connection to be created.

    *)
}
Sourceval context_ : string
Sourceval make : ?providerType:??? -> ?tags:??? -> ?hostArn:??? -> connectionName:ConnectionName.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