Class: Aws::Lambda::Types::CodeSigningPolicies

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb

Overview

Code signing configuration policies specify the validation failure action for signature mismatch or expiry.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#untrusted_artifact_on_deployment ⇒ String

Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn, Lambda allows the deployment and issues a new Amazon CloudWatch metric (SignatureValidationErrors) and also stores the warning in the CloudTrail log.

Default value: Warn

Returns:

  • (String)


1109
1110
1111
1112
1113
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1109

class CodeSigningPolicies < Struct.new(
  :untrusted_artifact_on_deployment)
  SENSITIVE = []
  include Aws::Structure
end