CfnResiliencyPolicyProps
- class aws_cdk.aws_resiliencehub.CfnResiliencyPolicyProps(*, policy, policy_name, tier, data_location_constraint=None, policy_description=None, tags=None)
 Bases:
objectProperties for defining a
CfnResiliencyPolicy.- Parameters:
 policy (
Union[IResolvable,Mapping[str,Union[IResolvable,FailurePolicyProperty,Dict[str,Any]]]]) – The resiliency policy.policy_name (
str) – The name of the policy.tier (
str) – The tier for this resiliency policy, ranging from the highest severity (MissionCritical) to lowest (NonCritical).data_location_constraint (
Optional[str]) – Specifies a high-level geographical location constraint for where your resilience policy data can be stored.policy_description (
Optional[str]) – Description of the resiliency policy.tags (
Optional[Mapping[str,str]]) – Tags assigned to the resource. A tag is a label that you assign to an AWS resource. Each tag consists of a key/value pair.
- 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_resiliencehub as resiliencehub cfn_resiliency_policy_props = resiliencehub.CfnResiliencyPolicyProps( policy={ "policy_key": resiliencehub.CfnResiliencyPolicy.FailurePolicyProperty( rpo_in_secs=123, rto_in_secs=123 ) }, policy_name="policyName", tier="tier", # the properties below are optional data_location_constraint="dataLocationConstraint", policy_description="policyDescription", tags={ "tags_key": "tags" } )
Attributes
- data_location_constraint
 Specifies a high-level geographical location constraint for where your resilience policy data can be stored.
- policy
 The resiliency policy.
- policy_description
 Description of the resiliency policy.
- policy_name
 The name of the policy.
- tags
 Tags assigned to the resource.
A tag is a label that you assign to an AWS resource. Each tag consists of a key/value pair.
- tier
 The tier for this resiliency policy, ranging from the highest severity (
MissionCritical) to lowest (NonCritical).