CodeDeployServerDeployActionProps
- class aws_cdk.aws_codepipeline_actions.CodeDeployServerDeployActionProps(*, action_name, run_order=None, variables_namespace=None, role=None, deployment_group, input)
Bases:
CommonAwsActionProps
Construction properties of the
CodeDeployServerDeployAction CodeDeploy server deploy CodePipeline Action
.- Parameters:
action_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 setrole (
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 yourIAction.bind
method in theActionBindOptions.role
property. Default: a new Role will be generateddeployment_group (
IServerDeploymentGroup
) – The CodeDeploy server Deployment Group to deploy to.input (
Artifact
) – The source to use as input for deployment.
- ExampleMetadata:
infused
Example:
# deployment_group: codedeploy.ServerDeploymentGroup pipeline = codepipeline.Pipeline(self, "MyPipeline", pipeline_name="MyPipeline" ) # add the source and build Stages to the Pipeline... build_output = codepipeline.Artifact() deploy_action = codepipeline_actions.CodeDeployServerDeployAction( action_name="CodeDeploy", input=build_output, deployment_group=deployment_group ) pipeline.add_stage( stage_name="Deploy", actions=[deploy_action] )
Attributes
- action_name
The physical, human-readable name of the Action.
Note that Action names must be unique within a single Stage.
- deployment_group
The CodeDeploy server Deployment Group to deploy to.
- input
The source to use as input for deployment.
- role
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
IAction.bind
method in theActionBindOptions.role
property.- Default:
a new Role will be generated
- run_order
The runOrder property for this Action.
RunOrder determines the relative order in which multiple Actions in the same Stage execute.
- variables_namespace
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