[][src]Struct rusoto_ssm::InstanceInformation

pub struct InstanceInformation {
    pub activation_id: Option<String>,
    pub agent_version: Option<String>,
    pub association_overview: Option<InstanceAggregatedAssociationOverview>,
    pub association_status: Option<String>,
    pub computer_name: Option<String>,
    pub ip_address: Option<String>,
    pub iam_role: Option<String>,
    pub instance_id: Option<String>,
    pub is_latest_version: Option<bool>,
    pub last_association_execution_date: Option<f64>,
    pub last_ping_date_time: Option<f64>,
    pub last_successful_association_execution_date: Option<f64>,
    pub name: Option<String>,
    pub ping_status: Option<String>,
    pub platform_name: Option<String>,
    pub platform_type: Option<String>,
    pub platform_version: Option<String>,
    pub registration_date: Option<f64>,
    pub resource_type: Option<String>,
}

Describes a filter for a specific list of instances.

Fields

activation_id: Option<String>

The activation ID created by Systems Manager when the server or VM was registered.

agent_version: Option<String>

The version of SSM Agent running on your Linux instance.

association_overview: Option<InstanceAggregatedAssociationOverview>

Information about the association.

association_status: Option<String>

The status of the association.

computer_name: Option<String>

The fully qualified host name of the managed instance.

ip_address: Option<String>

The IP address of the managed instance.

iam_role: Option<String>

The Amazon Identity and Access Management (IAM) role assigned to the on-premises Systems Manager managed instances. This call does not return the IAM role for EC2 instances.

instance_id: Option<String>

The instance ID.

is_latest_version: Option<bool>

Indicates whether the latest version of SSM Agent is running on your Linux Managed Instance. This field does not indicate whether or not the latest version is installed on Windows managed instances, because some older versions of Windows Server use the EC2Config service to process SSM requests.

last_association_execution_date: Option<f64>

The date the association was last run.

last_ping_date_time: Option<f64>

The date and time when agent last pinged Systems Manager service.

last_successful_association_execution_date: Option<f64>

The last date the association was successfully run.

name: Option<String>

The name of the managed instance.

ping_status: Option<String>

Connection status of SSM Agent.

platform_name: Option<String>

The name of the operating system platform running on your instance.

platform_type: Option<String>

The operating system platform type.

platform_version: Option<String>

The version of the OS platform running on your instance.

registration_date: Option<f64>

The date the server or VM was registered with AWS as a managed instance.

resource_type: Option<String>

The type of instance. Instances are either EC2 instances or managed instances.

Trait Implementations

impl Clone for InstanceInformation[src]

impl Debug for InstanceInformation[src]

impl Default for InstanceInformation[src]

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

impl PartialEq<InstanceInformation> for InstanceInformation[src]

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