pub struct StartAuditMitigationActionsTask { /* private fields */ }
Expand description
Fluent builder constructing a request to StartAuditMitigationActionsTask
.
Starts a task that applies a set of mitigation actions to the specified target.
Requires permission to access the StartAuditMitigationActionsTask action.
Implementations§
source§impl StartAuditMitigationActionsTask
impl StartAuditMitigationActionsTask
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartAuditMitigationActionsTask, AwsResponseRetryClassifier>, SdkError<StartAuditMitigationActionsTaskError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartAuditMitigationActionsTask, AwsResponseRetryClassifier>, SdkError<StartAuditMitigationActionsTaskError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<StartAuditMitigationActionsTaskOutput, SdkError<StartAuditMitigationActionsTaskError>>
pub async fn send(
self
) -> Result<StartAuditMitigationActionsTaskOutput, SdkError<StartAuditMitigationActionsTaskError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn task_id(self, input: impl Into<String>) -> Self
pub fn task_id(self, input: impl Into<String>) -> Self
A unique identifier for the task. You can use this identifier to check the status of the task or to cancel it.
sourcepub fn set_task_id(self, input: Option<String>) -> Self
pub fn set_task_id(self, input: Option<String>) -> Self
A unique identifier for the task. You can use this identifier to check the status of the task or to cancel it.
sourcepub fn target(self, input: AuditMitigationActionsTaskTarget) -> Self
pub fn target(self, input: AuditMitigationActionsTaskTarget) -> Self
Specifies the audit findings to which the mitigation actions are applied. You can apply them to a type of audit check, to all findings from an audit, or to a specific set of findings.
sourcepub fn set_target(self, input: Option<AuditMitigationActionsTaskTarget>) -> Self
pub fn set_target(self, input: Option<AuditMitigationActionsTaskTarget>) -> Self
Specifies the audit findings to which the mitigation actions are applied. You can apply them to a type of audit check, to all findings from an audit, or to a specific set of findings.
sourcepub fn audit_check_to_actions_mapping(
self,
k: impl Into<String>,
v: Vec<String>
) -> Self
pub fn audit_check_to_actions_mapping(
self,
k: impl Into<String>,
v: Vec<String>
) -> Self
Adds a key-value pair to auditCheckToActionsMapping
.
To override the contents of this collection use set_audit_check_to_actions_mapping
.
For an audit check, specifies which mitigation actions to apply. Those actions must be defined in your Amazon Web Services accounts.
sourcepub fn set_audit_check_to_actions_mapping(
self,
input: Option<HashMap<String, Vec<String>>>
) -> Self
pub fn set_audit_check_to_actions_mapping(
self,
input: Option<HashMap<String, Vec<String>>>
) -> Self
For an audit check, specifies which mitigation actions to apply. Those actions must be defined in your Amazon Web Services accounts.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
Each audit mitigation task must have a unique client request token. If you try to start a new task with the same token as a task that already exists, an exception occurs. If you omit this value, a unique client request token is generated automatically.
Trait Implementations§
source§impl Clone for StartAuditMitigationActionsTask
impl Clone for StartAuditMitigationActionsTask
source§fn clone(&self) -> StartAuditMitigationActionsTask
fn clone(&self) -> StartAuditMitigationActionsTask
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more