AssessmentRunFilter

public struct AssessmentRunFilter : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • For a record to match a filter, the value that is specified for this data type property must inclusively match any value between the specified minimum and maximum values of the completedAt property of the AssessmentRun data type.

    Declaration

    Swift

    public let completionTimeRange: TimestampRange?
  • For a record to match a filter, the value that is specified for this data type property must inclusively match any value between the specified minimum and maximum values of the durationInSeconds property of the AssessmentRun data type.

    Declaration

    Swift

    public let durationRange: DurationRange?
  • For a record to match a filter, an explicit value or a string containing a wildcard that is specified for this data type property must match the value of the assessmentRunName property of the AssessmentRun data type.

    Declaration

    Swift

    public let namePattern: String?
  • For a record to match a filter, the value that is specified for this data type property must be contained in the list of values of the rulesPackages property of the AssessmentRun data type.

    Declaration

    Swift

    public let rulesPackageArns: [String]?
  • For a record to match a filter, the value that is specified for this data type property must inclusively match any value between the specified minimum and maximum values of the startTime property of the AssessmentRun data type.

    Declaration

    Swift

    public let startTimeRange: TimestampRange?
  • For a record to match a filter, the value that is specified for this data type property must match the stateChangedAt property of the AssessmentRun data type.

    Declaration

    Swift

    public let stateChangeTimeRange: TimestampRange?
  • For a record to match a filter, one of the values specified for this data type property must be the exact match of the value of the assessmentRunState property of the AssessmentRun data type.

    Declaration

    Swift

    public let states: [AssessmentRunState]?
  • Undocumented

    Declaration

    Swift

    public init(completionTimeRange: TimestampRange? = nil, durationRange: DurationRange? = nil, namePattern: String? = nil, rulesPackageArns: [String]? = nil, startTimeRange: TimestampRange? = nil, stateChangeTimeRange: TimestampRange? = nil, states: [AssessmentRunState]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws