[][src]Struct rusoto_ssm::PutComplianceItemsRequest

pub struct PutComplianceItemsRequest {
    pub compliance_type: String,
    pub execution_summary: ComplianceExecutionSummary,
    pub item_content_hash: Option<String>,
    pub items: Vec<ComplianceItemEntry>,
    pub resource_id: String,
    pub resource_type: String,
}

Fields

compliance_type: String

Specify the compliance type. For example, specify Association (for a State Manager association), Patch, or Custom:string.

execution_summary: ComplianceExecutionSummary

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'.

item_content_hash: Option<String>

MD5 or SHA-256 content hash. The content hash is used to determine if existing information should be overwritten or ignored. If the content hashes match, the request to put compliance information is ignored.

items: Vec<ComplianceItemEntry>

Information about the compliance as defined by the resource type. For example, for a patch compliance type, Items includes information about the PatchSeverity, Classification, etc.

resource_id: String

Specify an ID for this resource. For a managed instance, this is the instance ID.

resource_type: String

Specify the type of resource. ManagedInstance is currently the only supported resource type.

Trait Implementations

impl PartialEq<PutComplianceItemsRequest> for PutComplianceItemsRequest[src]

impl Default for PutComplianceItemsRequest[src]

impl Clone for PutComplianceItemsRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PutComplianceItemsRequest[src]

impl Serialize for PutComplianceItemsRequest[src]

Auto Trait Implementations

impl Send for PutComplianceItemsRequest

impl Sync for PutComplianceItemsRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self