package awsquicksight // The URL content (text, icon) for the table link configuration. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // tableFieldLinkContentConfigurationProperty := &TableFieldLinkContentConfigurationProperty{ // CustomIconContent: &TableFieldCustomIconContentProperty{ // Icon: jsii.String("icon"), // }, // CustomTextContent: &TableFieldCustomTextContentProperty{ // FontConfiguration: &FontConfigurationProperty{ // FontColor: jsii.String("fontColor"), // FontDecoration: jsii.String("fontDecoration"), // FontSize: &FontSizeProperty{ // Relative: jsii.String("relative"), // }, // FontStyle: jsii.String("fontStyle"), // FontWeight: &FontWeightProperty{ // Name: jsii.String("name"), // }, // }, // // // the properties below are optional // Value: jsii.String("value"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldlinkcontentconfiguration.html // type CfnDashboard_TableFieldLinkContentConfigurationProperty struct { // The custom icon content for the table link content configuration. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldlinkcontentconfiguration.html#cfn-quicksight-dashboard-tablefieldlinkcontentconfiguration-customiconcontent // CustomIconContent interface{} `field:"optional" json:"customIconContent" yaml:"customIconContent"` // The custom text content (value, font configuration) for the table link content configuration. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tablefieldlinkcontentconfiguration.html#cfn-quicksight-dashboard-tablefieldlinkcontentconfiguration-customtextcontent // CustomTextContent interface{} `field:"optional" json:"customTextContent" yaml:"customTextContent"` }