Skip to content

WaitConditionProps

Properties for defining a WaitCondition.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ros-waitcondition

Initializer

import { WaitConditionProps } from '@alicloud/ros-cdk-ros'
const waitConditionProps: WaitConditionProps = { ... }

Properties

Name Type Description
handle string | @alicloud/ros-cdk-core.IResolvable Property handle: A reference to the wait condition handle used to signal this wait condition.
timeout number | @alicloud/ros-cdk-core.IResolvable Property timeout: The number of seconds to wait for the correct number of signals to arrive.
count number | @alicloud/ros-cdk-core.IResolvable Property count: The number of success signals that must be received before the stack creation process continues.
showProgressEvent string | @alicloud/ros-cdk-core.IResolvable Property showProgressEvent: Whether to generate progress changed event.

handleRequired

public readonly handle: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property handle: A reference to the wait condition handle used to signal this wait condition.


timeoutRequired

public readonly timeout: number | IResolvable;
  • Type: number | @alicloud/ros-cdk-core.IResolvable

Property timeout: The number of seconds to wait for the correct number of signals to arrive.


countOptional

public readonly count: number | IResolvable;
  • Type: number | @alicloud/ros-cdk-core.IResolvable

Property count: The number of success signals that must be received before the stack creation process continues.


showProgressEventOptional

public readonly showProgressEvent: string | IResolvable;
  • Type: string | @alicloud/ros-cdk-core.IResolvable

Property showProgressEvent: Whether to generate progress changed event.

Default to Disabled.