Show / Hide Table of Contents

Class CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty

Determines the border options for a table visual.

Inheritance
object
CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty
Implements
CfnDashboardPropsMixin.IGlobalTableBorderOptionsProperty
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.GlobalTableBorderOptionsProperty : CfnDashboardPropsMixin.IGlobalTableBorderOptionsProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.GlobalTableBorderOptionsProperty Implements CfnDashboardPropsMixin.IGlobalTableBorderOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-globaltableborderoptions.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 globalTableBorderOptionsProperty = new GlobalTableBorderOptionsProperty {
                 SideSpecificBorder = new TableSideBorderOptionsProperty {
                     Bottom = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     InnerHorizontal = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     InnerVertical = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     Left = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     Right = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     Top = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     }
                 },
                 UniformBorder = new TableBorderOptionsProperty {
                     Color = "color",
                     Style = "style",
                     Thickness = 123
                 }
             };

Synopsis

Constructors

GlobalTableBorderOptionsProperty()

Determines the border options for a table visual.

Properties

SideSpecificBorder

Determines the options for side specific border.

UniformBorder

Determines the options for uniform border.

Constructors

GlobalTableBorderOptionsProperty()

Determines the border options for a table visual.

public GlobalTableBorderOptionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-globaltableborderoptions.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 globalTableBorderOptionsProperty = new GlobalTableBorderOptionsProperty {
                 SideSpecificBorder = new TableSideBorderOptionsProperty {
                     Bottom = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     InnerHorizontal = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     InnerVertical = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     Left = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     Right = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     },
                     Top = new TableBorderOptionsProperty {
                         Color = "color",
                         Style = "style",
                         Thickness = 123
                     }
                 },
                 UniformBorder = new TableBorderOptionsProperty {
                     Color = "color",
                     Style = "style",
                     Thickness = 123
                 }
             };

Properties

SideSpecificBorder

Determines the options for side specific border.

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

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.ITableSideBorderOptionsProperty

UniformBorder

Determines the options for uniform border.

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

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.ITableBorderOptionsProperty

Implements

CfnDashboardPropsMixin.IGlobalTableBorderOptionsProperty
Back to top Generated by DocFX