Show / Hide Table of Contents

Class CfnApplicationSettings.QuietTimeProperty

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

Inheritance
object
CfnApplicationSettings.QuietTimeProperty
Implements
CfnApplicationSettings.IQuietTimeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

Properties

End

The specific time when quiet time ends.

public string End { get; set; }
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.

public string Start { get; set; }
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

Implements

CfnApplicationSettings.IQuietTimeProperty
Back to top Generated by DocFX