[][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 platform: Option<String>,
    pub product_codes: Option<Vec<ProductCode>>,
    pub tags: Option<Vec<Tag>>,
}

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 network interface information of the EC2 instance.

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 PartialEq<InstanceDetails> for InstanceDetails[src]

impl Default for InstanceDetails[src]

impl Clone for InstanceDetails[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InstanceDetails[src]

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

Auto Trait Implementations

impl Send for InstanceDetails

impl Sync for InstanceDetails

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self