Module Values.PipelineEndpointConnectionSource

Represents a connection to a pipeline endpoint, containing details about the endpoint association.

Sourcetype nonrec t = {
  1. pipelineArn : PipelineArn.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline in the endpoint connection.

    *)
  2. endpointId : PipelineEndpointId.t option;
    (*

    The unique identifier of the endpoint in the connection.

    *)
  3. status : PipelineEndpointStatus.t option;
    (*

    The current status of the pipeline endpoint connection.

    *)
  4. vpcEndpointOwner : AwsAccountId.t option;
    (*

    The Amazon Web Services account ID that owns the VPC endpoint used in this connection.

    *)
}
Sourceval make : ?pipelineArn:??? -> ?endpointId:??? -> ?status:??? -> ?vpcEndpointOwner:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PipelineArn.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