interface WordCloudOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.WordCloudOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_WordCloudOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDashboard.WordCloudOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnDashboard.WordCloudOptionsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDashboard » WordCloudOptionsProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const wordCloudOptionsProperty: quicksight.CfnDashboard.WordCloudOptionsProperty = {
cloudLayout: 'cloudLayout',
maximumStringLength: 123,
wordCasing: 'wordCasing',
wordOrientation: 'wordOrientation',
wordPadding: 'wordPadding',
wordScaling: 'wordScaling',
};
Properties
Name | Type | Description |
---|---|---|
cloud | string | The cloud layout options (fluid, normal) of a word cloud. |
maximum | number | The length limit of each word from 1-100. |
word | string | The word casing options (lower_case, existing_case) for the words in a word cloud. |
word | string | The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud. |
word | string | The word padding options (none, small, medium, large) for the words in a word cloud. |
word | string | The word scaling options (emphasize, normal) for the words in a word cloud. |
cloudLayout?
Type:
string
(optional)
The cloud layout options (fluid, normal) of a word cloud.
maximumStringLength?
Type:
number
(optional)
The length limit of each word from 1-100.
wordCasing?
Type:
string
(optional)
The word casing options (lower_case, existing_case) for the words in a word cloud.
wordOrientation?
Type:
string
(optional)
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
wordPadding?
Type:
string
(optional)
The word padding options (none, small, medium, large) for the words in a word cloud.
wordScaling?
Type:
string
(optional)
The word scaling options (emphasize, normal) for the words in a word cloud.