/** * RedisCache composite — Azure Cache for Redis. * * Creates a Redis Cache with non-SSL port disabled and TLS 1.2. */ import { RedisCache as RedisCacheResource } from "../generated/index.js"; export interface RedisCacheProps { /** Redis cache name. */ name: string; /** Azure region (default: resource group location). */ location?: string; /** SKU name (default: "Standard"). */ sku?: string; /** SKU family (default: "C"). */ family?: string; /** SKU capacity (default: 1). */ capacity?: number; /** Resource tags. */ tags?: Record; /** Per-member defaults. */ defaults?: { redisCache?: Partial[0]>; }; } export interface RedisCacheResult { redisCache: InstanceType; } export declare const RedisCache: import("@intentius/chant").CompositeDefinition; }>; //# sourceMappingURL=redis-cache.d.ts.map