Struct aws_sdk_iot::client::fluent_builders::ListViolationEvents
source · pub struct ListViolationEvents { /* private fields */ }
Expand description
Fluent builder constructing a request to ListViolationEvents
.
Lists the Device Defender security profile violations discovered during the given time period. You can use filters to limit the results to those alerts issued for a particular security profile, behavior, or thing (device).
Requires permission to access the ListViolationEvents action.
Implementations§
source§impl ListViolationEvents
impl ListViolationEvents
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListViolationEvents, AwsResponseRetryClassifier>, SdkError<ListViolationEventsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListViolationEvents, AwsResponseRetryClassifier>, SdkError<ListViolationEventsError>>
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<ListViolationEventsOutput, SdkError<ListViolationEventsError>>
pub async fn send(
self
) -> Result<ListViolationEventsOutput, SdkError<ListViolationEventsError>>
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 into_paginator(self) -> ListViolationEventsPaginator
pub fn into_paginator(self) -> ListViolationEventsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start time for the alerts to be listed.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start time for the alerts to be listed.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The end time for the alerts to be listed.
sourcepub fn thing_name(self, input: impl Into<String>) -> Self
pub fn thing_name(self, input: impl Into<String>) -> Self
A filter to limit results to those alerts caused by the specified thing.
sourcepub fn set_thing_name(self, input: Option<String>) -> Self
pub fn set_thing_name(self, input: Option<String>) -> Self
A filter to limit results to those alerts caused by the specified thing.
sourcepub fn security_profile_name(self, input: impl Into<String>) -> Self
pub fn security_profile_name(self, input: impl Into<String>) -> Self
A filter to limit results to those alerts generated by the specified security profile.
sourcepub fn set_security_profile_name(self, input: Option<String>) -> Self
pub fn set_security_profile_name(self, input: Option<String>) -> Self
A filter to limit results to those alerts generated by the specified security profile.
sourcepub fn behavior_criteria_type(self, input: BehaviorCriteriaType) -> Self
pub fn behavior_criteria_type(self, input: BehaviorCriteriaType) -> Self
The criteria for a behavior.
sourcepub fn set_behavior_criteria_type(
self,
input: Option<BehaviorCriteriaType>
) -> Self
pub fn set_behavior_criteria_type(
self,
input: Option<BehaviorCriteriaType>
) -> Self
The criteria for a behavior.
sourcepub fn list_suppressed_alerts(self, input: bool) -> Self
pub fn list_suppressed_alerts(self, input: bool) -> Self
A list of all suppressed alerts.
sourcepub fn set_list_suppressed_alerts(self, input: Option<bool>) -> Self
pub fn set_list_suppressed_alerts(self, input: Option<bool>) -> Self
A list of all suppressed alerts.
sourcepub fn verification_state(self, input: VerificationState) -> Self
pub fn verification_state(self, input: VerificationState) -> Self
The verification state of the violation (detect alarm).
sourcepub fn set_verification_state(self, input: Option<VerificationState>) -> Self
pub fn set_verification_state(self, input: Option<VerificationState>) -> Self
The verification state of the violation (detect alarm).
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return at one time.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return at one time.
Trait Implementations§
source§impl Clone for ListViolationEvents
impl Clone for ListViolationEvents
source§fn clone(&self) -> ListViolationEvents
fn clone(&self) -> ListViolationEvents
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more