Class CfnApplicationSettings.QuietTimeProperty
Specifies the start and end times that define a time range when messages aren't sent to endpoints.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationSettings.QuietTimeProperty : CfnApplicationSettings.IQuietTimeProperty
Syntax (vb)
Public Class CfnApplicationSettings.QuietTimeProperty Implements CfnApplicationSettings.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
Constructors
| QuietTimeProperty() | Specifies the start and end times that define a time range when messages aren't sent to endpoints. |
Properties
| End | The specific time when quiet time ends. |
| Start | The specific time when quiet time begins. |
Constructors
QuietTimeProperty()
Specifies the start and end times that define a time range when messages aren't sent to endpoints.
public QuietTimeProperty()
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"
};
Properties
End
The specific time when quiet time ends.
public string End { get; set; }
Property Value
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.
public string Start { get; set; }
Property Value
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.