Interface CfnCampaignPropsMixin.RestrictedPeriodsProperty

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

@Stability(Stable) public static interface CfnCampaignPropsMixin.RestrictedPeriodsProperty extends software.amazon.jsii.JsiiSerializable
Contains information about restricted periods.

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.connectcampaignsv2.*;
 RestrictedPeriodsProperty restrictedPeriodsProperty = RestrictedPeriodsProperty.builder()
         .restrictedPeriodList(List.of(RestrictedPeriodProperty.builder()
                 .endDate("endDate")
                 .name("name")
                 .startDate("startDate")
                 .build()))
         .build();
 

See Also: