Show / Hide Table of Contents

Class CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty

The link configuration of a table field URL.

Inheritance
object
CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty
Implements
CfnDashboardPropsMixin.ITableFieldLinkConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty : CfnDashboardPropsMixin.ITableFieldLinkConfigurationProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.TableFieldLinkConfigurationProperty Implements CfnDashboardPropsMixin.ITableFieldLinkConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-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.CfnPropertyMixins.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"
                             }
                         },
                         Value = "value"
                     }
                 },
                 Target = "target"
             };

Synopsis

Constructors

TableFieldLinkConfigurationProperty()

The link configuration of a table field URL.

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.

Constructors

TableFieldLinkConfigurationProperty()

The link configuration of a table field URL.

public TableFieldLinkConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-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.CfnPropertyMixins.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"
                             }
                         },
                         Value = "value"
                     }
                 },
                 Target = "target"
             };

Properties

Content

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

public object? Content { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.ITableFieldLinkContentConfigurationProperty

Target

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

public string? Target { get; set; }
Property Value

string

Remarks

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

Implements

CfnDashboardPropsMixin.ITableFieldLinkConfigurationProperty
Back to top Generated by DocFX