aws-cdk-lib.aws_pinpoint.CfnCampaign.QuietTimeProperty

interface QuietTimeProperty

LanguageType name
.NETAmazon.CDK.AWS.Pinpoint.CfnCampaign.QuietTimeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#CfnCampaign_QuietTimeProperty
Javasoftware.amazon.awscdk.services.pinpoint.CfnCampaign.QuietTimeProperty
Pythonaws_cdk.aws_pinpoint.CfnCampaign.QuietTimeProperty
TypeScript 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

NameTypeDescription
endstringThe specific time when quiet time ends.
startstringThe 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.