Interface CfnLaunchProfile.VolumeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLaunchProfile.VolumeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnLaunchProfile
@Stability(Stable)
public static interface CfnLaunchProfile.VolumeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Custom volume configuration for the root volumes that are attached to streaming sessions.
This parameter is only allowed when sessionPersistenceMode is ACTIVATED .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.nimblestudio.*;
VolumeConfigurationProperty volumeConfigurationProperty = VolumeConfigurationProperty.builder()
.iops(123)
.size(123)
.throughput(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLaunchProfile.VolumeConfigurationPropertystatic final classAn implementation forCfnLaunchProfile.VolumeConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumbergetIops()The number of I/O operations per second for the root volume that is attached to streaming session.default NumbergetSize()The size of the root volume that is attached to the streaming session.default NumberThe throughput to provision for the root volume that is attached to the streaming session.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIops
The number of I/O operations per second for the root volume that is attached to streaming session.- See Also:
-
getSize
The size of the root volume that is attached to the streaming session.The root volume size is measured in GiBs.
- See Also:
-
getThroughput
The throughput to provision for the root volume that is attached to the streaming session.The throughput is measured in MiB/s.
- See Also:
-
builder
-