Module Values.PrivateLinkConfigSource

Specifies how your DataSync agent connects to Amazon Web Services using a virtual private cloud (VPC) service endpoint. An agent that uses a VPC endpoint isn't accessible over the public internet.

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

    Specifies the ID of the VPC endpoint that your agent connects to.

    *)
  2. privateLinkEndpoint : Endpoint.t option;
    (*

    Specifies the VPC endpoint provided by Amazon Web Services PrivateLink that your agent connects to.

    *)
  3. subnetArns : PLSubnetArnList.t option;
    (*

    Specifies the ARN of the subnet where your VPC endpoint is located. You can only specify one ARN.

    *)
  4. securityGroupArns : PLSecurityGroupArnList.t option;
    (*

    Specifies the Amazon Resource Names (ARN) of the security group that provides DataSync access to your VPC endpoint. You can only specify one ARN.

    *)
}
Sourceval make : ?vpcEndpointId:??? -> ?privateLinkEndpoint:??? -> ?subnetArns:??? -> ?securityGroupArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Ec2SubnetArn.t ] list | `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