Interface CfnService.EffectivePolicyValuesProperty

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

@Stability(Stable) public static interface CfnService.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.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: