Struct aws_sdk_ec2::types::InstanceState
source · #[non_exhaustive]pub struct InstanceState {
pub code: Option<i32>,
pub name: Option<InstanceStateName>,
}
Expand description
Describes the current state of an instance.
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.code: Option<i32>
The state of the instance as a 16-bit unsigned integer.
The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and 65,535. These numerical values are used for internal purposes and should be ignored.
The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255.
The valid values for instance-state-code will all be in the range of the low byte and they are:
-
0
:pending
-
16
:running
-
32
:shutting-down
-
48
:terminated
-
64
:stopping
-
80
:stopped
You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal.
name: Option<InstanceStateName>
The current state of the instance.
Implementations§
source§impl InstanceState
impl InstanceState
sourcepub fn code(&self) -> Option<i32>
pub fn code(&self) -> Option<i32>
The state of the instance as a 16-bit unsigned integer.
The high byte is all of the bits between 2^8 and (2^16)-1, which equals decimal values between 256 and 65,535. These numerical values are used for internal purposes and should be ignored.
The low byte is all of the bits between 2^0 and (2^8)-1, which equals decimal values between 0 and 255.
The valid values for instance-state-code will all be in the range of the low byte and they are:
-
0
:pending
-
16
:running
-
32
:shutting-down
-
48
:terminated
-
64
:stopping
-
80
:stopped
You can ignore the high byte value by zeroing out all of the bits above 2^8 or 256 in decimal.
sourcepub fn name(&self) -> Option<&InstanceStateName>
pub fn name(&self) -> Option<&InstanceStateName>
The current state of the instance.
source§impl InstanceState
impl InstanceState
sourcepub fn builder() -> InstanceStateBuilder
pub fn builder() -> InstanceStateBuilder
Creates a new builder-style object to manufacture InstanceState
.
Trait Implementations§
source§impl Clone for InstanceState
impl Clone for InstanceState
source§fn clone(&self) -> InstanceState
fn clone(&self) -> InstanceState
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InstanceState
impl Debug for InstanceState
source§impl PartialEq<InstanceState> for InstanceState
impl PartialEq<InstanceState> for InstanceState
source§fn eq(&self, other: &InstanceState) -> bool
fn eq(&self, other: &InstanceState) -> bool
self
and other
values to be equal, and is used
by ==
.