Interface CfnResiliencyPolicyMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResiliencyPolicyMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.329Z")
@Stability(Stable)
public interface CfnResiliencyPolicyMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnResiliencyPolicyPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.resiliencehub.*;
CfnResiliencyPolicyMixinProps cfnResiliencyPolicyMixinProps = CfnResiliencyPolicyMixinProps.builder()
.dataLocationConstraint("dataLocationConstraint")
.policy(Map.of(
"policyKey", FailurePolicyProperty.builder()
.rpoInSecs(123)
.rtoInSecs(123)
.build()))
.policyDescription("policyDescription")
.policyName("policyName")
.tags(Map.of(
"tagsKey", "tags"))
.tier("tier")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResiliencyPolicyMixinPropsstatic final classAn implementation forCfnResiliencyPolicyMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringSpecifies a high-level geographical location constraint for where your resilience policy data can be stored.default ObjectThe resiliency policy.default StringDescription of the resiliency policy.default StringThe name of the policy.getTags()Tags assigned to the resource.default StringgetTier()The tier for this resiliency policy, ranging from the highest severity (MissionCritical) to lowest (NonCritical).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataLocationConstraint
Specifies a high-level geographical location constraint for where your resilience policy data can be stored.- See Also:
-
getPolicy
The resiliency policy.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnResiliencyPolicyPropsMixin.FailurePolicyProperty>- See Also:
-
getPolicyDescription
Description of the resiliency policy.- See Also:
-
getPolicyName
The name of the policy.- See Also:
-
getTags
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 Also:
-
getTier
The tier for this resiliency policy, ranging from the highest severity (MissionCritical) to lowest (NonCritical).- See Also:
-
builder
-