interface RestrictedPeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ConnectCampaignsV2.CfnCampaignPropsMixin.RestrictedPeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnectcampaignsv2#CfnCampaignPropsMixin_RestrictedPeriodProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connectcampaignsv2.CfnCampaignPropsMixin.RestrictedPeriodProperty |
Python | aws_cdk.cfn_property_mixins.aws_connectcampaignsv2.CfnCampaignPropsMixin.RestrictedPeriodProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connectcampaignsv2 » 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 { aws_connectcampaignsv2 as connectcampaignsv2 } from '@aws-cdk/cfn-property-mixins';
const restrictedPeriodProperty: connectcampaignsv2.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