CfnReadinessCheckProps
- class aws_cdk.aws_route53recoveryreadiness.CfnReadinessCheckProps(*, readiness_check_name=None, resource_set_name=None, tags=None)
Bases:
object
Properties for defining a
CfnReadinessCheck
.- Parameters:
readiness_check_name (
Optional
[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
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A collection of tags associated with a resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_route53recoveryreadiness as route53recoveryreadiness cfn_readiness_check_props = route53recoveryreadiness.CfnReadinessCheckProps( readiness_check_name="readinessCheckName", 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.
- tags
A collection of tags associated with a resource.