interface QuietTimeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pinpoint.CfnApplicationSettingsPropsMixin.QuietTimeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpoint#CfnApplicationSettingsPropsMixin_QuietTimeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpoint.CfnApplicationSettingsPropsMixin.QuietTimeProperty |
Python | aws_cdk.cfn_property_mixins.aws_pinpoint.CfnApplicationSettingsPropsMixin.QuietTimeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpoint » 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 { aws_pinpoint as pinpoint } from '@aws-cdk/cfn-property-mixins';
const quietTimeProperty: pinpoint.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