GradientEdge CDK Utils
    Preparing search index...

    Properties for creating a Redis Enterprise database

    interface RedisDatabaseProps {
        accessKeysAuthentication?: Input<string>;
        clientProtocol?: Input<string>;
        clusteringPolicy?: Input<string>;
        clusterName: Input<string>;
        databaseName?: Input<string>;
        deferUpgrade?: Input<string>;
        evictionPolicy?: Input<string>;
        geoReplication?: Input<DatabasePropertiesGeoReplicationArgs>;
        modules?: Input<Input<ModuleArgs>[]>;
        persistence?: Input<PersistenceArgs>;
        port?: Input<number>;
        resourceGroupName: Input<string>;
    }

    Hierarchy

    • DatabaseArgs
      • RedisDatabaseProps
    Index

    Properties

    accessKeysAuthentication?: Input<string>

    This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.

    clientProtocol?: Input<string>

    Specifies whether redis clients can connect using TLS-encrypted or plaintext redis protocols. Default is TLS-encrypted.

    clusteringPolicy?: Input<string>

    Clustering policy - default is OSSCluster. This property can be updated only if the current value is NoCluster. If the value is OSSCluster or EnterpriseCluster, it cannot be updated without deleting the database.

    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

    databaseName?: Input<string>

    The name of the Redis Enterprise database.

    deferUpgrade?: Input<string>

    Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade

    evictionPolicy?: Input<string>

    Redis eviction policy - default is VolatileLRU

    geoReplication?: Input<DatabasePropertiesGeoReplicationArgs>

    Optional set of properties to configure geo replication for this database.

    modules?: Input<Input<ModuleArgs>[]>

    Optional set of redis modules to enable in this database - modules can only be added at creation time.

    persistence?: Input<PersistenceArgs>

    Persistence settings

    port?: Input<number>

    TCP port of the database endpoint. Specified at create time. Defaults to an available port.

    resourceGroupName: Input<string>

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