Show / Hide Table of Contents

Class CfnInAppTemplate.HeaderConfigProperty

Specifies the configuration and content of the header or title text of the in-app message.

Inheritance
object
CfnInAppTemplate.HeaderConfigProperty
Implements
CfnInAppTemplate.IHeaderConfigProperty
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 CfnInAppTemplate.HeaderConfigProperty : CfnInAppTemplate.IHeaderConfigProperty
Syntax (vb)
Public Class CfnInAppTemplate.HeaderConfigProperty Implements CfnInAppTemplate.IHeaderConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-headerconfig.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 headerConfigProperty = new HeaderConfigProperty {
                 Alignment = "alignment",
                 Header = "header",
                 TextColor = "textColor"
             };

Synopsis

Constructors

HeaderConfigProperty()

Specifies the configuration and content of the header or title text of the in-app message.

Properties

Alignment

The text alignment of the title of the message.

Header

The title text of the in-app message.

TextColor

The color of the title text, expressed as a hex color code (such as #000000 for black).

Constructors

HeaderConfigProperty()

Specifies the configuration and content of the header or title text of the in-app message.

public HeaderConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-headerconfig.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 headerConfigProperty = new HeaderConfigProperty {
                 Alignment = "alignment",
                 Header = "header",
                 TextColor = "textColor"
             };

Properties

Alignment

The text alignment of the title of the message.

public string? Alignment { get; set; }
Property Value

string

Remarks

Acceptable values: LEFT , CENTER , RIGHT .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-headerconfig.html#cfn-pinpoint-inapptemplate-headerconfig-alignment

Header

The title text of the in-app message.

public string? Header { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-headerconfig.html#cfn-pinpoint-inapptemplate-headerconfig-header

TextColor

The color of the title text, expressed as a hex color code (such as #000000 for black).

public string? TextColor { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-headerconfig.html#cfn-pinpoint-inapptemplate-headerconfig-textcolor

Implements

CfnInAppTemplate.IHeaderConfigProperty
Back to top Generated by DocFX