Struct aws_sdk_quicksight::types::RefreshSchedule
source · #[non_exhaustive]pub struct RefreshSchedule {
pub schedule_id: String,
pub schedule_frequency: Option<RefreshFrequency>,
pub start_after_date_time: Option<DateTime>,
pub refresh_type: IngestionType,
pub arn: Option<String>,
}
Expand description
The refresh schedule of a dataset.
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.schedule_id: String
An identifier for the refresh schedule.
schedule_frequency: Option<RefreshFrequency>
The frequency for the refresh schedule.
start_after_date_time: Option<DateTime>
Time after which the refresh schedule can be started, expressed in YYYY-MM-DDTHH:MM:SS
format.
refresh_type: 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.
arn: Option<String>
The Amazon Resource Name (ARN) for the refresh schedule.
Implementations§
source§impl RefreshSchedule
impl RefreshSchedule
sourcepub fn schedule_id(&self) -> &str
pub fn schedule_id(&self) -> &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) -> &IngestionType
pub fn refresh_type(&self) -> &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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RefreshSchedule
impl Debug for RefreshSchedule
source§impl PartialEq for RefreshSchedule
impl PartialEq for RefreshSchedule
impl StructuralPartialEq for RefreshSchedule
Auto Trait Implementations§
impl Freeze for RefreshSchedule
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
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