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 IQuietTimeProperty
Syntax (vb)
Public Interface IQuietTimeProperty
Remarks
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
System.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.
Start
The specific time when quiet time begins.
string Start { get; }
Property Value
System.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.