AddStackOptions

class aws_cdk.pipelines.AddStackOptions(*, execute_run_order=None, run_order=None)

Bases: object

(deprecated) Additional options for adding a stack deployment.

Parameters:
  • execute_run_order (Union[int, float, None]) – (deprecated) Base runorder. Default: - runOrder + 1

  • run_order (Union[int, float, None]) – (deprecated) Base runorder. Default: - Next sequential runorder

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.pipelines as pipelines

add_stack_options = pipelines.AddStackOptions(
    execute_run_order=123,
    run_order=123
)

Attributes

execute_run_order

(deprecated) Base runorder.

Default:
  • runOrder + 1

Stability:

deprecated

run_order

(deprecated) Base runorder.

Default:
  • Next sequential runorder

Stability:

deprecated