Struct aws_sdk_quicksight::types::DashboardVersion
source · #[non_exhaustive]pub struct DashboardVersion {
pub created_time: Option<DateTime>,
pub errors: Option<Vec<DashboardError>>,
pub version_number: Option<i64>,
pub status: Option<ResourceStatus>,
pub arn: Option<String>,
pub source_entity_arn: Option<String>,
pub data_set_arns: Option<Vec<String>>,
pub description: Option<String>,
pub theme_arn: Option<String>,
pub sheets: Option<Vec<Sheet>>,
}
Expand description
Dashboard version.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.created_time: Option<DateTime>
The time that this dashboard version was created.
errors: Option<Vec<DashboardError>>
Errors associated with this dashboard version.
version_number: Option<i64>
Version number for this version of the dashboard.
status: Option<ResourceStatus>
The HTTP status of the request.
arn: Option<String>
The Amazon Resource Name (ARN) of the resource.
source_entity_arn: Option<String>
Source entity ARN.
data_set_arns: Option<Vec<String>>
The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard.
description: Option<String>
Description.
theme_arn: Option<String>
The ARN of the theme associated with a version of the dashboard.
sheets: Option<Vec<Sheet>>
A list of the associated sheets with the unique identifier and name of each sheet.
Implementations§
source§impl DashboardVersion
impl DashboardVersion
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time that this dashboard version was created.
sourcepub fn errors(&self) -> &[DashboardError]
pub fn errors(&self) -> &[DashboardError]
Errors associated with this dashboard version.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .errors.is_none()
.
sourcepub fn version_number(&self) -> Option<i64>
pub fn version_number(&self) -> Option<i64>
Version number for this version of the dashboard.
sourcepub fn status(&self) -> Option<&ResourceStatus>
pub fn status(&self) -> Option<&ResourceStatus>
The HTTP status of the request.
sourcepub fn source_entity_arn(&self) -> Option<&str>
pub fn source_entity_arn(&self) -> Option<&str>
Source entity ARN.
sourcepub fn data_set_arns(&self) -> &[String]
pub fn data_set_arns(&self) -> &[String]
The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .data_set_arns.is_none()
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description.
source§impl DashboardVersion
impl DashboardVersion
sourcepub fn builder() -> DashboardVersionBuilder
pub fn builder() -> DashboardVersionBuilder
Creates a new builder-style object to manufacture DashboardVersion
.
Trait Implementations§
source§impl Clone for DashboardVersion
impl Clone for DashboardVersion
source§fn clone(&self) -> DashboardVersion
fn clone(&self) -> DashboardVersion
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DashboardVersion
impl Debug for DashboardVersion
source§impl PartialEq for DashboardVersion
impl PartialEq for DashboardVersion
impl StructuralPartialEq for DashboardVersion
Auto Trait Implementations§
impl Freeze for DashboardVersion
impl RefUnwindSafe for DashboardVersion
impl Send for DashboardVersion
impl Sync for DashboardVersion
impl Unpin for DashboardVersion
impl UnwindSafe for DashboardVersion
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