Interface InternalAccess

For when you want to restrict your application's access to services running inside your VPC.

Note that if your account uses Direct Connect or VPC Peering, then incoming traffic from these sources can also be allowed.

Example usage:

{
scope: AccessScope.INTERNAL,
cidrRanges: [Peer.ipv4("10.0.0.0/8")]
}
interface InternalAccess {
    cidrRanges: IPeer[];
    scope: INTERNAL;
}

Hierarchy (view full)

Properties

Properties

cidrRanges: IPeer[]
scope: INTERNAL

Generated using TypeDoc