[][src]Struct rusoto_config::SsmControls

pub struct SsmControls {
    pub concurrent_execution_rate_percentage: Option<i64>,
    pub error_percentage: Option<i64>,
}

AWS Systems Manager (SSM) specific remediation controls.

Fields

concurrent_execution_rate_percentage: Option<i64>

The maximum percentage of remediation actions allowed to run in parallel on the non-compliant resources for that specific rule. You can specify a percentage, such as 10%. The default value is 10.

error_percentage: Option<i64>

The percentage of errors that are allowed before SSM stops running automations on non-compliant resources for that specific rule. You can specify a percentage of errors, for example 10%. If you do not specifiy a percentage, the default is 50%. For example, if you set the ErrorPercentage to 40% for 10 non-compliant resources, then SSM stops running the automations when the fifth error is received.

Trait Implementations

impl Clone for SsmControls[src]

impl Default for SsmControls[src]

impl PartialEq<SsmControls> for SsmControls[src]

impl Debug for SsmControls[src]

impl StructuralPartialEq for SsmControls[src]

impl<'de> Deserialize<'de> for SsmControls[src]

impl Serialize for SsmControls[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self