CfnReadinessCheckProps¶
-
class
aws_cdk.aws_route53recoveryreadiness.
CfnReadinessCheckProps
(*, readiness_check_name, resource_set_name=None, tags=None)¶ Bases:
object
Properties for defining a
CfnReadinessCheck
.- Parameters
readiness_check_name (
str
) – The name of the readiness check to create.resource_set_name (
Optional
[str
]) – The name of the resource set to check.tags (
Optional
[Sequence
[CfnTag
]]) – A collection of tags associated with a resource.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_route53recoveryreadiness as route53recoveryreadiness cfn_readiness_check_props = route53recoveryreadiness.CfnReadinessCheckProps( readiness_check_name="readinessCheckName", # the properties below are optional resource_set_name="resourceSetName", tags=[CfnTag( key="key", value="value" )] )
Attributes
-
readiness_check_name
¶ The name of the readiness check to create.
-
resource_set_name
¶ The name of the resource set to check.
A collection of tags associated with a resource.