Struct aws_sdk_ec2::model::VCpuInfo [−][src]
#[non_exhaustive]pub struct VCpuInfo {
pub default_v_cpus: Option<i32>,
pub default_cores: Option<i32>,
pub default_threads_per_core: Option<i32>,
pub valid_cores: Option<Vec<i32>>,
pub valid_threads_per_core: Option<Vec<i32>>,
}
Expand description
Describes the vCPU configurations for the instance type.
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.default_v_cpus: Option<i32>
The default number of vCPUs for the instance type.
default_cores: Option<i32>
The default number of cores for the instance type.
default_threads_per_core: Option<i32>
The default number of threads per core for the instance type.
valid_cores: Option<Vec<i32>>
The valid number of cores that can be configured for the instance type.
valid_threads_per_core: Option<Vec<i32>>
The valid number of threads per core that can be configured for the instance type.
Implementations
The default number of vCPUs for the instance type.
The default number of cores for the instance type.
The default number of threads per core for the instance type.
The valid number of cores that can be configured for the instance type.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for VCpuInfo
impl UnwindSafe for VCpuInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more