UpdateFindingsRequest
public struct UpdateFindingsRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ARN of the analyzer that generated the findings to update.
Declaration
Swift
public let analyzerArn: String
-
A client token.
Declaration
Swift
public let clientToken: String?
-
The IDs of the findings to update.
Declaration
Swift
public let ids: [String]?
-
The ARN of the resource identified in the finding.
Declaration
Swift
public let resourceArn: String?
-
The state represents the action to take to update the finding Status. Use ARCHIVE to change an Active finding to an Archived finding. Use ACTIVE to change an Archived finding to an Active finding.
Declaration
Swift
public let status: FindingStatusUpdate
-
Undocumented
Declaration
Swift
public init(analyzerArn: String, clientToken: String? = UpdateFindingsRequest.idempotencyToken(), ids: [String]? = nil, resourceArn: String? = nil, status: FindingStatusUpdate)
-
Declaration
Swift
public func validate(name: String) throws