Interface CfnAnalysis.TableSideBorderOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnalysis.TableSideBorderOptionsProperty.Jsii$Proxy
Enclosing class:
CfnAnalysis

@Stability(Stable) public static interface CfnAnalysis.TableSideBorderOptionsProperty extends software.amazon.jsii.JsiiSerializable
The side border options for a table.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 TableSideBorderOptionsProperty tableSideBorderOptionsProperty = TableSideBorderOptionsProperty.builder()
         .bottom(TableBorderOptionsProperty.builder()
                 .color("color")
                 .style("style")
                 .thickness(123)
                 .build())
         .innerHorizontal(TableBorderOptionsProperty.builder()
                 .color("color")
                 .style("style")
                 .thickness(123)
                 .build())
         .innerVertical(TableBorderOptionsProperty.builder()
                 .color("color")
                 .style("style")
                 .thickness(123)
                 .build())
         .left(TableBorderOptionsProperty.builder()
                 .color("color")
                 .style("style")
                 .thickness(123)
                 .build())
         .right(TableBorderOptionsProperty.builder()
                 .color("color")
                 .style("style")
                 .thickness(123)
                 .build())
         .top(TableBorderOptionsProperty.builder()
                 .color("color")
                 .style("style")
                 .thickness(123)
                 .build())
         .build();
 

See Also: