[−][src]Struct rusoto_ssm::ComplianceItem
Information about the compliance as defined by the resource type. For example, for a patch resource type, Items
includes information about the PatchSeverity, Classification, etc.
Fields
compliance_type: Option<String>
The compliance type. For example, Association (for a State Manager association), Patch, or Custom:string
are all valid compliance types.
details: Option<HashMap<String, String>>
A "Key": "Value" tag combination for the compliance item.
execution_summary: Option<ComplianceExecutionSummary>
A summary for the compliance item. The summary includes an execution ID, the execution type (for example, command), and the execution time.
id: Option<String>
An ID for the compliance item. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article; for example: KB4010320.
resource_id: Option<String>
An ID for the resource. For a managed instance, this is the instance ID.
resource_type: Option<String>
The type of resource. ManagedInstance
is currently the only supported resource type.
severity: Option<String>
The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.
status: Option<String>
The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.
title: Option<String>
A title for the compliance item. For example, if the compliance item is a Windows patch, the title could be the title of the KB article for the patch; for example: Security Update for Active Directory Federation Services.
Trait Implementations
impl PartialEq<ComplianceItem> for ComplianceItem
[src]
fn eq(&self, other: &ComplianceItem) -> bool
[src]
fn ne(&self, other: &ComplianceItem) -> bool
[src]
impl Default for ComplianceItem
[src]
fn default() -> ComplianceItem
[src]
impl Clone for ComplianceItem
[src]
fn clone(&self) -> ComplianceItem
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ComplianceItem
[src]
impl<'de> Deserialize<'de> for ComplianceItem
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ComplianceItem
impl Sync for ComplianceItem
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self