interface WaitConditionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFormation.WaitConditionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudformation#WaitConditionReference |
Java | software.amazon.awscdk.interfaces.cloudformation.WaitConditionReference |
Python | aws_cdk.interfaces.aws_cloudformation.WaitConditionReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudformation » WaitConditionReference |
A reference to a WaitCondition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as interfaces_aws_cloudformation } from 'aws-cdk-lib/interfaces';
const waitConditionReference: interfaces_aws_cloudformation.WaitConditionReference = {
waitConditionId: 'waitConditionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| wait | string | The Id of the WaitCondition resource. |
waitConditionId
Type:
string
The Id of the WaitCondition resource.

.NET
Go
Java
Python
TypeScript