Struct rusoto_ssm::InstanceInformation [] [src]

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

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

The version of the SSM Agent running on your Linux instance.

Information about the association.

The status of the association.

The fully qualified host name of the managed instance.

The IP address of the managed instance.

The Amazon Identity and Access Management (IAM) role assigned to EC2 instances or managed instances.

The instance ID.

Indicates whether latest version of the SSM Agent is running on your instance.

The date the association was last executed.

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

The last date the association was successfully run.

The name of the managed instance.

Connection status of the SSM Agent.

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

The operating system platform type.

The version of the OS platform running on your instance.

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

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

Trait Implementations

impl Default for InstanceInformation
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for InstanceInformation
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceInformation
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations