Show / Hide Table of Contents

Interface CfnCampaign.IInAppMessageBodyConfigProperty

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

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-campaign-inappmessagebodyconfig.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 inAppMessageBodyConfigProperty = new InAppMessageBodyConfigProperty {
                 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 string consisting of 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-campaign-inappmessagebodyconfig.html#cfn-pinpoint-campaign-inappmessagebodyconfig-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-campaign-inappmessagebodyconfig.html#cfn-pinpoint-campaign-inappmessagebodyconfig-body

TextColor

The color of the body text, expressed as a string consisting of 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-campaign-inappmessagebodyconfig.html#cfn-pinpoint-campaign-inappmessagebodyconfig-textcolor

Back to top Generated by DocFX