Class: Aws::RDS::Types::AdditionalStorageVolume
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::AdditionalStorageVolume
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allocated_storage ⇒ Integer
The amount of storage allocated for the additional storage volume, in gibibytes (GiB).
-
#iops ⇒ Integer
The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
-
#max_allocated_storage ⇒ Integer
The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.
-
#storage_throughput ⇒ Integer
The storage throughput value for the additional storage volume, in mebibytes per second (MiBps).
-
#storage_type ⇒ String
The storage type for the additional storage volume.
-
#volume_name ⇒ String
The name of the additional storage volume.
Instance Attribute Details
#allocated_storage ⇒ Integer
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).
315 316 317 318 319 320 321 322 323 324 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 315 class AdditionalStorageVolume < Struct.new( :volume_name, :allocated_storage, :iops, :max_allocated_storage, :storage_throughput, :storage_type) SENSITIVE = [] include Aws::Structure end |
#iops ⇒ Integer
The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
315 316 317 318 319 320 321 322 323 324 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 315 class AdditionalStorageVolume < Struct.new( :volume_name, :allocated_storage, :iops, :max_allocated_storage, :storage_throughput, :storage_type) SENSITIVE = [] include Aws::Structure end |
#max_allocated_storage ⇒ Integer
The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.
315 316 317 318 319 320 321 322 323 324 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 315 class AdditionalStorageVolume < Struct.new( :volume_name, :allocated_storage, :iops, :max_allocated_storage, :storage_throughput, :storage_type) SENSITIVE = [] include Aws::Structure end |
#storage_throughput ⇒ Integer
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.
315 316 317 318 319 320 321 322 323 324 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 315 class AdditionalStorageVolume < Struct.new( :volume_name, :allocated_storage, :iops, :max_allocated_storage, :storage_throughput, :storage_type) SENSITIVE = [] include Aws::Structure end |
#storage_type ⇒ String
The storage type for the additional storage volume.
Valid Values: GP3 | IO2
315 316 317 318 319 320 321 322 323 324 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 315 class AdditionalStorageVolume < Struct.new( :volume_name, :allocated_storage, :iops, :max_allocated_storage, :storage_throughput, :storage_type) SENSITIVE = [] include Aws::Structure end |
#volume_name ⇒ String
The name of the additional storage volume.
Valid Values: RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4
315 316 317 318 319 320 321 322 323 324 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 315 class AdditionalStorageVolume < Struct.new( :volume_name, :allocated_storage, :iops, :max_allocated_storage, :storage_throughput, :storage_type) SENSITIVE = [] include Aws::Structure end |