CdkStackActionFromArtifactOptions

class aws_cdk.pipelines.CdkStackActionFromArtifactOptions(*, cloud_assembly_input, base_action_name=None, change_set_name=None, execute_run_order=None, output=None, output_file_name=None, prepare_run_order=None, stack_name=None)

Bases: DeployCdkStackActionOptions

(deprecated) Options for the ‘fromStackArtifact’ operation.

Parameters:
  • cloud_assembly_input (Artifact) – (deprecated) The CodePipeline artifact that holds the Cloud Assembly.

  • base_action_name (Optional[str]) – (deprecated) Base name of the action. Default: stackName

  • change_set_name (Optional[str]) – (deprecated) Name of the change set to create and deploy. Default: ‘PipelineChange’

  • execute_run_order (Union[int, float, None]) – (deprecated) Run order for the Execute action. Default: - prepareRunOrder + 1

  • output (Optional[Artifact]) – (deprecated) Artifact to write Stack Outputs to. Default: - No outputs

  • output_file_name (Optional[str]) – (deprecated) Filename in output to write Stack outputs to. Default: - Required when ‘output’ is set

  • prepare_run_order (Union[int, float, None]) – (deprecated) Run order for the Prepare action. Default: 1

  • stack_name (Optional[str]) – (deprecated) The name of the stack that should be created/updated. Default: - Same as stack artifact

Deprecated:

This class is part of the old API. Use the API based on the CodePipeline class instead

Stability:

deprecated

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_codepipeline as codepipeline
import aws_cdk.pipelines as pipelines

# artifact: codepipeline.Artifact

cdk_stack_action_from_artifact_options = pipelines.CdkStackActionFromArtifactOptions(
    cloud_assembly_input=artifact,

    # the properties below are optional
    base_action_name="baseActionName",
    change_set_name="changeSetName",
    execute_run_order=123,
    output=artifact,
    output_file_name="outputFileName",
    prepare_run_order=123,
    stack_name="stackName"
)

Attributes

base_action_name

(deprecated) Base name of the action.

Default:

stackName

Stability:

deprecated

change_set_name

(deprecated) Name of the change set to create and deploy.

Default:

‘PipelineChange’

Stability:

deprecated

cloud_assembly_input

(deprecated) The CodePipeline artifact that holds the Cloud Assembly.

Stability:

deprecated

execute_run_order

(deprecated) Run order for the Execute action.

Default:
  • prepareRunOrder + 1

Stability:

deprecated

output

(deprecated) Artifact to write Stack Outputs to.

Default:
  • No outputs

Stability:

deprecated

output_file_name

(deprecated) Filename in output to write Stack outputs to.

Default:
  • Required when ‘output’ is set

Stability:

deprecated

prepare_run_order

(deprecated) Run order for the Prepare action.

Default:

1

Stability:

deprecated

stack_name

(deprecated) The name of the stack that should be created/updated.

Default:
  • Same as stack artifact

Stability:

deprecated