GradientEdge CDK Utils
    Preparing search index...

    Properties for creating an Azure NAT Gateway.

    interface NatGatewayProps {
        id?: Input<string>;
        idleTimeoutInMinutes?: Input<number>;
        location?: Input<string>;
        natGatewayName?: Input<string>;
        publicIpAddresses?: Input<Input<SubResourceArgs>[]>;
        publicIpPrefixes?: Input<Input<SubResourceArgs>[]>;
        resourceGroupName: Input<string>;
        sku?: Input<NatGatewaySkuArgs>;
        tags?: Input<{ [key: string]: Input<string> }>;
        zones?: Input<Input<string>[]>;
    }

    Hierarchy

    • NatGatewayArgs
      • NatGatewayProps
    Index
    id?: Input<string>

    Resource ID.

    idleTimeoutInMinutes?: Input<number>

    The idle timeout of the nat gateway.

    location?: Input<string>

    Resource location.

    natGatewayName?: Input<string>

    The name of the nat gateway.

    publicIpAddresses?: Input<Input<SubResourceArgs>[]>

    An array of public ip addresses associated with the nat gateway resource.

    publicIpPrefixes?: Input<Input<SubResourceArgs>[]>

    An array of public ip prefixes associated with the nat gateway resource.

    resourceGroupName: Input<string>

    The name of the resource group.

    sku?: Input<NatGatewaySkuArgs>

    The nat gateway SKU.

    tags?: Input<{ [key: string]: Input<string> }>

    Resource tags.

    zones?: Input<Input<string>[]>

    A list of availability zones denoting the zone in which Nat Gateway should be deployed.