Module Values.VpcEndpointSource

The connection endpoint for connecting to an Amazon OpenSearch Service domain through a proxy.

Sourcetype nonrec t = {
  1. vpcEndpointId : VpcEndpointId.t option;
    (*

    The unique identifier of the endpoint.

    *)
  2. vpcEndpointOwner : AWSAccount.t option;
    (*

    The creator of the endpoint.

    *)
  3. domainArn : DomainArn.t option;
    (*

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

    *)
  4. vpcOptions : VPCDerivedInfo.t option;
    (*

    Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.

    *)
  5. status : VpcEndpointStatus.t option;
    (*

    The current status of the endpoint.

    *)
  6. endpoint : Endpoint.t option;
    (*

    The connection endpoint ID for connecting to the domain.

    *)
}
Sourceval make : ?vpcEndpointId:??? -> ?vpcEndpointOwner:??? -> ?domainArn:??? -> ?vpcOptions:??? -> ?status:??? -> ?endpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of VpcEndpointId.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of String_.t ]) 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