Show / Hide Table of Contents

Interface CfnInAppTemplate.IButtonConfigProperty

Specifies the behavior of buttons that appear in an in-app message template.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-inapptemplate-buttonconfig.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 buttonConfigProperty = new ButtonConfigProperty {
    Android = new OverrideButtonConfigurationProperty {
        ButtonAction = "buttonAction",
        Link = "link"
    },
    DefaultConfig = new DefaultButtonConfigurationProperty {
        BackgroundColor = "backgroundColor",
        BorderRadius = 123,
        ButtonAction = "buttonAction",
        Link = "link",
        Text = "text",
        TextColor = "textColor"
    },
    Ios = new OverrideButtonConfigurationProperty {
        ButtonAction = "buttonAction",
        Link = "link"
    },
    Web = new OverrideButtonConfigurationProperty {
        ButtonAction = "buttonAction",
        Link = "link"
    }
};

Synopsis

Properties

Android

Optional button configuration to use for in-app messages sent to Android devices.

DefaultConfig

Specifies the default behavior of a button that appears in an in-app message.

Ios

Optional button configuration to use for in-app messages sent to iOS devices.

Web

Optional button configuration to use for in-app messages sent to web applications.

Properties

Android

Optional button configuration to use for in-app messages sent to Android devices.

virtual object Android { get; }
Property Value

System.Object

Remarks

This button configuration overrides the default button configuration.

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

DefaultConfig

Specifies the default behavior of a button that appears in an in-app message.

virtual object DefaultConfig { get; }
Property Value

System.Object

Remarks

You can optionally add button configurations that specifically apply to iOS, Android, or web browser users.

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

Ios

Optional button configuration to use for in-app messages sent to iOS devices.

virtual object Ios { get; }
Property Value

System.Object

Remarks

This button configuration overrides the default button configuration.

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

Web

Optional button configuration to use for in-app messages sent to web applications.

virtual object Web { get; }
Property Value

System.Object

Remarks

This button configuration overrides the default button configuration.

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

Back to top Generated by DocFX