interface RestrictedPeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ConnectCampaignsV2.Mixins.CfnCampaignPropsMixin.RestrictedPeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnectcampaignsv2/mixins#CfnCampaignPropsMixin_RestrictedPeriodProperty |
Java | software.amazon.awscdk.mixins.preview.services.connectcampaignsv2.mixins.CfnCampaignPropsMixin.RestrictedPeriodProperty |
Python | aws_cdk.mixins_preview.aws_connectcampaignsv2.mixins.CfnCampaignPropsMixin.RestrictedPeriodProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connectcampaignsv2 » mixins » CfnCampaignPropsMixin » RestrictedPeriodProperty |
Contains information about a restricted period.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connectcampaignsv2_mixins } from '@aws-cdk/mixins-preview/aws-connectcampaignsv2';
const restrictedPeriodProperty: connectcampaignsv2_mixins.CfnCampaignPropsMixin.RestrictedPeriodProperty = {
endDate: 'endDate',
name: 'name',
startDate: 'startDate',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end date of the restricted period. |
| name? | string | The name of the restricted period. |
| start | string | The start date of the restricted period. |
endDate?
Type:
string
(optional)
The end date of the restricted period.
name?
Type:
string
(optional)
The name of the restricted period.
startDate?
Type:
string
(optional)
The start date of the restricted period.

.NET
Go
Java
Python
TypeScript