Show / Hide Table of Contents

Interface CfnInAppTemplate.IBodyConfigProperty

Specifies the configuration of the main body text of the in-app message.

Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnInAppTemplate.IBodyConfigProperty
Syntax (vb)
Public Interface CfnInAppTemplate.IBodyConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-bodyconfig.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 bodyConfigProperty = new BodyConfigProperty {
                 Alignment = "alignment",
                 Body = "body",
                 TextColor = "textColor"
             };

Synopsis

Properties

Alignment

The text alignment of the main body text of the message.

Body

The main body text of the message.

TextColor

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

Properties

Alignment

The text alignment of the main body text 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-bodyconfig.html#cfn-pinpoint-inapptemplate-bodyconfig-alignment

Body

The main body text of the message.

string? Body { get; }
Property Value

string

Remarks

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

TextColor

The color of the body 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-bodyconfig.html#cfn-pinpoint-inapptemplate-bodyconfig-textcolor

Back to top Generated by DocFX