Struct aws_sdk_ec2::model::HostProperties [−][src]
#[non_exhaustive]pub struct HostProperties {
pub cores: Option<i32>,
pub instance_type: Option<String>,
pub instance_family: Option<String>,
pub sockets: Option<i32>,
pub total_v_cpus: Option<i32>,
}
Expand description
Describes the properties of a Dedicated Host.
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.cores: Option<i32>
The number of cores on the Dedicated Host.
instance_type: Option<String>
The instance type supported by the Dedicated Host. For example, m5.large
.
If the host supports multiple instance types, no instanceType
is returned.
instance_family: Option<String>
The instance family supported by the Dedicated Host. For example, m5
.
sockets: Option<i32>
The number of sockets on the Dedicated Host.
total_v_cpus: Option<i32>
The total number of vCPUs on the Dedicated Host.
Implementations
The instance type supported by the Dedicated Host. For example, m5.large
.
If the host supports multiple instance types, no instanceType
is returned.
The instance family supported by the Dedicated Host. For example, m5
.
The total number of vCPUs on the Dedicated Host.
Creates a new builder-style object to manufacture HostProperties
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for HostProperties
impl Send for HostProperties
impl Sync for HostProperties
impl Unpin for HostProperties
impl UnwindSafe for HostProperties
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