Class: Aws::NimbleStudio::Types::VolumeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::NimbleStudio::Types::VolumeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-nimblestudio/types.rb
Overview
Custom volume configuration for the root volumes that are attached to streaming sessions.
This parameter is only allowed when ‘sessionPersistenceMode` is `ACTIVATED`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iops ⇒ Integer
The number of I/O operations per second for the root volume that is attached to streaming session.
-
#size ⇒ Integer
The size of the root volume that is attached to the streaming session.
-
#throughput ⇒ Integer
The throughput to provision for the root volume that is attached to the streaming session.
Instance Attribute Details
#iops ⇒ Integer
The number of I/O operations per second for the root volume that is attached to streaming session.
4032 4033 4034 4035 4036 4037 4038 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 4032 class VolumeConfiguration < Struct.new( :iops, :size, :throughput) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs.
4032 4033 4034 4035 4036 4037 4038 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 4032 class VolumeConfiguration < Struct.new( :iops, :size, :throughput) SENSITIVE = [] include Aws::Structure end |
#throughput ⇒ Integer
The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s.
4032 4033 4034 4035 4036 4037 4038 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 4032 class VolumeConfiguration < Struct.new( :iops, :size, :throughput) SENSITIVE = [] include Aws::Structure end |