Show / Hide Table of Contents

Interface CfnServerlessCache.IDataStorageProperty

The data storage limit.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-serverlesscache-datastorage.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 dataStorageProperty = new DataStorageProperty {
                 Unit = "unit",

                 // the properties below are optional
                 Maximum = 123,
                 Minimum = 123
             };

Synopsis

Properties

Maximum

The upper limit for data storage the cache is set to use.

Minimum

The lower limit for data storage the cache is set to use.

Unit

The unit that the storage is measured in, in GB.

Properties

Maximum

The upper limit for data storage the cache is set to use.

double? Maximum { get; }
Property Value

double?

Remarks

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

Minimum

The lower limit for data storage the cache is set to use.

double? Minimum { get; }
Property Value

double?

Remarks

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

Unit

The unit that the storage is measured in, in GB.

string Unit { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX