LambdaInvokeAction
- class aws_cdk.aws_codepipeline_actions.LambdaInvokeAction(*, lambda_, inputs=None, outputs=None, user_parameters=None, user_parameters_string=None, role=None, action_name, run_order=None, variables_namespace=None)
Bases:
Action
CodePipeline invoke Action that is provided by an AWS Lambda function.
- See:
- ExampleMetadata:
infused
Example:
# fn: lambda.Function source_output = codepipeline.Artifact() build_output = codepipeline.Artifact() lambda_action = codepipeline_actions.LambdaInvokeAction( action_name="Lambda", inputs=[source_output, build_output ], outputs=[ codepipeline.Artifact("Out1"), codepipeline.Artifact("Out2") ], lambda_=fn )
- Parameters:
lambda – The lambda function to invoke.
inputs (
Optional
[Sequence
[Artifact
]]) – The optional input Artifacts of the Action. A Lambda Action can have up to 5 inputs. The inputs will appear in the event passed to the Lambda, under the'CodePipeline.job'.data.inputArtifacts
path. Default: the Action will not have any inputsoutputs (
Optional
[Sequence
[Artifact
]]) – The optional names of the output Artifacts of the Action. A Lambda Action can have up to 5 outputs. The outputs will appear in the event passed to the Lambda, under the'CodePipeline.job'.data.outputArtifacts
path. It is the responsibility of the Lambda to upload ZIP files with the Artifact contents to the provided locations. Default: the Action will not have any outputsuser_parameters (
Optional
[Mapping
[str
,Any
]]) – A set of key-value pairs that will be accessible to the invoked Lambda inside the event that the Pipeline will call it with. Only one ofuserParameters
oruserParametersString
can be specified. Default: - no user parameters will be passeduser_parameters_string (
Optional
[str
]) – The string representation of the user parameters that will be accessible to the invoked Lambda inside the event that the Pipeline will call it with. Only one ofuserParametersString
oruserParameters
can be specified. Default: - no user parameters will be passedrole (
Optional
[IRole
]) – The Role in which context’s this Action will be executing in. The Pipeline’s Role will assume this Role (the required permissions for that will be granted automatically) right before executing this Action. This Action will be passed into your {@link IAction.bind} method in the {@link ActionBindOptions.role} property. Default: a new Role will be generatedaction_name (
str
) – The physical, human-readable name of the Action. Note that Action names must be unique within a single Stage.run_order (
Union
[int
,float
,None
]) – The runOrder property for this Action. RunOrder determines the relative order in which multiple Actions in the same Stage execute. Default: 1variables_namespace (
Optional
[str
]) – The name of the namespace to use for variables emitted by this action. Default: - a name will be generated, based on the stage and action names, if any of the action’s variables were referenced - otherwise, no namespace will be set
Methods
- bind(scope, stage, *, bucket, role)
The callback invoked when this Action is added to a Pipeline.
- Parameters:
- Return type:
- on_state_change(name, target=None, *, description=None, enabled=None, event_bus=None, event_pattern=None, rule_name=None, schedule=None, targets=None)
Creates an Event that will be triggered whenever the state of this Action changes.
- Parameters:
name (
str
) –target (
Optional
[IRuleTarget
]) –description (
Optional
[str
]) – A description of the rule’s purpose. Default: - No description.enabled (
Optional
[bool
]) – Indicates whether the rule is enabled. Default: trueevent_bus (
Optional
[IEventBus
]) – The event bus to associate with this rule. Default: - The default event bus.event_pattern (
Union
[EventPattern
,Dict
[str
,Any
],None
]) – Describes which events EventBridge routes to the specified target. These routed events are matched events. For more information, see Events and Event Patterns in the Amazon EventBridge User Guide. Default: - None.rule_name (
Optional
[str
]) – A name for the rule. Default: - AWS CloudFormation generates a unique physical ID and uses that ID for the rule name. For more information, see Name Type.schedule (
Optional
[Schedule
]) – The schedule or rate (frequency) that determines when EventBridge runs the rule. For more information, see Schedule Expression Syntax for Rules in the Amazon EventBridge User Guide. Default: - None.targets (
Optional
[Sequence
[IRuleTarget
]]) – Targets to invoke when this rule matches an event. Input will be the full matched event. If you wish to specify custom target input, useaddTarget(target[, inputOptions])
. Default: - No targets.
- Return type:
- variable(variable_name)
Reference a CodePipeline variable defined by the Lambda function this action points to.
Variables in Lambda invoke actions are defined by calling the PutJobSuccessResult CodePipeline API call with the ‘outputVariables’ property filled.
- Parameters:
variable_name (
str
) – the name of the variable to reference. A variable by this name must be present in the ‘outputVariables’ section of the PutJobSuccessResult request that the Lambda function calls when the action is invoked- See:
- Return type:
str
Attributes