Interface CfnCampaign.RestrictedPeriodsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.RestrictedPeriodsProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.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.services.connectcampaignsv2.*;
RestrictedPeriodsProperty restrictedPeriodsProperty = RestrictedPeriodsProperty.builder()
.restrictedPeriodList(List.of(RestrictedPeriodProperty.builder()
.endDate("endDate")
.startDate("startDate")
// the properties below are optional
.name("name")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCampaign.RestrictedPeriodsPropertystatic final classAn implementation forCfnCampaign.RestrictedPeriodsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRestrictedPeriodList
The restricted period list.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCampaign.RestrictedPeriodProperty>- See Also:
-
builder
-