Struct aws_sdk_iot::operation::start_audit_mitigation_actions_task::builders::StartAuditMitigationActionsTaskFluentBuilder
source · pub struct StartAuditMitigationActionsTaskFluentBuilder { /* 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 StartAuditMitigationActionsTaskFluentBuilder
impl StartAuditMitigationActionsTaskFluentBuilder
sourcepub fn as_input(&self) -> &StartAuditMitigationActionsTaskInputBuilder
pub fn as_input(&self) -> &StartAuditMitigationActionsTaskInputBuilder
Access the StartAuditMitigationActionsTask as a reference.
sourcepub async fn send(
self
) -> Result<StartAuditMitigationActionsTaskOutput, SdkError<StartAuditMitigationActionsTaskError, HttpResponse>>
pub async fn send( self ) -> Result<StartAuditMitigationActionsTaskOutput, SdkError<StartAuditMitigationActionsTaskError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<StartAuditMitigationActionsTaskOutput, StartAuditMitigationActionsTaskError, Self>
pub fn customize( self ) -> CustomizableOperation<StartAuditMitigationActionsTaskOutput, StartAuditMitigationActionsTaskError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_task_id(&self) -> &Option<String>
pub fn get_task_id(&self) -> &Option<String>
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 get_target(&self) -> &Option<AuditMitigationActionsTaskTarget>
pub fn get_target(&self) -> &Option<AuditMitigationActionsTaskTarget>
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 get_audit_check_to_actions_mapping(
&self
) -> &Option<HashMap<String, Vec<String>>>
pub fn get_audit_check_to_actions_mapping( &self ) -> &Option<HashMap<String, Vec<String>>>
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.
sourcepub fn get_client_request_token(&self) -> &Option<String>
pub fn get_client_request_token(&self) -> &Option<String>
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 StartAuditMitigationActionsTaskFluentBuilder
impl Clone for StartAuditMitigationActionsTaskFluentBuilder
source§fn clone(&self) -> StartAuditMitigationActionsTaskFluentBuilder
fn clone(&self) -> StartAuditMitigationActionsTaskFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more