ProviderProps
- class aws_cdk.custom_resources.ProviderProps(*, on_event_handler, is_complete_handler=None, log_retention=None, provider_function_name=None, query_interval=None, role=None, security_groups=None, total_timeout=None, vpc=None, vpc_subnets=None)
Bases:
object
Initialization properties for the
Provider
construct.- Parameters:
on_event_handler (
IFunction
) – The AWS Lambda function to invoke for all resource lifecycle operations (CREATE/UPDATE/DELETE). This function is responsible to begin the requested resource operation (CREATE/UPDATE/DELETE) and return any additional properties to add to the event, which will later be passed toisComplete
. ThePhysicalResourceId
property must be included in the response.is_complete_handler (
Optional
[IFunction
]) – The AWS Lambda function to invoke in order to determine if the operation is complete. This function will be called immediately afteronEvent
and then periodically based on the configured query interval as long as it returnsfalse
. If the function still returnsfalse
and the alloted timeout has passed, the operation will fail. Default: - provider is synchronous. This means that theonEvent
handler is expected to finish all lifecycle operations within the initial invocation.log_retention (
Optional
[RetentionDays
]) – The number of days framework log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn’t remove the log retention policy. To remove the retention policy, set the value toINFINITE
. Default: logs.RetentionDays.INFINITEprovider_function_name (
Optional
[str
]) – Provider Lambda name. The provider lambda function name. Default: - CloudFormation default name from unique physical IDquery_interval (
Optional
[Duration
]) – Time between calls to theisComplete
handler which determines if the resource has been stabilized. The firstisComplete
will be called immediately afterhandler
and then everyqueryInterval
seconds, and untiltimeout
has been reached or untilisComplete
returnstrue
. Default: Duration.seconds(5)role (
Optional
[IRole
]) – AWS Lambda execution role. The role that will be assumed by the AWS Lambda. Must be assumable by the ‘lambda.amazonaws.com’ service principal. Default: - A default role will be created.security_groups (
Optional
[Sequence
[ISecurityGroup
]]) – Security groups to attach to the provider functions. Only used if ‘vpc’ is supplied Default: - Ifvpc
is not supplied, no security groups are attached. Otherwise, a dedicated security group is created for each function.total_timeout (
Optional
[Duration
]) – Total timeout for the entire operation. The maximum timeout is 2 hours (yes, it can exceed the AWS Lambda 15 minutes) Default: Duration.minutes(30)vpc (
Optional
[IVpc
]) – The vpc to provision the lambda functions in. Default: - functions are not provisioned inside a vpc.vpc_subnets (
Union
[SubnetSelection
,Dict
[str
,Any
],None
]) – Which subnets from the VPC to place the lambda functions in. Only used if ‘vpc’ is supplied. Note: internet access for Lambdas requires a NAT gateway, so picking Public subnets is not allowed. Default: - the Vpc default strategy if not specified
- ExampleMetadata:
infused
Example:
import aws_cdk.custom_resources as custom_resources import aws_cdk.aws_lambda as lambda_ from aws_cdk.core import Stack # my_on_event_lambda: lambda.Function # my_is_complete_lambda: lambda.Function stack = Stack() provider = custom_resources.Provider(stack, "myProvider", on_event_handler=my_on_event_lambda, is_complete_handler=my_is_complete_lambda )
Attributes
- is_complete_handler
The AWS Lambda function to invoke in order to determine if the operation is complete.
This function will be called immediately after
onEvent
and then periodically based on the configured query interval as long as it returnsfalse
. If the function still returnsfalse
and the alloted timeout has passed, the operation will fail.- Default:
provider is synchronous. This means that the
onEvent
handler
is expected to finish all lifecycle operations within the initial invocation.
- log_retention
The number of days framework log events are kept in CloudWatch Logs.
When updating this property, unsetting it doesn’t remove the log retention policy. To remove the retention policy, set the value to
INFINITE
.- Default:
logs.RetentionDays.INFINITE
- on_event_handler
The AWS Lambda function to invoke for all resource lifecycle operations (CREATE/UPDATE/DELETE).
This function is responsible to begin the requested resource operation (CREATE/UPDATE/DELETE) and return any additional properties to add to the event, which will later be passed to
isComplete
. ThePhysicalResourceId
property must be included in the response.
- provider_function_name
Provider Lambda name.
The provider lambda function name.
- Default:
CloudFormation default name from unique physical ID
- query_interval
Time between calls to the
isComplete
handler which determines if the resource has been stabilized.The first
isComplete
will be called immediately afterhandler
and then everyqueryInterval
seconds, and untiltimeout
has been reached or untilisComplete
returnstrue
.- Default:
Duration.seconds(5)
- role
AWS Lambda execution role.
The role that will be assumed by the AWS Lambda. Must be assumable by the ‘lambda.amazonaws.com’ service principal.
- Default:
A default role will be created.
- security_groups
Security groups to attach to the provider functions.
Only used if ‘vpc’ is supplied
- Default:
If
vpc
is not supplied, no security groups are attached. Otherwise, a dedicated security
group is created for each function.
- total_timeout
Total timeout for the entire operation.
The maximum timeout is 2 hours (yes, it can exceed the AWS Lambda 15 minutes)
- Default:
Duration.minutes(30)
- vpc
The vpc to provision the lambda functions in.
- Default:
functions are not provisioned inside a vpc.
- vpc_subnets
Which subnets from the VPC to place the lambda functions in.
Only used if ‘vpc’ is supplied. Note: internet access for Lambdas requires a NAT gateway, so picking Public subnets is not allowed.
- Default:
the Vpc default strategy if not specified