interface StateProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnInstance.StateProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnInstance_StateProperty |
![]() | software.amazon.awscdk.services.ec2.CfnInstance.StateProperty |
![]() | aws_cdk.aws_ec2.CfnInstance.StateProperty |
![]() | aws-cdk-lib » aws_ec2 » CfnInstance » StateProperty |
Describes the current state of an instance.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-state.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const stateProperty: ec2.CfnInstance.StateProperty = {
code: 'code',
name: 'name',
};
Properties
Name | Type | Description |
---|---|---|
code? | string | The state of the instance as a 16-bit unsigned integer. |
name? | string | The current state of the instance. |
code?
Type:
string
(optional)
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?
Type:
string
(optional)
The current state of the instance.