Struct aws_sdk_ssm::types::ComplianceExecutionSummary
source · #[non_exhaustive]pub struct ComplianceExecutionSummary { /* private fields */ }Expand description
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'.
Implementations§
source§impl ComplianceExecutionSummary
impl ComplianceExecutionSummary
sourcepub fn execution_time(&self) -> Option<&DateTime>
pub fn execution_time(&self) -> Option<&DateTime>
The time the execution ran as a datetime object that is saved in the following format: yyyy-MM-dd'T'HH:mm:ss'Z'.
sourcepub fn execution_id(&self) -> Option<&str>
pub fn execution_id(&self) -> Option<&str>
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.
sourcepub fn execution_type(&self) -> Option<&str>
pub fn execution_type(&self) -> Option<&str>
The type of execution. For example, Command is a valid execution type.
source§impl ComplianceExecutionSummary
impl ComplianceExecutionSummary
sourcepub fn builder() -> ComplianceExecutionSummaryBuilder
pub fn builder() -> ComplianceExecutionSummaryBuilder
Creates a new builder-style object to manufacture ComplianceExecutionSummary.
Trait Implementations§
source§impl Clone for ComplianceExecutionSummary
impl Clone for ComplianceExecutionSummary
source§fn clone(&self) -> ComplianceExecutionSummary
fn clone(&self) -> ComplianceExecutionSummary
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ComplianceExecutionSummary
impl Debug for ComplianceExecutionSummary
source§impl PartialEq<ComplianceExecutionSummary> for ComplianceExecutionSummary
impl PartialEq<ComplianceExecutionSummary> for ComplianceExecutionSummary
source§fn eq(&self, other: &ComplianceExecutionSummary) -> bool
fn eq(&self, other: &ComplianceExecutionSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.