Show / Hide Table of Contents

Class CfnServerlessCache.CacheUsageLimitsProperty

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

Inheritance
object
CfnServerlessCache.CacheUsageLimitsProperty
Implements
CfnServerlessCache.ICacheUsageLimitsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServerlessCache.CacheUsageLimitsProperty : CfnServerlessCache.ICacheUsageLimitsProperty
Syntax (vb)
Public Class CfnServerlessCache.CacheUsageLimitsProperty Implements 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

Constructors

CacheUsageLimitsProperty()

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

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.

Constructors

CacheUsageLimitsProperty()

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

public CacheUsageLimitsProperty()
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
                 }
             };

Properties

DataStorage

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

public object? DataStorage { get; set; }
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.

public object? EcpuPerSecond { get; set; }
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

Implements

CfnServerlessCache.ICacheUsageLimitsProperty
Back to top Generated by DocFX