Class: Aws::Lambda::Types::CodeSigningPolicies
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CodeSigningPolicies
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Code signing configuration [policies] specify the validation failure action for signature mismatch or expiry.
[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html#config-codesigning-policies
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#untrusted_artifact_on_deployment ⇒ String
Code signing configuration policy for deployment validation failure.
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`
460 461 462 463 464 |
# File 'lib/aws-sdk-lambda/types.rb', line 460 class CodeSigningPolicies < Struct.new( :untrusted_artifact_on_deployment) SENSITIVE = [] include Aws::Structure end |