Struct aws_sdk_ssm::types::ComplianceExecutionSummary
source · #[non_exhaustive]pub struct ComplianceExecutionSummary {
pub execution_time: Option<DateTime>,
pub execution_id: Option<String>,
pub execution_type: Option<String>,
}
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'.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution_time: 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'.
execution_id: Option<String>
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.
execution_type: Option<String>
The type of execution. For example, Command
is a valid execution type.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ComplianceExecutionSummary
impl Debug for ComplianceExecutionSummary
source§impl PartialEq for ComplianceExecutionSummary
impl PartialEq for ComplianceExecutionSummary
source§fn eq(&self, other: &ComplianceExecutionSummary) -> bool
fn eq(&self, other: &ComplianceExecutionSummary) -> bool
self
and other
values to be equal, and is used
by ==
.