Module Values.PipelineEndpointSource

Represents a VPC endpoint for an OpenSearch Ingestion pipeline, enabling private connectivity between your VPC and the pipeline.

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

    The Amazon Resource Name (ARN) of the pipeline associated with this endpoint.

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

    The unique identifier for the pipeline endpoint.

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

    The current status of the pipeline endpoint.

    *)
  4. vpcId : String_.t option;
    (*

    The ID of the VPC where the pipeline endpoint is created.

    *)
  5. vpcOptions : PipelineEndpointVpcOptions.t option;
    (*

    Configuration options for the VPC endpoint, including subnet and security group settings.

    *)
  6. ingestEndpointUrl : String_.t option;
    (*

    The URL used to ingest data to the pipeline through the VPC endpoint.

    *)
}
Sourceval make : ?pipelineArn:??? -> ?endpointId:??? -> ?status:??? -> ?vpcId:??? -> ?vpcOptions:??? -> ?ingestEndpointUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PipelineArn.t | `Structure of (string * [> `List of [> `String of SubnetId.t ] list ]) list ]) 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