interface QuietTimeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Pinpoint.CfnCampaign.QuietTimeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnCampaign_QuietTimeProperty |
![]() | software.amazon.awscdk.services.pinpoint.CfnCampaign.QuietTimeProperty |
![]() | aws_cdk.aws_pinpoint.CfnCampaign.QuietTimeProperty |
![]() | aws-cdk-lib » aws_pinpoint » CfnCampaign » QuietTimeProperty |
Specifies the start and end times that define a time range when messages aren't sent to endpoints.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpoint as pinpoint } from 'aws-cdk-lib';
const quietTimeProperty: pinpoint.CfnCampaign.QuietTimeProperty = {
end: 'end',
start: 'start',
};
Properties
Name | Type | Description |
---|---|---|
end | string | The specific time when quiet time ends. |
start | string | The specific time when quiet time begins. |
end
Type:
string
The specific time when quiet time ends.
This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30
to represent 2:30 AM, or 14:30
to represent 2:30 PM.
start
Type:
string
The specific time when quiet time begins.
This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30
to represent 2:30 AM, or 14:30
to represent 2:30 PM.