Struct aws_sdk_quicksight::types::RefreshSchedule
source · #[non_exhaustive]pub struct RefreshSchedule { /* private fields */ }Expand description
The refresh schedule of a dataset.
Implementations§
source§impl RefreshSchedule
impl RefreshSchedule
sourcepub fn schedule_id(&self) -> Option<&str>
pub fn schedule_id(&self) -> Option<&str>
An identifier for the refresh schedule.
sourcepub fn schedule_frequency(&self) -> Option<&RefreshFrequency>
pub fn schedule_frequency(&self) -> Option<&RefreshFrequency>
The frequency for the refresh schedule.
sourcepub fn start_after_date_time(&self) -> Option<&DateTime>
pub fn start_after_date_time(&self) -> Option<&DateTime>
Time after which the refresh schedule can be started, expressed in YYYY-MM-DDTHH:MM:SS format.
sourcepub fn refresh_type(&self) -> Option<&IngestionType>
pub fn refresh_type(&self) -> Option<&IngestionType>
The type of refresh that a datset undergoes. Valid values are as follows:
-
FULL_REFRESH: A complete refresh of a dataset. -
INCREMENTAL_REFRESH: A partial refresh of some rows of a dataset, based on the time window specified.
For more information on full and incremental refreshes, see Refreshing SPICE data in the Amazon QuickSight User Guide.
source§impl RefreshSchedule
impl RefreshSchedule
sourcepub fn builder() -> RefreshScheduleBuilder
pub fn builder() -> RefreshScheduleBuilder
Creates a new builder-style object to manufacture RefreshSchedule.
Trait Implementations§
source§impl Clone for RefreshSchedule
impl Clone for RefreshSchedule
source§fn clone(&self) -> RefreshSchedule
fn clone(&self) -> RefreshSchedule
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 RefreshSchedule
impl Debug for RefreshSchedule
source§impl PartialEq<RefreshSchedule> for RefreshSchedule
impl PartialEq<RefreshSchedule> for RefreshSchedule
source§fn eq(&self, other: &RefreshSchedule) -> bool
fn eq(&self, other: &RefreshSchedule) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RefreshSchedule
Auto Trait Implementations§
impl RefUnwindSafe for RefreshSchedule
impl Send for RefreshSchedule
impl Sync for RefreshSchedule
impl Unpin for RefreshSchedule
impl UnwindSafe for RefreshSchedule
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