logo
pub struct RemediationConfiguration {
    pub arn: Option<String>,
    pub automatic: Option<bool>,
    pub config_rule_name: String,
    pub created_by_service: Option<String>,
    pub execution_controls: Option<ExecutionControls>,
    pub maximum_automatic_attempts: Option<i64>,
    pub parameters: Option<HashMap<String, RemediationParameterValue>>,
    pub resource_type: Option<String>,
    pub retry_attempt_seconds: Option<i64>,
    pub target_id: String,
    pub target_type: String,
    pub target_version: Option<String>,
}
Expand description

An object that represents the details about the remediation configuration that includes the remediation action, parameters, and data to execute the action.

Fields

arn: Option<String>

Amazon Resource Name (ARN) of remediation configuration.

automatic: Option<bool>

The remediation is triggered automatically.

config_rule_name: String

The name of the AWS Config rule.

created_by_service: Option<String>

Name of the service that owns the service linked rule, if applicable.

execution_controls: Option<ExecutionControls>

An ExecutionControls object.

maximum_automatic_attempts: Option<i64>

The maximum number of failed attempts for auto-remediation. If you do not select a number, the default is 5.

For example, if you specify MaximumAutomaticAttempts as 5 with RetryAttemptSeconds as 50 seconds, AWS Config will put a RemediationException on your behalf for the failing resource after the 5th failed attempt within 50 seconds.

parameters: Option<HashMap<String, RemediationParameterValue>>

An object of the RemediationParameterValue.

resource_type: Option<String>

The type of a resource.

retry_attempt_seconds: Option<i64>

Maximum time in seconds that AWS Config runs auto-remediation. If you do not select a number, the default is 60 seconds.

For example, if you specify RetryAttemptSeconds as 50 seconds and MaximumAutomaticAttempts as 5, AWS Config will run auto-remediations 5 times within 50 seconds before throwing an exception.

target_id: String

Target ID is the name of the public document.

target_type: String

The type of the target. Target executes remediation. For example, SSM document.

target_version: Option<String>

Version of the target. For example, version of the SSM document.

If you make backward incompatible changes to the SSM document, you must call PutRemediationConfiguration API again to ensure the remediations can run.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more