pub struct StartDetectMitigationActionsTask { /* private fields */ }
Expand description
Fluent builder constructing a request to StartDetectMitigationActionsTask
.
Starts a Device Defender ML Detect mitigation actions task.
Requires permission to access the StartDetectMitigationActionsTask action.
Implementations§
source§impl StartDetectMitigationActionsTask
impl StartDetectMitigationActionsTask
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartDetectMitigationActionsTask, AwsResponseRetryClassifier>, SdkError<StartDetectMitigationActionsTaskError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartDetectMitigationActionsTask, AwsResponseRetryClassifier>, SdkError<StartDetectMitigationActionsTaskError>>
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<StartDetectMitigationActionsTaskOutput, SdkError<StartDetectMitigationActionsTaskError>>
pub async fn send(
self
) -> Result<StartDetectMitigationActionsTaskOutput, SdkError<StartDetectMitigationActionsTaskError>>
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 set_task_id(self, input: Option<String>) -> Self
pub fn set_task_id(self, input: Option<String>) -> Self
The unique identifier of the task.
sourcepub fn target(self, input: DetectMitigationActionsTaskTarget) -> Self
pub fn target(self, input: DetectMitigationActionsTaskTarget) -> Self
Specifies the ML Detect findings to which the mitigation actions are applied.
sourcepub fn set_target(self, input: Option<DetectMitigationActionsTaskTarget>) -> Self
pub fn set_target(self, input: Option<DetectMitigationActionsTaskTarget>) -> Self
Specifies the ML Detect findings to which the mitigation actions are applied.
sourcepub fn actions(self, input: impl Into<String>) -> Self
pub fn actions(self, input: impl Into<String>) -> Self
Appends an item to actions
.
To override the contents of this collection use set_actions
.
The actions to be performed when a device has unexpected behavior.
sourcepub fn set_actions(self, input: Option<Vec<String>>) -> Self
pub fn set_actions(self, input: Option<Vec<String>>) -> Self
The actions to be performed when a device has unexpected behavior.
sourcepub fn violation_event_occurrence_range(
self,
input: ViolationEventOccurrenceRange
) -> Self
pub fn violation_event_occurrence_range(
self,
input: ViolationEventOccurrenceRange
) -> Self
Specifies the time period of which violation events occurred between.
sourcepub fn set_violation_event_occurrence_range(
self,
input: Option<ViolationEventOccurrenceRange>
) -> Self
pub fn set_violation_event_occurrence_range(
self,
input: Option<ViolationEventOccurrenceRange>
) -> Self
Specifies the time period of which violation events occurred between.
sourcepub fn include_only_active_violations(self, input: bool) -> Self
pub fn include_only_active_violations(self, input: bool) -> Self
Specifies to list only active violations.
sourcepub fn set_include_only_active_violations(self, input: Option<bool>) -> Self
pub fn set_include_only_active_violations(self, input: Option<bool>) -> Self
Specifies to list only active violations.
sourcepub fn include_suppressed_alerts(self, input: bool) -> Self
pub fn include_suppressed_alerts(self, input: bool) -> Self
Specifies to include suppressed alerts.
sourcepub fn set_include_suppressed_alerts(self, input: Option<bool>) -> Self
pub fn set_include_suppressed_alerts(self, input: Option<bool>) -> Self
Specifies to include suppressed alerts.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
Each mitigation action task must have a unique client request token. If you try to create a new task with the same token as a task that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
Each mitigation action task must have a unique client request token. If you try to create a new task with the same token as a task that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
Trait Implementations§
source§impl Clone for StartDetectMitigationActionsTask
impl Clone for StartDetectMitigationActionsTask
source§fn clone(&self) -> StartDetectMitigationActionsTask
fn clone(&self) -> StartDetectMitigationActionsTask
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more