Struct aws_sdk_backup::model::ControlInputParameter
source · [−]#[non_exhaustive]pub struct ControlInputParameter { /* private fields */ }
Expand description
A list of parameters for a control. A control can have zero, one, or more than one parameter. An example of a control with two parameters is: "backup plan frequency is at least daily
and the retention period is at least 1 year
". The first parameter is daily
. The second parameter is 1 year
.
Implementations
sourceimpl ControlInputParameter
impl ControlInputParameter
sourcepub fn parameter_name(&self) -> Option<&str>
pub fn parameter_name(&self) -> Option<&str>
The name of a parameter, for example, BackupPlanFrequency
.
sourcepub fn parameter_value(&self) -> Option<&str>
pub fn parameter_value(&self) -> Option<&str>
The value of parameter, for example, hourly
.
sourceimpl ControlInputParameter
impl ControlInputParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ControlInputParameter
.
Trait Implementations
sourceimpl Clone for ControlInputParameter
impl Clone for ControlInputParameter
sourcefn clone(&self) -> ControlInputParameter
fn clone(&self) -> ControlInputParameter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ControlInputParameter
impl Debug for ControlInputParameter
sourceimpl PartialEq<ControlInputParameter> for ControlInputParameter
impl PartialEq<ControlInputParameter> for ControlInputParameter
sourcefn eq(&self, other: &ControlInputParameter) -> bool
fn eq(&self, other: &ControlInputParameter) -> bool
impl StructuralPartialEq for ControlInputParameter
Auto Trait Implementations
impl RefUnwindSafe for ControlInputParameter
impl Send for ControlInputParameter
impl Sync for ControlInputParameter
impl Unpin for ControlInputParameter
impl UnwindSafe for ControlInputParameter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more