Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PrivateLinkConfig

import type { PrivateLinkConfig } from "https://aws-api.deno.dev/v0.3/services/datasync.ts?docs=full";

The VPC endpoint, subnet, and security group that an agent uses to access IP addresses in a VPC (Virtual Private Cloud).

interface PrivateLinkConfig {
PrivateLinkEndpoint?: string | null;
SecurityGroupArns?: string[] | null;
SubnetArns?: string[] | null;
VpcEndpointId?: string | null;
}

§Properties

§
PrivateLinkEndpoint?: string | null
[src]

The private endpoint that is configured for an agent that has access to IP addresses in a PrivateLink. An agent that is configured with this endpoint will not be accessible over the public internet.

§
SecurityGroupArns?: string[] | null
[src]

The Amazon Resource Names (ARNs) of the security groups that are configured for the EC2 resource that hosts an agent activated in a VPC or an agent that has access to a VPC endpoint.

§
SubnetArns?: string[] | null
[src]

The Amazon Resource Names (ARNs) of the subnets that are configured for an agent activated in a VPC or an agent that has access to a VPC endpoint.

§
VpcEndpointId?: string | null
[src]

The ID of the VPC endpoint that is configured for an agent. An agent that is configured with a VPC endpoint will not be accessible over the public internet.