interface RestrictedPeriodsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.RestrictedPeriodsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_RestrictedPeriodsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.RestrictedPeriodsProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.RestrictedPeriodsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » CfnCampaignPropsMixin » RestrictedPeriodsProperty |
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 { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
const restrictedPeriodsProperty: connectcampaignsv2.CfnCampaignPropsMixin.RestrictedPeriodsProperty = {
restrictedPeriodList: [{
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| restricted | IResolvable | (IResolvable | Restricted)[] | The restricted period list. |
restrictedPeriodList?
Type:
IResolvable | (IResolvable | Restricted)[]
(optional)
The restricted period list.

.NET
Go
Java
Python
TypeScript