Module Values.VpcEndpointDetailSource

Details about an OpenSearch Serverless-managed interface endpoint.

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

    The unique identifier of the endpoint.

    *)
  2. name : VpcEndpointName.t option;
    (*

    The name of the endpoint.

    *)
  3. vpcId : VpcId.t option;
    (*

    The ID of the VPC from which you access OpenSearch Serverless.

    *)
  4. subnetIds : SubnetIds.t option;
    (*

    The ID of the subnets from which you access OpenSearch Serverless.

    *)
  5. securityGroupIds : SecurityGroupIds.t option;
    (*

    The unique identifiers of the security groups that define the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

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

    The current status of the endpoint.

    *)
  7. createdDate : Long.t option;
    (*

    The date the endpoint was created.

    *)
  8. failureCode : String_.t option;
    (*

    A failure code associated with the request.

    *)
  9. failureMessage : String_.t option;
    (*

    A message associated with the failure code.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?vpcId:??? -> ?subnetIds:??? -> ?securityGroupIds:??? -> ?status:??? -> ?createdDate:??? -> ?failureCode:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SubnetId.t ] list | `Long of Long.t | `String of VpcEndpointId.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