Struct aws_sdk_quicksight::types::WordCloudOptions
source · #[non_exhaustive]pub struct WordCloudOptions {
pub word_orientation: Option<WordCloudWordOrientation>,
pub word_scaling: Option<WordCloudWordScaling>,
pub cloud_layout: Option<WordCloudCloudLayout>,
pub word_casing: Option<WordCloudWordCasing>,
pub word_padding: Option<WordCloudWordPadding>,
pub maximum_string_length: Option<i32>,
}
Expand description
The word cloud options for a word cloud visual.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.word_orientation: Option<WordCloudWordOrientation>
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
word_scaling: Option<WordCloudWordScaling>
The word scaling options (emphasize, normal) for the words in a word cloud.
cloud_layout: Option<WordCloudCloudLayout>
The cloud layout options (fluid, normal) of a word cloud.
word_casing: Option<WordCloudWordCasing>
The word casing options (lower_case, existing_case) for the words in a word cloud.
word_padding: Option<WordCloudWordPadding>
The word padding options (none, small, medium, large) for the words in a word cloud.
maximum_string_length: Option<i32>
The length limit of each word from 1-100.
Implementations§
source§impl WordCloudOptions
impl WordCloudOptions
sourcepub fn word_orientation(&self) -> Option<&WordCloudWordOrientation>
pub fn word_orientation(&self) -> Option<&WordCloudWordOrientation>
The word orientation options (horizontal, horizontal_and_vertical) for the words in a word cloud.
sourcepub fn word_scaling(&self) -> Option<&WordCloudWordScaling>
pub fn word_scaling(&self) -> Option<&WordCloudWordScaling>
The word scaling options (emphasize, normal) for the words in a word cloud.
sourcepub fn cloud_layout(&self) -> Option<&WordCloudCloudLayout>
pub fn cloud_layout(&self) -> Option<&WordCloudCloudLayout>
The cloud layout options (fluid, normal) of a word cloud.
sourcepub fn word_casing(&self) -> Option<&WordCloudWordCasing>
pub fn word_casing(&self) -> Option<&WordCloudWordCasing>
The word casing options (lower_case, existing_case) for the words in a word cloud.
sourcepub fn word_padding(&self) -> Option<&WordCloudWordPadding>
pub fn word_padding(&self) -> Option<&WordCloudWordPadding>
The word padding options (none, small, medium, large) for the words in a word cloud.
sourcepub fn maximum_string_length(&self) -> Option<i32>
pub fn maximum_string_length(&self) -> Option<i32>
The length limit of each word from 1-100.
source§impl WordCloudOptions
impl WordCloudOptions
sourcepub fn builder() -> WordCloudOptionsBuilder
pub fn builder() -> WordCloudOptionsBuilder
Creates a new builder-style object to manufacture WordCloudOptions
.
Trait Implementations§
source§impl Clone for WordCloudOptions
impl Clone for WordCloudOptions
source§fn clone(&self) -> WordCloudOptions
fn clone(&self) -> WordCloudOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for WordCloudOptions
impl Debug for WordCloudOptions
source§impl PartialEq for WordCloudOptions
impl PartialEq for WordCloudOptions
source§fn eq(&self, other: &WordCloudOptions) -> bool
fn eq(&self, other: &WordCloudOptions) -> bool
self
and other
values to be equal, and is used
by ==
.