Struct rusoto_ssm::ComplianceExecutionSummary[][src]

pub struct ComplianceExecutionSummary {
    pub execution_id: Option<String>,
    pub execution_time: f64,
    pub execution_type: Option<String>,
}

A summary of the call execution that includes an execution ID, the type of execution (for example, Command), and the date/time of the execution using a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.

Fields

An ID created by the system when PutComplianceItems was called. For example, CommandID is a valid execution ID. You can use this ID in subsequent calls.

The time the execution ran as a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.

The type of execution. For example, Command is a valid execution type.

Trait Implementations

impl Default for ComplianceExecutionSummary
[src]

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

impl Debug for ComplianceExecutionSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for ComplianceExecutionSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ComplianceExecutionSummary
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations