Interface CfnServicePropsMixin.EffectivePolicyValuesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServicePropsMixin.EffectivePolicyValuesProperty.Jsii$Proxy
Enclosing class:
CfnServicePropsMixin

@Stability(Stable) public static interface CfnServicePropsMixin.EffectivePolicyValuesProperty extends software.amazon.jsii.JsiiSerializable
Effective policy values computed from the associated policy.

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.resiliencehubv2.*;
 EffectivePolicyValuesProperty effectivePolicyValuesProperty = EffectivePolicyValuesProperty.builder()
         .availabilitySlo(SloSourceProperty.builder()
                 .policyName("policyName")
                 .value(123)
                 .build())
         .multiAzDrApproach(DisasterRecoverySourceProperty.builder()
                 .policyName("policyName")
                 .value("value")
                 .build())
         .multiAzRpo(TargetSourceProperty.builder()
                 .policyName("policyName")
                 .value(123)
                 .build())
         .multiAzRto(TargetSourceProperty.builder()
                 .policyName("policyName")
                 .value(123)
                 .build())
         .multiRegionDrApproach(DisasterRecoverySourceProperty.builder()
                 .policyName("policyName")
                 .value("value")
                 .build())
         .multiRegionRpo(TargetSourceProperty.builder()
                 .policyName("policyName")
                 .value(123)
                 .build())
         .multiRegionRto(TargetSourceProperty.builder()
                 .policyName("policyName")
                 .value(123)
                 .build())
         .build();
 

See Also: