Module Values.CreatePrivateGraphEndpointInputSource

Create a private graph endpoint to allow private access to the graph from within a VPC. You can attach security groups to the private graph endpoint. VPC endpoint charges apply.

Sourcetype nonrec t = {
  1. graphIdentifier : GraphIdentifier.t;
    (*

    The unique identifier of the Neptune Analytics graph.

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

    The VPC in which the private graph endpoint needs to be created.

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

    Subnets in which private graph endpoint ENIs are created.

    *)
  4. vpcSecurityGroupIds : SecurityGroupIds.t option;
    (*

    Security groups to be attached to the private graph endpoint.

    *)
}
Sourceval context_ : string
Sourceval make : ?vpcId:??? -> ?subnetIds:??? -> ?vpcSecurityGroupIds:??? -> graphIdentifier:GraphIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.t ] list | `String of GraphIdentifier.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