GradientEdge CDK Utils
    Preparing search index...
    interface RedisProps {
        disableAccessKeyAuthentication?: Input<boolean>;
        enableNonSslPort?: Input<boolean>;
        identity?: Input<ManagedServiceIdentityArgs>;
        location?: Input<string>;
        minimumTlsVersion?: Input<string>;
        name?: Input<string>;
        publicNetworkAccess?: Input<string>;
        redisConfiguration?: Input<RedisCommonPropertiesRedisConfigurationArgs>;
        redisVersion?: Input<string>;
        replicasPerMaster?: Input<number>;
        replicasPerPrimary?: Input<number>;
        resourceGroupName: Input<string>;
        shardCount?: Input<number>;
        sku: Input<SkuArgs>;
        staticIP?: Input<string>;
        subnetId?: Input<string>;
        tags?: Input<{ [key: string]: Input<string> }>;
        tenantSettings?: Input<{ [key: string]: Input<string> }>;
        updateChannel?: Input<string>;
        zonalAllocationPolicy?: Input<string>;
        zones?: Input<Input<string>[]>;
    }

    Hierarchy

    • RedisArgs
      • RedisProps
    Index

    Properties

    disableAccessKeyAuthentication?: Input<boolean>

    Authentication to Redis through access keys is disabled when set as true. Default value is false.

    enableNonSslPort?: Input<boolean>

    Specifies whether the non-ssl Redis server port (6379) is enabled.

    identity?: Input<ManagedServiceIdentityArgs>

    The identity of the resource.

    location?: Input<string>

    The geo-location where the resource lives

    minimumTlsVersion?: Input<string>

    Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')

    name?: Input<string>

    The name of the RedisResource

    publicNetworkAccess?: Input<string>

    Whether or not public endpoint access is allowed for this cache. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method.

    redisConfiguration?: Input<RedisCommonPropertiesRedisConfigurationArgs>

    All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta, maxmemory-policy,notify-keyspace-events, aof-backup-enabled, aof-storage-connection-string-0, aof-storage-connection-string-1 etc.

    redisVersion?: Input<string>

    Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.

    replicasPerMaster?: Input<number>

    The number of replicas to be created per primary.

    replicasPerPrimary?: Input<number>

    The number of replicas to be created per primary.

    resourceGroupName: Input<string>

    The name of the resource group. The name is case insensitive.

    shardCount?: Input<number>

    The number of shards to be created on a Premium Cluster Cache.

    sku: Input<SkuArgs>

    The SKU of the Redis cache to deploy.

    staticIP?: Input<string>

    Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.

    subnetId?: Input<string>

    The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1

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

    Resource tags.

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

    A dictionary of tenant settings

    updateChannel?: Input<string>

    Optional: Specifies the update channel for the monthly Redis updates your Redis Cache will receive. Caches using 'Preview' update channel get latest Redis updates at least 4 weeks ahead of 'Stable' channel caches. Default value is 'Stable'.

    zonalAllocationPolicy?: Input<string>

    Optional: Specifies how availability zones are allocated to the Redis cache. 'Automatic' enables zone redundancy and Azure will automatically select zones based on regional availability and capacity. 'UserDefined' will select availability zones passed in by you using the 'zones' parameter. 'NoZones' will produce a non-zonal cache. If 'zonalAllocationPolicy' is not passed, it will be set to 'UserDefined' when zones are passed in, otherwise, it will be set to 'Automatic' in regions where zones are supported and 'NoZones' in regions where zones are not supported.

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

    A list of availability zones denoting where the resource needs to come from.