interface AdditionalStorageVolumeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnDBInstance.AdditionalStorageVolumeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBInstance_AdditionalStorageVolumeProperty |
Java | software.amazon.awscdk.services.rds.CfnDBInstance.AdditionalStorageVolumeProperty |
Python | aws_cdk.aws_rds.CfnDBInstance.AdditionalStorageVolumeProperty |
TypeScript | aws-cdk-lib » aws_rds » CfnDBInstance » AdditionalStorageVolumeProperty |
Contains details about an additional storage volume for a DB instance.
RDS support additional storage volumes for RDS for Oracle and RDS for SQL Server.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
const additionalStorageVolumeProperty: rds.CfnDBInstance.AdditionalStorageVolumeProperty = {
allocatedStorage: 'allocatedStorage',
iops: 123,
maxAllocatedStorage: 123,
storageThroughput: 123,
storageType: 'storageType',
volumeName: 'volumeName',
};
Properties
| Name | Type | Description |
|---|---|---|
| allocated | string | The amount of storage allocated for the additional storage volume, in gibibytes (GiB). |
| iops? | number | The number of I/O operations per second (IOPS) provisioned for the additional storage volume. |
| max | number | The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume. |
| storage | number | The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). |
| storage | string | The storage type for the additional storage volume. |
| volume | string | The name of the additional storage volume. |
allocatedStorage?
Type:
string
(optional)
The amount of storage allocated for the additional storage volume, in gibibytes (GiB).
The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
iops?
Type:
number
(optional)
The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
maxAllocatedStorage?
Type:
number
(optional)
The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.
storageThroughput?
Type:
number
(optional)
The storage throughput value for the additional storage volume, in mebibytes per second (MiBps).
This setting applies only to the General Purpose SSD (gp3) storage type.
storageType?
Type:
string
(optional)
The storage type for the additional storage volume.
Valid Values: GP3 | IO2
volumeName?
Type:
string
(optional)
The name of the additional storage volume.
Valid Values: RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4

.NET
Go
Java
Python
TypeScript