Skip to content

WaitConditionProps

Properties for defining a WaitCondition.

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

Initializer

import ros_cdk_ros
ros_cdk_ros.WaitConditionProps(
  handle: typing.Union[str, IResolvable],
  timeout: typing.Union[typing.Union[int, float], IResolvable],
  count: typing.Union[typing.Union[int, float], IResolvable] = None,
  show_progress_event: typing.Union[str, IResolvable] = None
)

Properties

Name Type Description
handle typing.Union[str, ros_cdk_core.IResolvable] Property handle: A reference to the wait condition handle used to signal this wait condition.
timeout typing.Union[typing.Union[int, float], ros_cdk_core.IResolvable] Property timeout: The number of seconds to wait for the correct number of signals to arrive.
count typing.Union[typing.Union[int, float], ros_cdk_core.IResolvable] Property count: The number of success signals that must be received before the stack creation process continues.
show_progress_event typing.Union[str, ros_cdk_core.IResolvable] Property showProgressEvent: Whether to generate progress changed event.

handleRequired

handle: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

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


timeoutRequired

timeout: typing.Union[typing.Union[int, float], IResolvable]
  • Type: typing.Union[typing.Union[int, float], ros_cdk_core.IResolvable]

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


countOptional

count: typing.Union[typing.Union[int, float], IResolvable]
  • Type: typing.Union[typing.Union[int, float], ros_cdk_core.IResolvable]

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


show_progress_eventOptional

show_progress_event: typing.Union[str, IResolvable]
  • Type: typing.Union[str, ros_cdk_core.IResolvable]

Property showProgressEvent: Whether to generate progress changed event.

Default to Disabled.