Interface CfnTemplate.TableSideBorderOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TableSideBorderOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.TableSideBorderOptionsPropertystatic final classAn implementation forCfnTemplate.TableSideBorderOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe table border options of the bottom border.default ObjectThe table border options of the inner horizontal border.default ObjectThe table border options of the inner vertical border.default ObjectgetLeft()The table border options of the left border.default ObjectgetRight()The table border options of the right border.default ObjectgetTop()The table border options of the top border.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBottom
The table border options of the bottom border.Returns union: either
IResolvableorCfnTemplate.TableBorderOptionsProperty- See Also:
-
getInnerHorizontal
The table border options of the inner horizontal border.Returns union: either
IResolvableorCfnTemplate.TableBorderOptionsProperty- See Also:
-
getInnerVertical
The table border options of the inner vertical border.Returns union: either
IResolvableorCfnTemplate.TableBorderOptionsProperty- See Also:
-
getLeft
The table border options of the left border.Returns union: either
IResolvableorCfnTemplate.TableBorderOptionsProperty- See Also:
-
getRight
The table border options of the right border.Returns union: either
IResolvableorCfnTemplate.TableBorderOptionsProperty- See Also:
-
getTop
The table border options of the top border.Returns union: either
IResolvableorCfnTemplate.TableBorderOptionsProperty- See Also:
-
builder
-