Interface DBStorageConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DBStorageConfiguration.Builder,DBStorageConfiguration>,SdkBuilder<DBStorageConfiguration.Builder,DBStorageConfiguration>,SdkPojo
- Enclosing class:
- DBStorageConfiguration
public static interface DBStorageConfiguration.Builder extends SdkPojo, CopyableBuilder<DBStorageConfiguration.Builder,DBStorageConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DBStorageConfiguration.BuilderallocatedStorage(Integer allocatedStorage)The size of the RDS storage in gigabytes (GB).DBStorageConfiguration.Builderiops(Integer iops)The provisioned IOPs of the RDS storage.DBStorageConfiguration.BuildermaxAllocatedStorage(Integer maxAllocatedStorage)The maximum limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the RDS instance.DBStorageConfiguration.BuilderstorageThroughput(Integer storageThroughput)The storage throughput of the RDS storage.DBStorageConfiguration.BuilderstorageType(String storageType)The type of RDS storage.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
storageType
DBStorageConfiguration.Builder storageType(String storageType)
The type of RDS storage.
- Parameters:
storageType- The type of RDS storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allocatedStorage
DBStorageConfiguration.Builder allocatedStorage(Integer allocatedStorage)
The size of the RDS storage in gigabytes (GB).
- Parameters:
allocatedStorage- The size of the RDS storage in gigabytes (GB).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iops
DBStorageConfiguration.Builder iops(Integer iops)
The provisioned IOPs of the RDS storage.
- Parameters:
iops- The provisioned IOPs of the RDS storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxAllocatedStorage
DBStorageConfiguration.Builder maxAllocatedStorage(Integer maxAllocatedStorage)
The maximum limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the RDS instance.
- Parameters:
maxAllocatedStorage- The maximum limit in gibibytes (GiB) to which Amazon RDS can automatically scale the storage of the RDS instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageThroughput
DBStorageConfiguration.Builder storageThroughput(Integer storageThroughput)
The storage throughput of the RDS storage.
- Parameters:
storageThroughput- The storage throughput of the RDS storage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-