Class CfnDBInstance.AdditionalStorageVolumeProperty
Contains details about an additional storage volume for a DB instance.
Implements
Inherited Members
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.
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.
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
Remarks
The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
Iops
The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
public double? Iops { get; set; }
Property Value
Remarks
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
Remarks
StorageThroughput
The storage throughput value for the additional storage volume, in mebibytes per second (MiBps).
public double? StorageThroughput { get; set; }
Property Value
Remarks
This setting applies only to the General Purpose SSD (gp3) storage type.
StorageType
The storage type for the additional storage volume.
public string? StorageType { get; set; }
Property Value
Remarks
VolumeName
The name of the additional storage volume.
public string? VolumeName { get; set; }
Property Value
Remarks
Valid Values: RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4