Show / Hide Table of Contents

Interface CfnServerlessCache.ICacheUsageLimitsProperty

The usage limits for storage and ElastiCache Processing Units for the cache.

Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnServerlessCache.ICacheUsageLimitsProperty
Syntax (vb)
Public Interface CfnServerlessCache.ICacheUsageLimitsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-serverlesscache-cacheusagelimits.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ElastiCache;

             var cacheUsageLimitsProperty = new CacheUsageLimitsProperty {
                 DataStorage = new DataStorageProperty {
                     Unit = "unit",

                     // the properties below are optional
                     Maximum = 123,
                     Minimum = 123
                 },
                 EcpuPerSecond = new ECPUPerSecondProperty {
                     Maximum = 123,
                     Minimum = 123
                 }
             };

Synopsis

Properties

DataStorage

The maximum data storage limit in the cache, expressed in Gigabytes.

EcpuPerSecond

The number of ElastiCache Processing Units (ECPU) the cache can consume per second.

Properties

DataStorage

The maximum data storage limit in the cache, expressed in Gigabytes.

object? DataStorage { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-serverlesscache-cacheusagelimits.html#cfn-elasticache-serverlesscache-cacheusagelimits-datastorage

Type union: either IResolvable or CfnServerlessCache.IDataStorageProperty

EcpuPerSecond

The number of ElastiCache Processing Units (ECPU) the cache can consume per second.

object? EcpuPerSecond { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-serverlesscache-cacheusagelimits.html#cfn-elasticache-serverlesscache-cacheusagelimits-ecpupersecond

Type union: either IResolvable or CfnServerlessCache.IECPUPerSecondProperty

Back to top Generated by DocFX