AWSIoTListAuditFindingsRequest

Objective-C

@interface AWSIoTListAuditFindingsRequest

Swift

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable checkName;

    Swift

    var checkName: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable endTime;

    Swift

    var endTime: Date? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable listSuppressedFindings;

    Swift

    var listSuppressedFindings: NSNumber? { get set }
  • The maximum number of results to return at one time. The default is 25.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • The token for the next set of results.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }
  • Information identifying the noncompliant resource.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTResourceIdentifier *_Nullable resourceIdentifier;

    Swift

    var resourceIdentifier: AWSIoTResourceIdentifier? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable startTime;

    Swift

    var startTime: Date? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable taskId;

    Swift

    var taskId: String? { get set }