interface CfnReadinessCheckMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53RecoveryReadiness.CfnReadinessCheckMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53recoveryreadiness#CfnReadinessCheckMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53recoveryreadiness.CfnReadinessCheckMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53recoveryreadiness.CfnReadinessCheckMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53recoveryreadiness » 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 { aws_route53recoveryreadiness as route53recoveryreadiness } from '@aws-cdk/cfn-property-mixins';
const cfnReadinessCheckMixinProps: route53recoveryreadiness.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