Interface CfnProtectConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProtectConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-25T11:29:17.654Z") @Stability(Stable) public interface CfnProtectConfigurationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnProtectConfiguration.

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.smsvoice.*;
 CfnProtectConfigurationProps cfnProtectConfigurationProps = CfnProtectConfigurationProps.builder()
         .countryRuleSet(CountryRuleSetProperty.builder()
                 .mms(List.of(CountryRuleProperty.builder()
                         .countryCode("countryCode")
                         .protectStatus("protectStatus")
                         .build()))
                 .sms(List.of(CountryRuleProperty.builder()
                         .countryCode("countryCode")
                         .protectStatus("protectStatus")
                         .build()))
                 .voice(List.of(CountryRuleProperty.builder()
                         .countryCode("countryCode")
                         .protectStatus("protectStatus")
                         .build()))
                 .build())
         .deletionProtectionEnabled(false)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: