Struct aws_sdk_quicksight::types::builders::AnalysisSummaryBuilder
source · #[non_exhaustive]pub struct AnalysisSummaryBuilder { /* private fields */ }Expand description
A builder for AnalysisSummary.
Implementations§
source§impl AnalysisSummaryBuilder
impl AnalysisSummaryBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for 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) for the analysis.
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. This ID displays in the URL.
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. This ID displays in the URL.
sourcepub fn get_analysis_id(&self) -> &Option<String>
pub fn get_analysis_id(&self) -> &Option<String>
The ID of the analysis. This ID displays in the URL.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the analysis. This name is displayed in the Amazon QuickSight console.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the analysis. This name is displayed in the Amazon QuickSight console.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the analysis. This name is displayed in the Amazon QuickSight console.
sourcepub fn status(self, input: ResourceStatus) -> Self
pub fn status(self, input: ResourceStatus) -> Self
The last known status for the analysis.
sourcepub fn set_status(self, input: Option<ResourceStatus>) -> Self
pub fn set_status(self, input: Option<ResourceStatus>) -> Self
The last known status for the analysis.
sourcepub fn get_status(&self) -> &Option<ResourceStatus>
pub fn get_status(&self) -> &Option<ResourceStatus>
The last known status for 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 build(self) -> AnalysisSummary
pub fn build(self) -> AnalysisSummary
Consumes the builder and constructs a AnalysisSummary.
Trait Implementations§
source§impl Clone for AnalysisSummaryBuilder
impl Clone for AnalysisSummaryBuilder
source§fn clone(&self) -> AnalysisSummaryBuilder
fn clone(&self) -> AnalysisSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AnalysisSummaryBuilder
impl Debug for AnalysisSummaryBuilder
source§impl Default for AnalysisSummaryBuilder
impl Default for AnalysisSummaryBuilder
source§fn default() -> AnalysisSummaryBuilder
fn default() -> AnalysisSummaryBuilder
source§impl PartialEq for AnalysisSummaryBuilder
impl PartialEq for AnalysisSummaryBuilder
source§fn eq(&self, other: &AnalysisSummaryBuilder) -> bool
fn eq(&self, other: &AnalysisSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AnalysisSummaryBuilder
Auto Trait Implementations§
impl Freeze for AnalysisSummaryBuilder
impl RefUnwindSafe for AnalysisSummaryBuilder
impl Send for AnalysisSummaryBuilder
impl Sync for AnalysisSummaryBuilder
impl Unpin for AnalysisSummaryBuilder
impl UnwindSafe for AnalysisSummaryBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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