PutEvaluationsRequest
public struct PutEvaluationsRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The assessments that the AWS Lambda function performs. Each evaluation identifies an AWS resource and indicates whether it complies with the AWS Config rule that invokes the AWS Lambda function.
Declaration
Swift
public let evaluations: [Evaluation]?
-
An encrypted token that associates an evaluation with an AWS Config rule. Identifies the rule and the event that triggered the evaluation.
Declaration
Swift
public let resultToken: String
-
Use this parameter to specify a test run for PutEvaluations. You can verify whether your AWS Lambda function will deliver evaluation results to AWS Config. No updates occur to your existing evaluations, and evaluation results are not sent to AWS Config. When TestMode is true, PutEvaluations doesn’t require a valid value for the ResultToken parameter, but the value cannot be null.
Declaration
Swift
public let testMode: Bool?
-
Undocumented
Declaration
Swift
public init(evaluations: [Evaluation]? = nil, resultToken: String, testMode: Bool? = nil)
-
Declaration
Swift
public func validate(name: String) throws