interface CfnResiliencyPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ResilienceHub.Mixins.CfnResiliencyPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsresiliencehub/mixins#CfnResiliencyPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.resiliencehub.mixins.CfnResiliencyPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_resiliencehub.mixins.CfnResiliencyPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_resiliencehub » mixins » CfnResiliencyPolicyMixinProps |
Properties for CfnResiliencyPolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as resiliencehub_mixins } from '@aws-cdk/mixins-preview/aws-resiliencehub';
const cfnResiliencyPolicyMixinProps: resiliencehub_mixins.CfnResiliencyPolicyMixinProps = {
dataLocationConstraint: 'dataLocationConstraint',
policy: {
policyKey: {
rpoInSecs: 123,
rtoInSecs: 123,
},
},
policyDescription: 'policyDescription',
policyName: 'policyName',
tags: {
tagsKey: 'tags',
},
tier: 'tier',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | Specifies a high-level geographical location constraint for where your resilience policy data can be stored. |
| policy? | IResolvable | { [string]: IResolvable | Failure } | The resiliency policy. |
| policy | string | Description of the resiliency policy. |
| policy | string | The name of the policy. |
| tags? | { [string]: string } | Tags assigned to the resource. |
| tier? | string | The tier for this resiliency policy, ranging from the highest severity ( MissionCritical ) to lowest ( NonCritical ). |
dataLocationConstraint?
Type:
string
(optional)
Specifies a high-level geographical location constraint for where your resilience policy data can be stored.
policy?
Type:
IResolvable | { [string]: IResolvable | Failure }
(optional)
The resiliency policy.
policyDescription?
Type:
string
(optional)
Description of the resiliency policy.
policyName?
Type:
string
(optional)
The name of the policy.
tags?
Type:
{ [string]: string }
(optional)
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?
Type:
string
(optional)
The tier for this resiliency policy, ranging from the highest severity ( MissionCritical ) to lowest ( NonCritical ).

.NET
Go
Java
Python
TypeScript