Struct aws_sdk_quicksight::types::builders::AnalysisBuilder
source · #[non_exhaustive]pub struct AnalysisBuilder { /* private fields */ }Expand description
A builder for Analysis.
Implementations§
source§impl AnalysisBuilder
impl AnalysisBuilder
sourcepub fn analysis_id(self, input: impl Into<String>) -> Self
pub fn analysis_id(self, input: impl Into<String>) -> Self
The ID of the analysis.
sourcepub fn set_analysis_id(self, input: Option<String>) -> Self
pub fn set_analysis_id(self, input: Option<String>) -> Self
The ID of the analysis.
sourcepub fn get_analysis_id(&self) -> &Option<String>
pub fn get_analysis_id(&self) -> &Option<String>
The ID of the analysis.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the analysis.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the analysis.
sourcepub fn status(self, input: ResourceStatus) -> Self
pub fn status(self, input: ResourceStatus) -> Self
Status associated with the analysis.
sourcepub fn set_status(self, input: Option<ResourceStatus>) -> Self
pub fn set_status(self, input: Option<ResourceStatus>) -> Self
Status associated with the analysis.
sourcepub fn get_status(&self) -> &Option<ResourceStatus>
pub fn get_status(&self) -> &Option<ResourceStatus>
Status associated with the analysis.
sourcepub fn errors(self, input: AnalysisError) -> Self
pub fn errors(self, input: AnalysisError) -> Self
Appends an item to errors.
To override the contents of this collection use set_errors.
Errors associated with the analysis.
sourcepub fn set_errors(self, input: Option<Vec<AnalysisError>>) -> Self
pub fn set_errors(self, input: Option<Vec<AnalysisError>>) -> Self
Errors associated with the analysis.
sourcepub fn get_errors(&self) -> &Option<Vec<AnalysisError>>
pub fn get_errors(&self) -> &Option<Vec<AnalysisError>>
Errors associated with the analysis.
sourcepub fn data_set_arns(self, input: impl Into<String>) -> Self
pub fn data_set_arns(self, input: impl Into<String>) -> Self
Appends an item to data_set_arns.
To override the contents of this collection use set_data_set_arns.
The ARNs of the datasets of the analysis.
sourcepub fn set_data_set_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_data_set_arns(self, input: Option<Vec<String>>) -> Self
The ARNs of the datasets of the analysis.
sourcepub fn get_data_set_arns(&self) -> &Option<Vec<String>>
pub fn get_data_set_arns(&self) -> &Option<Vec<String>>
The ARNs of the datasets of the analysis.
sourcepub fn set_theme_arn(self, input: Option<String>) -> Self
pub fn set_theme_arn(self, input: Option<String>) -> Self
The ARN of the theme of the analysis.
sourcepub fn get_theme_arn(&self) -> &Option<String>
pub fn get_theme_arn(&self) -> &Option<String>
The ARN of the theme of the analysis.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
The time that the analysis was created.
sourcepub fn set_created_time(self, input: Option<DateTime>) -> Self
pub fn set_created_time(self, input: Option<DateTime>) -> Self
The time that the analysis was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
The time that the analysis was created.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The time that the analysis was last updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The time that the analysis was last updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
The time that the analysis was last updated.
sourcepub fn sheets(self, input: Sheet) -> Self
pub fn sheets(self, input: Sheet) -> Self
Appends an item to sheets.
To override the contents of this collection use set_sheets.
A list of the associated sheets with the unique identifier and name of each sheet.
sourcepub fn set_sheets(self, input: Option<Vec<Sheet>>) -> Self
pub fn set_sheets(self, input: Option<Vec<Sheet>>) -> Self
A list of the associated sheets with the unique identifier and name of each sheet.
sourcepub fn get_sheets(&self) -> &Option<Vec<Sheet>>
pub fn get_sheets(&self) -> &Option<Vec<Sheet>>
A list of the associated sheets with the unique identifier and name of each sheet.
Trait Implementations§
source§impl Clone for AnalysisBuilder
impl Clone for AnalysisBuilder
source§fn clone(&self) -> AnalysisBuilder
fn clone(&self) -> AnalysisBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AnalysisBuilder
impl Debug for AnalysisBuilder
source§impl Default for AnalysisBuilder
impl Default for AnalysisBuilder
source§fn default() -> AnalysisBuilder
fn default() -> AnalysisBuilder
source§impl PartialEq for AnalysisBuilder
impl PartialEq for AnalysisBuilder
source§fn eq(&self, other: &AnalysisBuilder) -> bool
fn eq(&self, other: &AnalysisBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AnalysisBuilder
Auto Trait Implementations§
impl Freeze for AnalysisBuilder
impl RefUnwindSafe for AnalysisBuilder
impl Send for AnalysisBuilder
impl Sync for AnalysisBuilder
impl Unpin for AnalysisBuilder
impl UnwindSafe for AnalysisBuilder
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> 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