GradientEdge CDK Utils
    Preparing search index...

    Interface RedisEnterpriseClusterProps

    Properties for creating an Azure Managed Redis (Enterprise) cluster

    interface RedisEnterpriseClusterProps {
        clusterName?: Input<string>;
        encryption?: Input<ClusterPropertiesEncryptionArgs>;
        highAvailability?: Input<string>;
        identity?: Input<ManagedServiceIdentityArgs>;
        location?: Input<string>;
        minimumTlsVersion?: Input<string>;
        publicNetworkAccess: Input<string>;
        resourceGroupName: Input<string>;
        sku: Input<SkuArgs>;
        tags?: Input<{ [key: string]: Input<string> }>;
        zones?: Input<Input<string>[]>;
    }

    Hierarchy

    • RedisEnterpriseArgs
      • RedisEnterpriseClusterProps
    Index
    clusterName?: Input<string>

    The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens

    encryption?: Input<ClusterPropertiesEncryptionArgs>

    Encryption-at-rest configuration for the cluster.

    highAvailability?: Input<string>

    Enabled by default. If highAvailability is disabled, the data set is not replicated. This affects the availability SLA, and increases the risk of data loss.

    identity?: Input<ManagedServiceIdentityArgs>

    The identity of the resource.

    location?: Input<string>

    The geo-location where the resource lives

    minimumTlsVersion?: Input<string>

    The minimum TLS version for the cluster to support, e.g. '1.2'. Newer versions can be added in the future. Note that TLS 1.0 and TLS 1.1 are now completely obsolete -- you cannot use them. They are mentioned only for the sake of consistency with old API versions.

    publicNetworkAccess: Input<string>

    Whether or not public network traffic can access the Redis cluster. Only 'Enabled' or 'Disabled' can be set. null is returned only for clusters created using an old API version which do not have this property and cannot be set.

    resourceGroupName: Input<string>

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

    sku: Input<SkuArgs>

    The SKU to create, which affects price, performance, and features.

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

    Resource tags.

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

    The Availability Zones where this cluster will be deployed.