Struct aws_sdk_quicksight::types::FilledMapConfiguration
source · #[non_exhaustive]pub struct FilledMapConfiguration {
pub field_wells: Option<FilledMapFieldWells>,
pub sort_configuration: Option<FilledMapSortConfiguration>,
pub legend: Option<LegendOptions>,
pub tooltip: Option<TooltipOptions>,
pub window_options: Option<GeospatialWindowOptions>,
pub map_style_options: Option<GeospatialMapStyleOptions>,
}
Expand description
The configuration for a FilledMapVisual
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.field_wells: Option<FilledMapFieldWells>
The field wells of the visual.
sort_configuration: Option<FilledMapSortConfiguration>
The sort configuration of a FilledMapVisual
.
legend: Option<LegendOptions>
The legend display setup of the visual.
tooltip: Option<TooltipOptions>
The tooltip display setup of the visual.
window_options: Option<GeospatialWindowOptions>
The window options of the filled map visual.
map_style_options: Option<GeospatialMapStyleOptions>
The map style options of the filled map visual.
Implementations§
source§impl FilledMapConfiguration
impl FilledMapConfiguration
sourcepub fn field_wells(&self) -> Option<&FilledMapFieldWells>
pub fn field_wells(&self) -> Option<&FilledMapFieldWells>
The field wells of the visual.
sourcepub fn sort_configuration(&self) -> Option<&FilledMapSortConfiguration>
pub fn sort_configuration(&self) -> Option<&FilledMapSortConfiguration>
The sort configuration of a FilledMapVisual
.
sourcepub fn legend(&self) -> Option<&LegendOptions>
pub fn legend(&self) -> Option<&LegendOptions>
The legend display setup of the visual.
sourcepub fn tooltip(&self) -> Option<&TooltipOptions>
pub fn tooltip(&self) -> Option<&TooltipOptions>
The tooltip display setup of the visual.
sourcepub fn window_options(&self) -> Option<&GeospatialWindowOptions>
pub fn window_options(&self) -> Option<&GeospatialWindowOptions>
The window options of the filled map visual.
sourcepub fn map_style_options(&self) -> Option<&GeospatialMapStyleOptions>
pub fn map_style_options(&self) -> Option<&GeospatialMapStyleOptions>
The map style options of the filled map visual.
source§impl FilledMapConfiguration
impl FilledMapConfiguration
sourcepub fn builder() -> FilledMapConfigurationBuilder
pub fn builder() -> FilledMapConfigurationBuilder
Creates a new builder-style object to manufacture FilledMapConfiguration
.
Trait Implementations§
source§impl Clone for FilledMapConfiguration
impl Clone for FilledMapConfiguration
source§fn clone(&self) -> FilledMapConfiguration
fn clone(&self) -> FilledMapConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FilledMapConfiguration
impl Debug for FilledMapConfiguration
source§impl PartialEq for FilledMapConfiguration
impl PartialEq for FilledMapConfiguration
source§fn eq(&self, other: &FilledMapConfiguration) -> bool
fn eq(&self, other: &FilledMapConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FilledMapConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for FilledMapConfiguration
impl Send for FilledMapConfiguration
impl Sync for FilledMapConfiguration
impl Unpin for FilledMapConfiguration
impl UnwindSafe for FilledMapConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.