#[non_exhaustive]pub struct AssetBundleImportJobRefreshScheduleOverrideParameters {
pub data_set_id: String,
pub schedule_id: String,
pub start_after_date_time: Option<DateTime>,
}Expand description
A list of overrides for a specific RefreshsSchedule resource that is present in the asset bundle that is imported.
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.data_set_id: StringA partial identifier for the specific RefreshSchedule resource that is being overridden. This structure is used together with the ScheduleID structure.
schedule_id: StringA partial identifier for the specific RefreshSchedule resource being overridden. This structure is used together with the DataSetId structure.
start_after_date_time: Option<DateTime>An override for the StartAfterDateTime of a RefreshSchedule. Make sure that the StartAfterDateTime is set to a time that takes place in the future.
Implementations§
source§impl AssetBundleImportJobRefreshScheduleOverrideParameters
impl AssetBundleImportJobRefreshScheduleOverrideParameters
sourcepub fn data_set_id(&self) -> &str
pub fn data_set_id(&self) -> &str
A partial identifier for the specific RefreshSchedule resource that is being overridden. This structure is used together with the ScheduleID structure.
sourcepub fn schedule_id(&self) -> &str
pub fn schedule_id(&self) -> &str
A partial identifier for the specific RefreshSchedule resource being overridden. This structure is used together with the DataSetId structure.
sourcepub fn start_after_date_time(&self) -> Option<&DateTime>
pub fn start_after_date_time(&self) -> Option<&DateTime>
An override for the StartAfterDateTime of a RefreshSchedule. Make sure that the StartAfterDateTime is set to a time that takes place in the future.
source§impl AssetBundleImportJobRefreshScheduleOverrideParameters
impl AssetBundleImportJobRefreshScheduleOverrideParameters
sourcepub fn builder() -> AssetBundleImportJobRefreshScheduleOverrideParametersBuilder
pub fn builder() -> AssetBundleImportJobRefreshScheduleOverrideParametersBuilder
Creates a new builder-style object to manufacture AssetBundleImportJobRefreshScheduleOverrideParameters.
Trait Implementations§
source§impl Clone for AssetBundleImportJobRefreshScheduleOverrideParameters
impl Clone for AssetBundleImportJobRefreshScheduleOverrideParameters
source§fn clone(&self) -> AssetBundleImportJobRefreshScheduleOverrideParameters
fn clone(&self) -> AssetBundleImportJobRefreshScheduleOverrideParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for AssetBundleImportJobRefreshScheduleOverrideParameters
impl PartialEq for AssetBundleImportJobRefreshScheduleOverrideParameters
source§fn eq(
&self,
other: &AssetBundleImportJobRefreshScheduleOverrideParameters
) -> bool
fn eq( &self, other: &AssetBundleImportJobRefreshScheduleOverrideParameters ) -> bool
self and other values to be equal, and is used
by ==.