Struct aws_sdk_quicksight::types::builders::RefreshScheduleBuilder
source · #[non_exhaustive]pub struct RefreshScheduleBuilder { /* private fields */ }Expand description
A builder for RefreshSchedule.
Implementations§
source§impl RefreshScheduleBuilder
impl RefreshScheduleBuilder
sourcepub fn schedule_id(self, input: impl Into<String>) -> Self
pub fn schedule_id(self, input: impl Into<String>) -> Self
An identifier for the refresh schedule.
This field is required.sourcepub fn set_schedule_id(self, input: Option<String>) -> Self
pub fn set_schedule_id(self, input: Option<String>) -> Self
An identifier for the refresh schedule.
sourcepub fn get_schedule_id(&self) -> &Option<String>
pub fn get_schedule_id(&self) -> &Option<String>
An identifier for the refresh schedule.
sourcepub fn schedule_frequency(self, input: RefreshFrequency) -> Self
pub fn schedule_frequency(self, input: RefreshFrequency) -> Self
The frequency for the refresh schedule.
This field is required.sourcepub fn set_schedule_frequency(self, input: Option<RefreshFrequency>) -> Self
pub fn set_schedule_frequency(self, input: Option<RefreshFrequency>) -> Self
The frequency for the refresh schedule.
sourcepub fn get_schedule_frequency(&self) -> &Option<RefreshFrequency>
pub fn get_schedule_frequency(&self) -> &Option<RefreshFrequency>
The frequency for the refresh schedule.
sourcepub fn start_after_date_time(self, input: DateTime) -> Self
pub fn start_after_date_time(self, input: DateTime) -> Self
Time after which the refresh schedule can be started, expressed in YYYY-MM-DDTHH:MM:SS format.
sourcepub fn set_start_after_date_time(self, input: Option<DateTime>) -> Self
pub fn set_start_after_date_time(self, input: Option<DateTime>) -> Self
Time after which the refresh schedule can be started, expressed in YYYY-MM-DDTHH:MM:SS format.
sourcepub fn get_start_after_date_time(&self) -> &Option<DateTime>
pub fn get_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, input: IngestionType) -> Self
pub fn refresh_type(self, input: IngestionType) -> Self
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.
This field is required.sourcepub fn set_refresh_type(self, input: Option<IngestionType>) -> Self
pub fn set_refresh_type(self, input: Option<IngestionType>) -> Self
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.
sourcepub fn get_refresh_type(&self) -> &Option<IngestionType>
pub fn get_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.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the refresh schedule.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for the refresh schedule.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) for the refresh schedule.
sourcepub fn build(self) -> Result<RefreshSchedule, BuildError>
pub fn build(self) -> Result<RefreshSchedule, BuildError>
Consumes the builder and constructs a RefreshSchedule.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RefreshScheduleBuilder
impl Clone for RefreshScheduleBuilder
source§fn clone(&self) -> RefreshScheduleBuilder
fn clone(&self) -> RefreshScheduleBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RefreshScheduleBuilder
impl Debug for RefreshScheduleBuilder
source§impl Default for RefreshScheduleBuilder
impl Default for RefreshScheduleBuilder
source§fn default() -> RefreshScheduleBuilder
fn default() -> RefreshScheduleBuilder
source§impl PartialEq for RefreshScheduleBuilder
impl PartialEq for RefreshScheduleBuilder
source§fn eq(&self, other: &RefreshScheduleBuilder) -> bool
fn eq(&self, other: &RefreshScheduleBuilder) -> bool
self and other values to be equal, and is used
by ==.