[][src]Struct rusoto_securityhub::AwsEc2InstanceDetails

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>,
}

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

impl Clone for AwsEc2InstanceDetails[src]

impl Debug for AwsEc2InstanceDetails[src]

impl Default for AwsEc2InstanceDetails[src]

impl<'de> Deserialize<'de> for AwsEc2InstanceDetails[src]

impl PartialEq<AwsEc2InstanceDetails> for AwsEc2InstanceDetails[src]

impl Serialize for AwsEc2InstanceDetails[src]

impl StructuralPartialEq for AwsEc2InstanceDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.