Interface CfnDashboard.WordCloudOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.WordCloudOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.WordCloudOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The word cloud options for a word cloud visual.
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.*;
WordCloudOptionsProperty wordCloudOptionsProperty = WordCloudOptionsProperty.builder()
.cloudLayout("cloudLayout")
.maximumStringLength(123)
.wordCasing("wordCasing")
.wordOrientation("wordOrientation")
.wordPadding("wordPadding")
.wordScaling("wordScaling")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.WordCloudOptionsPropertystatic final classAn implementation forCfnDashboard.WordCloudOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe cloud layout options (fluid, normal) of a word cloud.default NumberThe length limit of each word from 1-100.default StringThe word casing options (lower_case, existing_case) for the words in a word cloud.default StringThe word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.default StringThe word padding options (none, small, medium, large) for the words in a word cloud.default StringThe word scaling options (emphasize, normal) for the words in a word cloud.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudLayout
The cloud layout options (fluid, normal) of a word cloud.- See Also:
-
getMaximumStringLength
The length limit of each word from 1-100.- See Also:
-
getWordCasing
The word casing options (lower_case, existing_case) for the words in a word cloud.- See Also:
-
getWordOrientation
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.- See Also:
-
getWordPadding
The word padding options (none, small, medium, large) for the words in a word cloud.- See Also:
-
getWordScaling
The word scaling options (emphasize, normal) for the words in a word cloud.- See Also:
-
builder
-