You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT::Types::ListAuditFindingsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListAuditFindingsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  task_id: "AuditTaskId",
  check_name: "AuditCheckName",
  resource_identifier: {
    device_certificate_id: "CertificateId",
    ca_certificate_id: "CertificateId",
    cognito_identity_pool_id: "CognitoIdentityPoolId",
    client_id: "ClientId",
    policy_version_identifier: {
      policy_name: "PolicyName",
      policy_version_id: "PolicyVersionId",
    },
    account: "AwsAccountId",
    iam_role_arn: "RoleArn",
    role_alias_arn: "RoleAliasArn",
  },
  max_results: 1,
  next_token: "NextToken",
  start_time: Time.now,
  end_time: Time.now,
  list_suppressed_findings: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#check_nameString

A filter to limit results to the findings for the specified audit check.

Returns:

  • (String)

    A filter to limit results to the findings for the specified audit check.

#end_timeTime

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.

Returns:

  • (Time)

    A filter to limit results to those found before the specified time.

#list_suppressed_findingsBoolean

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.

Returns:

  • (Boolean)

    Boolean flag indicating whether only the suppressed findings or the unsuppressed findings should be listed.

#max_resultsInteger

The maximum number of results to return at one time. The default is 25.

Returns:

  • (Integer)

    The maximum number of results to return at one time.

#next_tokenString

The token for the next set of results.

Returns:

  • (String)

    The token for the next set of results.

#resource_identifierTypes::ResourceIdentifier

Information identifying the noncompliant resource.

Returns:

#start_timeTime

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.

Returns:

  • (Time)

    A filter to limit results to those found after the specified time.

#task_idString

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.

Returns:

  • (String)

    A filter to limit results to the audit with the specified ID.