CfnLambdaHookMixinProps
- class aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnLambdaHookMixinProps(*, alias=None, execution_role=None, failure_mode=None, hook_status=None, lambda_function=None, stack_filters=None, target_filters=None, target_operations=None)
Bases:
objectProperties for CfnLambdaHookPropsMixin.
- Parameters:
alias (
Optional[str]) – The type name alias for the Hook. This alias must be unique per account and Region. The alias must be in the formName1::Name2::Name3and must not begin withAWS. For example,Private::Lambda::MyTestHook.execution_role (
Optional[str]) – The IAM role that the Hook assumes to invoke your Lambda function.failure_mode (
Optional[str]) – Specifies how the Hook responds when the Lambda function invoked by the Hook returns aFAILEDresponse. -FAIL: Prevents the action from proceeding. This is helpful for enforcing strict compliance or security policies. -WARN: Issues warnings to users but allows actions to continue. This is useful for non-critical validations or informational checks.hook_status (
Optional[str]) – Specifies if the Hook isENABLEDorDISABLED. Default: - “ENABLED”lambda_function (
Optional[str]) – Specifies the Lambda function for the Hook. You can use:. - The full Amazon Resource Name (ARN) without a suffix. - A qualified ARN with a version or alias suffix.stack_filters (
Union[IResolvable,StackFiltersProperty,Dict[str,Any],None]) – Specifies the stack level filters for the Hook. Example stack level filter in JSON:"StackFilters": {"FilteringCriteria": "ALL", "StackNames": {"Exclude": [ "stack-1", "stack-2"]}}Example stack level filter in YAML:StackFilters: FilteringCriteria: ALL StackNames: Exclude: - stack-1 - stack-2target_filters (
Union[IResolvable,TargetFiltersProperty,Dict[str,Any],None]) – Specifies the target filters for the Hook. Example target filter in JSON:"TargetFilters": {"Actions": [ "CREATE", "UPDATE", "DELETE" ]}Example target filter in YAML:TargetFilters: Actions: - CREATE - UPDATE - DELETEtarget_operations (
Optional[Sequence[str]]) – Specifies the list of operations the Hook is run against. For more information, see Hook targets in the CloudFormation Hooks User Guide . Valid values:STACK|RESOURCE|CHANGE_SET|CLOUD_CONTROL
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_cloudformation import mixins as cloudformation_mixins cfn_lambda_hook_mixin_props = cloudformation_mixins.CfnLambdaHookMixinProps( alias="alias", execution_role="executionRole", failure_mode="failureMode", hook_status="hookStatus", lambda_function="lambdaFunction", stack_filters=cloudformation_mixins.CfnLambdaHookPropsMixin.StackFiltersProperty( filtering_criteria="filteringCriteria", stack_names=cloudformation_mixins.CfnLambdaHookPropsMixin.StackNamesProperty( exclude=["exclude"], include=["include"] ), stack_roles=cloudformation_mixins.CfnLambdaHookPropsMixin.StackRolesProperty( exclude=["exclude"], include=["include"] ) ), target_filters=cloudformation_mixins.CfnLambdaHookPropsMixin.TargetFiltersProperty( actions=["actions"], invocation_points=["invocationPoints"], target_names=["targetNames"], targets=[cloudformation_mixins.CfnLambdaHookPropsMixin.HookTargetProperty( action="action", invocation_point="invocationPoint", target_name="targetName" )] ), target_operations=["targetOperations"] )
Attributes
- alias
The type name alias for the Hook. This alias must be unique per account and Region.
The alias must be in the form
Name1::Name2::Name3and must not begin withAWS. For example,Private::Lambda::MyTestHook.
- execution_role
The IAM role that the Hook assumes to invoke your Lambda function.
- failure_mode
Specifies how the Hook responds when the Lambda function invoked by the Hook returns a
FAILEDresponse.FAIL: Prevents the action from proceeding. This is helpful for enforcing strict compliance or security policies.WARN: Issues warnings to users but allows actions to continue. This is useful for non-critical validations or informational checks.
- hook_status
Specifies if the Hook is
ENABLEDorDISABLED.
- lambda_function
.
The full Amazon Resource Name (ARN) without a suffix.
A qualified ARN with a version or alias suffix.
- See:
- Type:
Specifies the Lambda function for the Hook. You can use
- stack_filters
Specifies the stack level filters for the Hook.
Example stack level filter in JSON:
"StackFilters": {"FilteringCriteria": "ALL", "StackNames": {"Exclude": [ "stack-1", "stack-2"]}}Example stack level filter in YAML:
StackFilters: FilteringCriteria: ALL StackNames: Exclude: - stack-1 - stack-2
- target_filters
Specifies the target filters for the Hook.
Example target filter in JSON:
"TargetFilters": {"Actions": [ "CREATE", "UPDATE", "DELETE" ]}Example target filter in YAML:
TargetFilters: Actions: - CREATE - UPDATE - DELETE
- target_operations
Specifies the list of operations the Hook is run against.
For more information, see Hook targets in the CloudFormation Hooks User Guide .
Valid values:
STACK|RESOURCE|CHANGE_SET|CLOUD_CONTROL