[][src]Struct rusoto_guardduty::InstanceDetails

pub struct InstanceDetails {
    pub availability_zone: Option<String>,
    pub iam_instance_profile: Option<IamInstanceProfile>,
    pub image_description: Option<String>,
    pub image_id: Option<String>,
    pub instance_id: Option<String>,
    pub instance_state: Option<String>,
    pub instance_type: Option<String>,
    pub launch_time: Option<String>,
    pub network_interfaces: Option<Vec<NetworkInterface>>,
    pub outpost_arn: Option<String>,
    pub platform: Option<String>,
    pub product_codes: Option<Vec<ProductCode>>,
    pub tags: Option<Vec<Tag>>,
}

Contains information about the details of an instance.

Fields

availability_zone: Option<String>

The Availability Zone of the EC2 instance.

iam_instance_profile: Option<IamInstanceProfile>

The profile information of the EC2 instance.

image_description: Option<String>

The image description of the EC2 instance.

image_id: Option<String>

The image ID of the EC2 instance.

instance_id: Option<String>

The ID of the EC2 instance.

instance_state: Option<String>

The state of the EC2 instance.

instance_type: Option<String>

The type of the EC2 instance.

launch_time: Option<String>

The launch time of the EC2 instance.

network_interfaces: Option<Vec<NetworkInterface>>

The elastic network interface information of the EC2 instance.

outpost_arn: Option<String>

The Amazon Resource Name (ARN) of the AWS Outpost. Only applicable to AWS Outposts instances.

platform: Option<String>

The platform of the EC2 instance.

product_codes: Option<Vec<ProductCode>>

The product code of the EC2 instance.

tags: Option<Vec<Tag>>

The tags of the EC2 instance.

Trait Implementations

impl Clone for InstanceDetails[src]

impl Debug for InstanceDetails[src]

impl Default for InstanceDetails[src]

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

impl PartialEq<InstanceDetails> for InstanceDetails[src]

impl StructuralPartialEq for InstanceDetails[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, 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.