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

PhysicalConnectionRequirements

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

Specifies the physical requirements for a connection.

interface PhysicalConnectionRequirements {
AvailabilityZone?: string | null;
SecurityGroupIdList?: string[] | null;
SubnetId?: string | null;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The connection's Availability Zone. This field is redundant because the specified subnet implies the Availability Zone to be used. Currently the field must be populated, but it will be deprecated in the future.

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

The security group ID list used by the connection.

§
SubnetId?: string | null
[src]

The subnet ID used by the connection.