Struct aws_sdk_backup::model::ControlInputParameter
source · [−]#[non_exhaustive]pub struct ControlInputParameter {
pub parameter_name: Option<String>,
pub parameter_value: Option<String>,
}
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
.
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.parameter_name: Option<String>
The name of a parameter, for example, BackupPlanFrequency
.
parameter_value: Option<String>
The value of parameter, for example, hourly
.
Implementations
The name of a parameter, for example, BackupPlanFrequency
.
The value of parameter, for example, hourly
.
Creates a new builder-style object to manufacture ControlInputParameter
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more