Class CfnTemplatePropsMixin.WordCloudOptionsProperty
The word cloud options for a word cloud visual.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.WordCloudOptionsProperty : CfnTemplatePropsMixin.IWordCloudOptionsProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.WordCloudOptionsProperty Implements CfnTemplatePropsMixin.IWordCloudOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var wordCloudOptionsProperty = new WordCloudOptionsProperty {
CloudLayout = "cloudLayout",
MaximumStringLength = 123,
WordCasing = "wordCasing",
WordOrientation = "wordOrientation",
WordPadding = "wordPadding",
WordScaling = "wordScaling"
};
Synopsis
Constructors
| WordCloudOptionsProperty() | The word cloud options for a word cloud visual. |
Properties
| CloudLayout | The cloud layout options (fluid, normal) of a word cloud. |
| MaximumStringLength | The length limit of each word from 1-100. |
| WordCasing | The word casing options (lower_case, existing_case) for the words in a word cloud. |
| WordOrientation | The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud. |
| WordPadding | The word padding options (none, small, medium, large) for the words in a word cloud. |
| WordScaling | The word scaling options (emphasize, normal) for the words in a word cloud. |
Constructors
WordCloudOptionsProperty()
The word cloud options for a word cloud visual.
public WordCloudOptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;
var wordCloudOptionsProperty = new WordCloudOptionsProperty {
CloudLayout = "cloudLayout",
MaximumStringLength = 123,
WordCasing = "wordCasing",
WordOrientation = "wordOrientation",
WordPadding = "wordPadding",
WordScaling = "wordScaling"
};
Properties
CloudLayout
The cloud layout options (fluid, normal) of a word cloud.
public string? CloudLayout { get; set; }
Property Value
Remarks
MaximumStringLength
The length limit of each word from 1-100.
public double? MaximumStringLength { get; set; }
Property Value
Remarks
WordCasing
The word casing options (lower_case, existing_case) for the words in a word cloud.
public string? WordCasing { get; set; }
Property Value
Remarks
WordOrientation
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
public string? WordOrientation { get; set; }
Property Value
Remarks
WordPadding
The word padding options (none, small, medium, large) for the words in a word cloud.
public string? WordPadding { get; set; }
Property Value
Remarks
WordScaling
The word scaling options (emphasize, normal) for the words in a word cloud.
public string? WordScaling { get; set; }