Class: Aws::CodeCatalyst::Types::PersistentStorage
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::PersistentStorage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecatalyst/types.rb
Overview
Information about the persistent storage for a Dev Environment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size_in_gi_b ⇒ Integer
The size of the persistent storage in gigabytes (specifically GiB).
Instance Attribute Details
#size_in_gi_b ⇒ Integer
The size of the persistent storage in gigabytes (specifically GiB).
<note markdown=“1”> Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
</note>
2210 2211 2212 2213 2214 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 2210 class PersistentStorage < Struct.new( :size_in_gi_b) SENSITIVE = [] include Aws::Structure end |