AddManualApprovalOptions

class aws_cdk.pipelines.AddManualApprovalOptions(*, action_name=None, run_order=None)

Bases: object

(deprecated) Options for addManualApproval.

Parameters:
  • action_name (Optional[str]) – (deprecated) The name of the manual approval action. Default: ‘ManualApproval’ with a rolling counter

  • run_order (Union[int, float, None]) – (deprecated) The runOrder for this action. Default: - The 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_manual_approval_options = pipelines.AddManualApprovalOptions(
    action_name="actionName",
    run_order=123
)

Attributes

action_name

(deprecated) The name of the manual approval action.

Default:

‘ManualApproval’ with a rolling counter

Stability:

deprecated

run_order

(deprecated) The runOrder for this action.

Default:
  • The next sequential runOrder

Stability:

deprecated