Struct aws_sdk_nimble::types::VolumeConfiguration
source · #[non_exhaustive]pub struct VolumeConfiguration {
pub size: Option<i32>,
pub throughput: Option<i32>,
pub iops: Option<i32>,
}Expand description
Custom volume configuration for the root volumes that are attached to streaming sessions.
This parameter is only allowed when sessionPersistenceMode is ACTIVATED.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.size: Option<i32>The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs.
throughput: Option<i32>The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s.
iops: Option<i32>The number of I/O operations per second for the root volume that is attached to streaming session.
Implementations§
source§impl VolumeConfiguration
impl VolumeConfiguration
sourcepub fn size(&self) -> Option<i32>
pub fn size(&self) -> Option<i32>
The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs.
sourcepub fn throughput(&self) -> Option<i32>
pub fn throughput(&self) -> Option<i32>
The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s.
source§impl VolumeConfiguration
impl VolumeConfiguration
sourcepub fn builder() -> VolumeConfigurationBuilder
pub fn builder() -> VolumeConfigurationBuilder
Creates a new builder-style object to manufacture VolumeConfiguration.
Trait Implementations§
source§impl Clone for VolumeConfiguration
impl Clone for VolumeConfiguration
source§fn clone(&self) -> VolumeConfiguration
fn clone(&self) -> VolumeConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VolumeConfiguration
impl Debug for VolumeConfiguration
source§impl PartialEq<VolumeConfiguration> for VolumeConfiguration
impl PartialEq<VolumeConfiguration> for VolumeConfiguration
source§fn eq(&self, other: &VolumeConfiguration) -> bool
fn eq(&self, other: &VolumeConfiguration) -> bool
self and other values to be equal, and is used
by ==.