CfnReadinessCheckPropsMixin
- class aws_cdk.mixins_preview.aws_route53recoveryreadiness.mixins.CfnReadinessCheckPropsMixin(props, *, strategy=None)
Bases:
MixinCreates a readiness check in Amazon Route 53 Application Recovery Controller.
A readiness check continually monitors a resource set in your application, such as a set of Amazon Aurora instances, that Route 53 ARC is auditing recovery readiness for. The audits run once every minute on every resource that’s associated with a readiness check.
Every resource type has a set of rules associated with it that Route 53 ARC uses to audit resources for readiness. For more information, see Readiness rules descriptions in the Amazon Route 53 Application Recovery Controller Developer Guide.
Route 53 ARC Readiness supports us-east-1 and us-west-2 AWS Regions only.
- See:
- CloudformationResource:
AWS::Route53RecoveryReadiness::ReadinessCheck
- Mixin:
true
- 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.mixins_preview import mixins from aws_cdk.mixins_preview.aws_route53recoveryreadiness import mixins as route53recoveryreadiness_mixins cfn_readiness_check_props_mixin = route53recoveryreadiness_mixins.CfnReadinessCheckPropsMixin(route53recoveryreadiness_mixins.CfnReadinessCheckMixinProps( readiness_check_name="readinessCheckName", resource_set_name="resourceSetName", tags=[CfnTag( key="key", value="value" )] ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::Route53RecoveryReadiness::ReadinessCheck.- Parameters:
props (
Union[CfnReadinessCheckMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['readinessCheckName', 'resourceSetName', 'tags']
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental