Show / Hide Table of Contents

Interface CfnApplicationSettings.IQuietTimeProperty

Specifies the start and end times that define a time range when messages aren't sent to endpoints.

Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnApplicationSettings.IQuietTimeProperty
Syntax (vb)
Public Interface CfnApplicationSettings.IQuietTimeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var quietTimeProperty = new QuietTimeProperty {
                 End = "end",
                 Start = "start"
             };

Synopsis

Properties

End

The specific time when quiet time ends.

Start

The specific time when quiet time begins.

Properties

End

The specific time when quiet time ends.

string End { get; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-end

Start

The specific time when quiet time begins.

string Start { get; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-applicationsettings-quiettime.html#cfn-pinpoint-applicationsettings-quiettime-start

Back to top Generated by DocFX