Struct aws_sdk_ec2::types::VCpuInfo
source · #[non_exhaustive]pub struct VCpuInfo { /* private fields */ }
Expand description
Describes the vCPU configurations for the instance type.
Implementations§
source§impl VCpuInfo
impl VCpuInfo
sourcepub fn default_v_cpus(&self) -> Option<i32>
pub fn default_v_cpus(&self) -> Option<i32>
The default number of vCPUs for the instance type.
sourcepub fn default_cores(&self) -> Option<i32>
pub fn default_cores(&self) -> Option<i32>
The default number of cores for the instance type.
sourcepub fn default_threads_per_core(&self) -> Option<i32>
pub fn default_threads_per_core(&self) -> Option<i32>
The default number of threads per core for the instance type.
sourcepub fn valid_cores(&self) -> Option<&[i32]>
pub fn valid_cores(&self) -> Option<&[i32]>
The valid number of cores that can be configured for the instance type.
sourcepub fn valid_threads_per_core(&self) -> Option<&[i32]>
pub fn valid_threads_per_core(&self) -> Option<&[i32]>
The valid number of threads per core that can be configured for the instance type.
Trait Implementations§
source§impl PartialEq<VCpuInfo> for VCpuInfo
impl PartialEq<VCpuInfo> for VCpuInfo
impl StructuralPartialEq for VCpuInfo
Auto Trait Implementations§
impl RefUnwindSafe for VCpuInfo
impl Send for VCpuInfo
impl Sync for VCpuInfo
impl Unpin for VCpuInfo
impl UnwindSafe for VCpuInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more