Struct aws_sdk_iot::input::ListAuditFindingsInput
source · #[non_exhaustive]pub struct ListAuditFindingsInput { /* private fields */ }
Implementations§
source§impl ListAuditFindingsInput
impl ListAuditFindingsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAuditFindings, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListAuditFindings, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListAuditFindings
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListAuditFindingsInput
.
source§impl ListAuditFindingsInput
impl ListAuditFindingsInput
sourcepub fn task_id(&self) -> Option<&str>
pub fn task_id(&self) -> Option<&str>
A filter to limit results to the audit with the specified ID. You must specify either the taskId or the startTime and endTime, but not both.
sourcepub fn check_name(&self) -> Option<&str>
pub fn check_name(&self) -> Option<&str>
A filter to limit results to the findings for the specified audit check.
sourcepub fn resource_identifier(&self) -> Option<&ResourceIdentifier>
pub fn resource_identifier(&self) -> Option<&ResourceIdentifier>
Information identifying the noncompliant resource.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return at one time. The default is 25.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
A filter to limit results to those found after the specified time. You must specify either the startTime and endTime or the taskId, but not both.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
A filter to limit results to those found before the specified time. You must specify either the startTime and endTime or the taskId, but not both.
sourcepub fn list_suppressed_findings(&self) -> bool
pub fn list_suppressed_findings(&self) -> bool
Boolean flag indicating whether only the suppressed findings or the unsuppressed findings should be listed. If this parameter isn't provided, the response will list both suppressed and unsuppressed findings.
Trait Implementations§
source§impl Clone for ListAuditFindingsInput
impl Clone for ListAuditFindingsInput
source§fn clone(&self) -> ListAuditFindingsInput
fn clone(&self) -> ListAuditFindingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListAuditFindingsInput
impl Debug for ListAuditFindingsInput
source§impl PartialEq<ListAuditFindingsInput> for ListAuditFindingsInput
impl PartialEq<ListAuditFindingsInput> for ListAuditFindingsInput
source§fn eq(&self, other: &ListAuditFindingsInput) -> bool
fn eq(&self, other: &ListAuditFindingsInput) -> bool
self
and other
values to be equal, and is used
by ==
.