pub struct AwsEc2InstanceDetails {
pub iam_instance_profile_arn: Option<String>,
pub image_id: Option<String>,
pub ip_v4_addresses: Option<Vec<String>>,
pub ip_v6_addresses: Option<Vec<String>>,
pub key_name: Option<String>,
pub launched_at: Option<String>,
pub subnet_id: Option<String>,
pub type_: Option<String>,
pub vpc_id: Option<String>,
}Expand description
The details of an Amazon EC2 instance.
Fields§
§iam_instance_profile_arn: Option<String>The IAM profile ARN of the instance.
image_id: Option<String>The Amazon Machine Image (AMI) ID of the instance.
ip_v4_addresses: Option<Vec<String>>The IPv4 addresses associated with the instance.
ip_v6_addresses: Option<Vec<String>>The IPv6 addresses associated with the instance.
key_name: Option<String>The key name associated with the instance.
launched_at: Option<String>The date/time the instance was launched.
subnet_id: Option<String>The identifier of the subnet that the instance was launched in.
type_: Option<String>The instance type of the instance.
vpc_id: Option<String>The identifier of the VPC that the instance was launched in.
Trait Implementations§
Source§impl Clone for AwsEc2InstanceDetails
impl Clone for AwsEc2InstanceDetails
Source§fn clone(&self) -> AwsEc2InstanceDetails
fn clone(&self) -> AwsEc2InstanceDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsEc2InstanceDetails
impl Debug for AwsEc2InstanceDetails
Source§impl Default for AwsEc2InstanceDetails
impl Default for AwsEc2InstanceDetails
Source§fn default() -> AwsEc2InstanceDetails
fn default() -> AwsEc2InstanceDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsEc2InstanceDetails
impl<'de> Deserialize<'de> for AwsEc2InstanceDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsEc2InstanceDetails
impl PartialEq for AwsEc2InstanceDetails
Source§impl Serialize for AwsEc2InstanceDetails
impl Serialize for AwsEc2InstanceDetails
impl StructuralPartialEq for AwsEc2InstanceDetails
Auto Trait Implementations§
impl Freeze for AwsEc2InstanceDetails
impl RefUnwindSafe for AwsEc2InstanceDetails
impl Send for AwsEc2InstanceDetails
impl Sync for AwsEc2InstanceDetails
impl Unpin for AwsEc2InstanceDetails
impl UnwindSafe for AwsEc2InstanceDetails
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