Struct aws_sdk_quicksight::types::builders::TopicIrBuilder
source · #[non_exhaustive]pub struct TopicIrBuilder { /* private fields */ }
Expand description
A builder for TopicIr
.
Implementations§
source§impl TopicIrBuilder
impl TopicIrBuilder
sourcepub fn metrics(self, input: TopicIrMetric) -> Self
pub fn metrics(self, input: TopicIrMetric) -> Self
Appends an item to metrics
.
To override the contents of this collection use set_metrics
.
The metrics for the TopicIR
.
sourcepub fn set_metrics(self, input: Option<Vec<TopicIrMetric>>) -> Self
pub fn set_metrics(self, input: Option<Vec<TopicIrMetric>>) -> Self
The metrics for the TopicIR
.
sourcepub fn get_metrics(&self) -> &Option<Vec<TopicIrMetric>>
pub fn get_metrics(&self) -> &Option<Vec<TopicIrMetric>>
The metrics for the TopicIR
.
sourcepub fn group_by_list(self, input: TopicIrGroupBy) -> Self
pub fn group_by_list(self, input: TopicIrGroupBy) -> Self
Appends an item to group_by_list
.
To override the contents of this collection use set_group_by_list
.
The GroupBy list for the TopicIR
.
sourcepub fn set_group_by_list(self, input: Option<Vec<TopicIrGroupBy>>) -> Self
pub fn set_group_by_list(self, input: Option<Vec<TopicIrGroupBy>>) -> Self
The GroupBy list for the TopicIR
.
sourcepub fn get_group_by_list(&self) -> &Option<Vec<TopicIrGroupBy>>
pub fn get_group_by_list(&self) -> &Option<Vec<TopicIrGroupBy>>
The GroupBy list for the TopicIR
.
sourcepub fn filters(self, input: Vec<TopicIrFilterOption>) -> Self
pub fn filters(self, input: Vec<TopicIrFilterOption>) -> Self
Appends an item to filters
.
To override the contents of this collection use set_filters
.
The filters for the TopicIR
.
sourcepub fn set_filters(self, input: Option<Vec<Vec<TopicIrFilterOption>>>) -> Self
pub fn set_filters(self, input: Option<Vec<Vec<TopicIrFilterOption>>>) -> Self
The filters for the TopicIR
.
sourcepub fn get_filters(&self) -> &Option<Vec<Vec<TopicIrFilterOption>>>
pub fn get_filters(&self) -> &Option<Vec<Vec<TopicIrFilterOption>>>
The filters for the TopicIR
.
sourcepub fn sort(self, input: TopicSortClause) -> Self
pub fn sort(self, input: TopicSortClause) -> Self
The sort for the TopicIR
.
sourcepub fn set_sort(self, input: Option<TopicSortClause>) -> Self
pub fn set_sort(self, input: Option<TopicSortClause>) -> Self
The sort for the TopicIR
.
sourcepub fn get_sort(&self) -> &Option<TopicSortClause>
pub fn get_sort(&self) -> &Option<TopicSortClause>
The sort for the TopicIR
.
sourcepub fn contribution_analysis(self, input: TopicIrContributionAnalysis) -> Self
pub fn contribution_analysis(self, input: TopicIrContributionAnalysis) -> Self
The contribution analysis for the TopicIR
.
sourcepub fn set_contribution_analysis(
self,
input: Option<TopicIrContributionAnalysis>,
) -> Self
pub fn set_contribution_analysis( self, input: Option<TopicIrContributionAnalysis>, ) -> Self
The contribution analysis for the TopicIR
.
sourcepub fn get_contribution_analysis(&self) -> &Option<TopicIrContributionAnalysis>
pub fn get_contribution_analysis(&self) -> &Option<TopicIrContributionAnalysis>
The contribution analysis for the TopicIR
.
sourcepub fn visual(self, input: VisualOptions) -> Self
pub fn visual(self, input: VisualOptions) -> Self
The visual for the TopicIR
.
sourcepub fn set_visual(self, input: Option<VisualOptions>) -> Self
pub fn set_visual(self, input: Option<VisualOptions>) -> Self
The visual for the TopicIR
.
sourcepub fn get_visual(&self) -> &Option<VisualOptions>
pub fn get_visual(&self) -> &Option<VisualOptions>
The visual for the TopicIR
.
Trait Implementations§
source§impl Clone for TopicIrBuilder
impl Clone for TopicIrBuilder
source§fn clone(&self) -> TopicIrBuilder
fn clone(&self) -> TopicIrBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TopicIrBuilder
impl Debug for TopicIrBuilder
source§impl Default for TopicIrBuilder
impl Default for TopicIrBuilder
source§fn default() -> TopicIrBuilder
fn default() -> TopicIrBuilder
source§impl PartialEq for TopicIrBuilder
impl PartialEq for TopicIrBuilder
impl StructuralPartialEq for TopicIrBuilder
Auto Trait Implementations§
impl Freeze for TopicIrBuilder
impl RefUnwindSafe for TopicIrBuilder
impl Send for TopicIrBuilder
impl Sync for TopicIrBuilder
impl Unpin for TopicIrBuilder
impl UnwindSafe for TopicIrBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more