class CfnResiliencyPolicyPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ResilienceHub.Mixins.CfnResiliencyPolicyPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsresiliencehub/mixins#CfnResiliencyPolicyPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.resiliencehub.mixins.CfnResiliencyPolicyPropsMixin |
Python | aws_cdk.mixins_preview.aws_resiliencehub.mixins.CfnResiliencyPolicyPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_resiliencehub » mixins » CfnResiliencyPolicyPropsMixin |
Implements
IMixin
Extends
Mixin
Defines a resiliency policy.
AWS Resilience Hub allows you to provide a value of zero for
rtoInSecsandrpoInSecsof your resiliency policy. But, while assessing your application, the lowest possible assessment result is near zero. Hence, if you provide value zero forrtoInSecsandrpoInSecs, the estimated workload RTO and estimated workload RPO result will be near zero and the Compliance status for your application will be set to Policy breached .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as resiliencehub_mixins } from '@aws-cdk/mixins-preview/aws-resiliencehub';
const cfnResiliencyPolicyPropsMixin = new resiliencehub_mixins.CfnResiliencyPolicyPropsMixin({
dataLocationConstraint: 'dataLocationConstraint',
policy: {
policyKey: {
rpoInSecs: 123,
rtoInSecs: 123,
},
},
policyDescription: 'policyDescription',
policyName: 'policyName',
tags: {
tagsKey: 'tags',
},
tier: 'tier',
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnResiliencyPolicyPropsMixin(props: CfnResiliencyPolicyMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Resiliency Policy Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::ResilienceHub::ResiliencyPolicy.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript