Struct aws_sdk_quicksight::types::builders::DashboardBuilder
source · #[non_exhaustive]pub struct DashboardBuilder { /* private fields */ }Expand description
A builder for Dashboard.
Implementations§
source§impl DashboardBuilder
impl DashboardBuilder
sourcepub fn dashboard_id(self, input: impl Into<String>) -> Self
pub fn dashboard_id(self, input: impl Into<String>) -> Self
Dashboard ID.
sourcepub fn set_dashboard_id(self, input: Option<String>) -> Self
pub fn set_dashboard_id(self, input: Option<String>) -> Self
Dashboard ID.
sourcepub fn get_dashboard_id(&self) -> &Option<String>
pub fn get_dashboard_id(&self) -> &Option<String>
Dashboard ID.
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 resource.
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 resource.
sourcepub fn version(self, input: DashboardVersion) -> Self
pub fn version(self, input: DashboardVersion) -> Self
Version.
sourcepub fn set_version(self, input: Option<DashboardVersion>) -> Self
pub fn set_version(self, input: Option<DashboardVersion>) -> Self
Version.
sourcepub fn get_version(&self) -> &Option<DashboardVersion>
pub fn get_version(&self) -> &Option<DashboardVersion>
Version.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
The time that this dashboard 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 this dashboard was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
The time that this dashboard was created.
sourcepub fn last_published_time(self, input: DateTime) -> Self
pub fn last_published_time(self, input: DateTime) -> Self
The last time that this dashboard was published.
sourcepub fn set_last_published_time(self, input: Option<DateTime>) -> Self
pub fn set_last_published_time(self, input: Option<DateTime>) -> Self
The last time that this dashboard was published.
sourcepub fn get_last_published_time(&self) -> &Option<DateTime>
pub fn get_last_published_time(&self) -> &Option<DateTime>
The last time that this dashboard was published.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The last time that this dashboard was updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The last time that this dashboard was updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
The last time that this dashboard was updated.
sourcepub fn link_entities(self, input: impl Into<String>) -> Self
pub fn link_entities(self, input: impl Into<String>) -> Self
Appends an item to link_entities.
To override the contents of this collection use set_link_entities.
A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
sourcepub fn set_link_entities(self, input: Option<Vec<String>>) -> Self
pub fn set_link_entities(self, input: Option<Vec<String>>) -> Self
A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
sourcepub fn get_link_entities(&self) -> &Option<Vec<String>>
pub fn get_link_entities(&self) -> &Option<Vec<String>>
A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.
Trait Implementations§
source§impl Clone for DashboardBuilder
impl Clone for DashboardBuilder
source§fn clone(&self) -> DashboardBuilder
fn clone(&self) -> DashboardBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DashboardBuilder
impl Debug for DashboardBuilder
source§impl Default for DashboardBuilder
impl Default for DashboardBuilder
source§fn default() -> DashboardBuilder
fn default() -> DashboardBuilder
source§impl PartialEq for DashboardBuilder
impl PartialEq for DashboardBuilder
source§fn eq(&self, other: &DashboardBuilder) -> bool
fn eq(&self, other: &DashboardBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DashboardBuilder
Auto Trait Implementations§
impl Freeze for DashboardBuilder
impl RefUnwindSafe for DashboardBuilder
impl Send for DashboardBuilder
impl Sync for DashboardBuilder
impl Unpin for DashboardBuilder
impl UnwindSafe for DashboardBuilder
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