Show / Hide Table of Contents

Class CfnDBInstance.AdditionalStorageVolumeProperty

Contains details about an additional storage volume for a DB instance.

Inheritance
object
CfnDBInstance.AdditionalStorageVolumeProperty
Implements
CfnDBInstance.IAdditionalStorageVolumeProperty
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.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBInstance.AdditionalStorageVolumeProperty : CfnDBInstance.IAdditionalStorageVolumeProperty
Syntax (vb)
Public Class CfnDBInstance.AdditionalStorageVolumeProperty Implements CfnDBInstance.IAdditionalStorageVolumeProperty
Remarks

RDS support additional storage volumes for RDS for Oracle and RDS for SQL Server.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.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.RDS;

             var additionalStorageVolumeProperty = new AdditionalStorageVolumeProperty {
                 AllocatedStorage = "allocatedStorage",
                 Iops = 123,
                 MaxAllocatedStorage = 123,
                 StorageThroughput = 123,
                 StorageType = "storageType",
                 VolumeName = "volumeName"
             };

Synopsis

Constructors

AdditionalStorageVolumeProperty()

Contains details about an additional storage volume for a DB instance.

Properties

AllocatedStorage

The amount of storage allocated for the additional storage volume, in gibibytes (GiB).

Iops

The number of I/O operations per second (IOPS) provisioned for the additional storage volume.

MaxAllocatedStorage

The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.

StorageThroughput

The storage throughput value for the additional storage volume, in mebibytes per second (MiBps).

StorageType

The storage type for the additional storage volume.

VolumeName

The name of the additional storage volume.

Constructors

AdditionalStorageVolumeProperty()

Contains details about an additional storage volume for a DB instance.

public AdditionalStorageVolumeProperty()
Remarks

RDS support additional storage volumes for RDS for Oracle and RDS for SQL Server.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.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.RDS;

             var additionalStorageVolumeProperty = new AdditionalStorageVolumeProperty {
                 AllocatedStorage = "allocatedStorage",
                 Iops = 123,
                 MaxAllocatedStorage = 123,
                 StorageThroughput = 123,
                 StorageType = "storageType",
                 VolumeName = "volumeName"
             };

Properties

AllocatedStorage

The amount of storage allocated for the additional storage volume, in gibibytes (GiB).

public string? AllocatedStorage { get; set; }
Property Value

string

Remarks

The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-allocatedstorage

Iops

The number of I/O operations per second (IOPS) provisioned for the additional storage volume.

public double? Iops { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-iops

MaxAllocatedStorage

The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.

public double? MaxAllocatedStorage { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-maxallocatedstorage

StorageThroughput

The storage throughput value for the additional storage volume, in mebibytes per second (MiBps).

public double? StorageThroughput { get; set; }
Property Value

double?

Remarks

This setting applies only to the General Purpose SSD (gp3) storage type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-storagethroughput

StorageType

The storage type for the additional storage volume.

public string? StorageType { get; set; }
Property Value

string

Remarks

Valid Values: GP3 | IO2

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-storagetype

VolumeName

The name of the additional storage volume.

public string? VolumeName { get; set; }
Property Value

string

Remarks

Valid Values: RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-volumename

Implements

CfnDBInstance.IAdditionalStorageVolumeProperty
Back to top Generated by DocFX