GradientEdge CDK Utils
    Preparing search index...

    Properties for creating an Azure NAT Gateway.

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

    Hierarchy

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

    Resource ID.

    idleTimeoutInMinutes?: Input<number | undefined>

    The idle timeout of the nat gateway.

    location?: Input<string | undefined>

    Resource location.

    natGatewayName?: Input<string | undefined>

    The name of the nat gateway.

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

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

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

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

    resourceGroupName: Input<string>

    The name of the resource group.

    sku?: Input<NatGatewaySkuArgs | undefined>

    The nat gateway SKU.

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

    Resource tags.

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

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