Interface CfnTemplate.PanelTitleOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.PanelTitleOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.PanelTitleOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The options that determine the title styles for each small multiples panel.
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.*;
PanelTitleOptionsProperty panelTitleOptionsProperty = PanelTitleOptionsProperty.builder()
.fontConfiguration(FontConfigurationProperty.builder()
.fontColor("fontColor")
.fontDecoration("fontDecoration")
.fontFamily("fontFamily")
.fontSize(FontSizeProperty.builder()
.absolute("absolute")
.relative("relative")
.build())
.fontStyle("fontStyle")
.fontWeight(FontWeightProperty.builder()
.name("name")
.build())
.build())
.horizontalTextAlignment("horizontalTextAlignment")
.visibility("visibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.PanelTitleOptionsPropertystatic final classAn implementation forCfnTemplate.PanelTitleOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnTemplate.FontConfigurationPropertydefault StringSets the horizontal text alignment of the title within each panel.default StringDetermines whether or not panel titles are displayed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFontConfiguration
Returns union: eitherIResolvableorCfnTemplate.FontConfigurationProperty- See Also:
-
getHorizontalTextAlignment
Sets the horizontal text alignment of the title within each panel.- See Also:
-
getVisibility
Determines whether or not panel titles are displayed.- See Also:
-
builder
-