Struct aws_sdk_dlm::types::builders::CreateRuleBuilder   
source · #[non_exhaustive]pub struct CreateRuleBuilder { /* private fields */ }Expand description
A builder for CreateRule.
Implementations§
source§impl CreateRuleBuilder
 
impl CreateRuleBuilder
sourcepub fn location(self, input: LocationValues) -> Self
 
pub fn location(self, input: LocationValues) -> Self
 [Snapshot policies only] Specifies the destination for snapshots created by the policy. To create snapshots in the same Region as the source resource, specify CLOUD. To create snapshots on the same Outpost as the source resource, specify OUTPOST_LOCAL. If you omit this parameter, CLOUD is used by default.
If the policy targets resources in an Amazon Web Services Region, then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost.
sourcepub fn set_location(self, input: Option<LocationValues>) -> Self
 
pub fn set_location(self, input: Option<LocationValues>) -> Self
 [Snapshot policies only] Specifies the destination for snapshots created by the policy. To create snapshots in the same Region as the source resource, specify CLOUD. To create snapshots on the same Outpost as the source resource, specify OUTPOST_LOCAL. If you omit this parameter, CLOUD is used by default.
If the policy targets resources in an Amazon Web Services Region, then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost.
sourcepub fn interval(self, input: i32) -> Self
 
pub fn interval(self, input: i32) -> Self
The interval between snapshots. The supported values are 1, 2, 3, 4, 6, 8, 12, and 24.
sourcepub fn set_interval(self, input: Option<i32>) -> Self
 
pub fn set_interval(self, input: Option<i32>) -> Self
The interval between snapshots. The supported values are 1, 2, 3, 4, 6, 8, 12, and 24.
sourcepub fn interval_unit(self, input: IntervalUnitValues) -> Self
 
pub fn interval_unit(self, input: IntervalUnitValues) -> Self
The interval unit.
sourcepub fn set_interval_unit(self, input: Option<IntervalUnitValues>) -> Self
 
pub fn set_interval_unit(self, input: Option<IntervalUnitValues>) -> Self
The interval unit.
sourcepub fn times(self, input: impl Into<String>) -> Self
 
pub fn times(self, input: impl Into<String>) -> Self
Appends an item to times.
To override the contents of this collection use set_times.
The time, in UTC, to start the operation. The supported format is hh:mm.
The operation occurs within a one-hour window following the specified time. If you do not specify a time, Amazon Data Lifecycle Manager selects a time within the next 24 hours.
sourcepub fn set_times(self, input: Option<Vec<String>>) -> Self
 
pub fn set_times(self, input: Option<Vec<String>>) -> Self
The time, in UTC, to start the operation. The supported format is hh:mm.
The operation occurs within a one-hour window following the specified time. If you do not specify a time, Amazon Data Lifecycle Manager selects a time within the next 24 hours.
sourcepub fn cron_expression(self, input: impl Into<String>) -> Self
 
pub fn cron_expression(self, input: impl Into<String>) -> Self
The schedule, as a Cron expression. The schedule interval must be between 1 hour and 1 year. For more information, see Cron expressions in the Amazon CloudWatch User Guide.
sourcepub fn set_cron_expression(self, input: Option<String>) -> Self
 
pub fn set_cron_expression(self, input: Option<String>) -> Self
The schedule, as a Cron expression. The schedule interval must be between 1 hour and 1 year. For more information, see Cron expressions in the Amazon CloudWatch User Guide.
sourcepub fn build(self) -> CreateRule
 
pub fn build(self) -> CreateRule
Consumes the builder and constructs a CreateRule.
Trait Implementations§
source§impl Clone for CreateRuleBuilder
 
impl Clone for CreateRuleBuilder
source§fn clone(&self) -> CreateRuleBuilder
 
fn clone(&self) -> CreateRuleBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateRuleBuilder
 
impl Debug for CreateRuleBuilder
source§impl Default for CreateRuleBuilder
 
impl Default for CreateRuleBuilder
source§fn default() -> CreateRuleBuilder
 
fn default() -> CreateRuleBuilder
source§impl PartialEq<CreateRuleBuilder> for CreateRuleBuilder
 
impl PartialEq<CreateRuleBuilder> for CreateRuleBuilder
source§fn eq(&self, other: &CreateRuleBuilder) -> bool
 
fn eq(&self, other: &CreateRuleBuilder) -> bool
self and other values to be equal, and is used
by ==.