Show / Hide Table of Contents

Interface CfnInAppTemplate.IHeaderConfigProperty

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

Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnInAppTemplate.IHeaderConfigProperty
Syntax (vb)
Public Interface 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

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).

Properties

Alignment

The text alignment of the title of the message.

string? Alignment { get; }
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.

string? Header { get; }
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).

string? TextColor { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX