interface QuietTimeProperty
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Pinpoint.CfnApplicationSettings.QuietTimeProperty |
![]() | software.amazon.awscdk.services.pinpoint.CfnApplicationSettings.QuietTimeProperty |
![]() | aws_cdk.aws_pinpoint.CfnApplicationSettings.QuietTimeProperty |
![]() | @aws-cdk/aws-pinpoint » CfnApplicationSettings » 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 * as pinpoint from '@aws-cdk/aws-pinpoint';
const quietTimeProperty: pinpoint.CfnApplicationSettings.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.