Struct aws_sdk_quicksight::types::AnalysisSummary
source · #[non_exhaustive]pub struct AnalysisSummary {
pub arn: Option<String>,
pub analysis_id: Option<String>,
pub name: Option<String>,
pub status: Option<ResourceStatus>,
pub created_time: Option<DateTime>,
pub last_updated_time: Option<DateTime>,
}
Expand description
The summary metadata that describes an analysis.
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.arn: Option<String>
The Amazon Resource Name (ARN) for the analysis.
analysis_id: Option<String>
The ID of the analysis. This ID displays in the URL.
name: Option<String>
The name of the analysis. This name is displayed in the Amazon QuickSight console.
status: Option<ResourceStatus>
The last known status for the analysis.
created_time: Option<DateTime>
The time that the analysis was created.
last_updated_time: Option<DateTime>
The time that the analysis was last updated.
Implementations§
source§impl AnalysisSummary
impl AnalysisSummary
sourcepub fn analysis_id(&self) -> Option<&str>
pub fn analysis_id(&self) -> Option<&str>
The ID of the analysis. This ID displays in the URL.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the analysis. This name is displayed in the Amazon QuickSight console.
sourcepub fn status(&self) -> Option<&ResourceStatus>
pub fn status(&self) -> Option<&ResourceStatus>
The last known status for the analysis.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time that the analysis was created.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The time that the analysis was last updated.
source§impl AnalysisSummary
impl AnalysisSummary
sourcepub fn builder() -> AnalysisSummaryBuilder
pub fn builder() -> AnalysisSummaryBuilder
Creates a new builder-style object to manufacture AnalysisSummary
.
Trait Implementations§
source§impl Clone for AnalysisSummary
impl Clone for AnalysisSummary
source§fn clone(&self) -> AnalysisSummary
fn clone(&self) -> AnalysisSummary
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 AnalysisSummary
impl Debug for AnalysisSummary
source§impl PartialEq for AnalysisSummary
impl PartialEq for AnalysisSummary
source§fn eq(&self, other: &AnalysisSummary) -> bool
fn eq(&self, other: &AnalysisSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AnalysisSummary
Auto Trait Implementations§
impl RefUnwindSafe for AnalysisSummary
impl Send for AnalysisSummary
impl Sync for AnalysisSummary
impl Unpin for AnalysisSummary
impl UnwindSafe for AnalysisSummary
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.