Module Values.ConnectionSource

A resource that is used to connect third-party source providers with services like CodePipeline. Note: A connection created through CloudFormation, the CLI, or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by updating the connection in the console.

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

    The name of the connection. Connection names must be unique in an Amazon Web Services account.

    *)
  2. connectionArn : ConnectionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between Amazon Web Services services. The ARN is never reused if the connection is deleted.

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

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

    *)
  4. ownerAccountId : AccountId.t option;
    (*

    The identifier of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.

    *)
  5. connectionStatus : ConnectionStatus.t option;
    (*

    The current status of the connection.

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

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

    *)
}
Sourceval make : ?connectionName:??? -> ?connectionArn:??? -> ?providerType:??? -> ?ownerAccountId:??? -> ?connectionStatus:??? -> ?hostArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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