Struct aws_sdk_quicksight::types::RefreshFrequency
source · #[non_exhaustive]pub struct RefreshFrequency {
pub interval: RefreshInterval,
pub refresh_on_day: Option<ScheduleRefreshOnEntity>,
pub timezone: Option<String>,
pub time_of_the_day: Option<String>,
}
Expand description
Specifies the interval between each scheduled refresh 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.interval: RefreshInterval
The interval between scheduled refreshes. Valid values are as follows:
-
MINUTE15
: The dataset refreshes every 15 minutes. This value is only supported for incremental refreshes. This interval can only be used for one schedule per dataset. -
MINUTE30
:The dataset refreshes every 30 minutes. This value is only supported for incremental refreshes. This interval can only be used for one schedule per dataset. -
HOURLY
: The dataset refreshes every hour. This interval can only be used for one schedule per dataset. -
DAILY
: The dataset refreshes every day. -
WEEKLY
: The dataset refreshes every week. -
MONTHLY
: The dataset refreshes every month.
refresh_on_day: Option<ScheduleRefreshOnEntity>
The day of the week that you want to schedule the refresh on. This value is required for weekly and monthly refresh intervals.
timezone: Option<String>
The timezone that you want the refresh schedule to use. The timezone ID must match a corresponding ID found on java.util.time.getAvailableIDs()
.
time_of_the_day: Option<String>
The time of day that you want the datset to refresh. This value is expressed in HH:MM format. This field is not required for schedules that refresh hourly.
Implementations§
source§impl RefreshFrequency
impl RefreshFrequency
sourcepub fn interval(&self) -> &RefreshInterval
pub fn interval(&self) -> &RefreshInterval
The interval between scheduled refreshes. Valid values are as follows:
-
MINUTE15
: The dataset refreshes every 15 minutes. This value is only supported for incremental refreshes. This interval can only be used for one schedule per dataset. -
MINUTE30
:The dataset refreshes every 30 minutes. This value is only supported for incremental refreshes. This interval can only be used for one schedule per dataset. -
HOURLY
: The dataset refreshes every hour. This interval can only be used for one schedule per dataset. -
DAILY
: The dataset refreshes every day. -
WEEKLY
: The dataset refreshes every week. -
MONTHLY
: The dataset refreshes every month.
sourcepub fn refresh_on_day(&self) -> Option<&ScheduleRefreshOnEntity>
pub fn refresh_on_day(&self) -> Option<&ScheduleRefreshOnEntity>
The day of the week that you want to schedule the refresh on. This value is required for weekly and monthly refresh intervals.
sourcepub fn timezone(&self) -> Option<&str>
pub fn timezone(&self) -> Option<&str>
The timezone that you want the refresh schedule to use. The timezone ID must match a corresponding ID found on java.util.time.getAvailableIDs()
.
sourcepub fn time_of_the_day(&self) -> Option<&str>
pub fn time_of_the_day(&self) -> Option<&str>
The time of day that you want the datset to refresh. This value is expressed in HH:MM format. This field is not required for schedules that refresh hourly.
source§impl RefreshFrequency
impl RefreshFrequency
sourcepub fn builder() -> RefreshFrequencyBuilder
pub fn builder() -> RefreshFrequencyBuilder
Creates a new builder-style object to manufacture RefreshFrequency
.
Trait Implementations§
source§impl Clone for RefreshFrequency
impl Clone for RefreshFrequency
source§fn clone(&self) -> RefreshFrequency
fn clone(&self) -> RefreshFrequency
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RefreshFrequency
impl Debug for RefreshFrequency
source§impl PartialEq for RefreshFrequency
impl PartialEq for RefreshFrequency
impl StructuralPartialEq for RefreshFrequency
Auto Trait Implementations§
impl Freeze for RefreshFrequency
impl RefUnwindSafe for RefreshFrequency
impl Send for RefreshFrequency
impl Sync for RefreshFrequency
impl Unpin for RefreshFrequency
impl UnwindSafe for RefreshFrequency
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