CreateAnalyzerRequest
public struct CreateAnalyzerRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The name of the analyzer to create.
Declaration
Swift
public let analyzerName: String
-
Specifies the archive rules to add for the analyzer. Archive rules automatically archive findings that meet the criteria you define for the rule.
Declaration
Swift
public let archiveRules: [InlineArchiveRule]?
-
A client token.
Declaration
Swift
public let clientToken: String?
-
The tags to apply to the analyzer.
Declaration
Swift
public let tags: [String : String]?
-
The type of analyzer to create. Only ACCOUNT analyzers are supported. You can create only one analyzer per account per Region.
Declaration
Swift
public let type: Type
-
Undocumented
Declaration
Swift
public init(analyzerName: String, archiveRules: [InlineArchiveRule]? = nil, clientToken: String? = CreateAnalyzerRequest.idempotencyToken(), tags: [String : String]? = nil, type: Type)
-
Declaration
Swift
public func validate(name: String) throws