interface QuietTimeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnApplicationSettingsPropsMixin.QuietTimeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnApplicationSettingsPropsMixin_QuietTimeProperty |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnApplicationSettingsPropsMixin.QuietTimeProperty |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnApplicationSettingsPropsMixin.QuietTimeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnApplicationSettingsPropsMixin » 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 { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const quietTimeProperty: pinpoint_mixins.CfnApplicationSettingsPropsMixin.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
(optional)
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
(optional)
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.

.NET
Go
Java
Python
TypeScript