interface CfnReadinessCheckMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryReadiness.Mixins.CfnReadinessCheckMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoveryreadiness/mixins#CfnReadinessCheckMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53recoveryreadiness.mixins.CfnReadinessCheckMixinProps |
Python | aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnReadinessCheckMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoveryreadiness » mixins » CfnReadinessCheckMixinProps |
Properties for CfnReadinessCheckPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53recoveryreadiness_mixins } from '@aws-cdk/mixins-preview/aws-route53recoveryreadiness';
const cfnReadinessCheckMixinProps: route53recoveryreadiness_mixins.CfnReadinessCheckMixinProps = {
readinessCheckName: 'readinessCheckName',
resourceSetName: 'resourceSetName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| readiness | string | The name of the readiness check to create. |
| resource | string | The name of the resource set to check. |
| tags? | Cfn[] | A collection of tags associated with a resource. |
readinessCheckName?
Type:
string
(optional)
The name of the readiness check to create.
resourceSetName?
Type:
string
(optional)
The name of the resource set to check.
tags?
Type:
Cfn[]
(optional)
A collection of tags associated with a resource.

.NET
Go
Java
Python
TypeScript