Show / Hide Table of Contents

Interface CfnTemplate.ITableFieldLinkConfigurationProperty

The link configuration of a table field URL.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTemplate.ITableFieldLinkConfigurationProperty
Syntax (vb)
Public Interface CfnTemplate.ITableFieldLinkConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldlinkconfiguration.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.QuickSight;

             var tableFieldLinkConfigurationProperty = new TableFieldLinkConfigurationProperty {
                 Content = new TableFieldLinkContentConfigurationProperty {
                     CustomIconContent = new TableFieldCustomIconContentProperty {
                         Icon = "icon"
                     },
                     CustomTextContent = new TableFieldCustomTextContentProperty {
                         FontConfiguration = new FontConfigurationProperty {
                             FontColor = "fontColor",
                             FontDecoration = "fontDecoration",
                             FontFamily = "fontFamily",
                             FontSize = new FontSizeProperty {
                                 Absolute = "absolute",
                                 Relative = "relative"
                             },
                             FontStyle = "fontStyle",
                             FontWeight = new FontWeightProperty {
                                 Name = "name"
                             }
                         },

                         // the properties below are optional
                         Value = "value"
                     }
                 },
                 Target = "target"
             };

Synopsis

Properties

Content

The URL content (text, icon) for the table link configuration.

Target

The URL target (new tab, new window, same tab) for the table link configuration.

Properties

Content

The URL content (text, icon) for the table link configuration.

object Content { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldlinkconfiguration.html#cfn-quicksight-template-tablefieldlinkconfiguration-content

Target

The URL target (new tab, new window, same tab) for the table link configuration.

string Target { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablefieldlinkconfiguration.html#cfn-quicksight-template-tablefieldlinkconfiguration-target

Back to top Generated by DocFX