Struct aws_sdk_backup::model::FrameworkControl [−][src]
#[non_exhaustive]pub struct FrameworkControl {
pub control_name: Option<String>,
pub control_input_parameters: Option<Vec<ControlInputParameter>>,
pub control_scope: Option<ControlScope>,
}
Expand description
Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.
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.control_name: Option<String>
The name of a control. This name is between 1 and 256 characters.
control_input_parameters: Option<Vec<ControlInputParameter>>
A list of ParameterName
and ParameterValue
pairs.
control_scope: Option<ControlScope>
The scope of a control. The control scope defines what the control will evaluate. Three
examples of control scopes are: a specific backup plan, all backup plans with a specific
tag, or all backup plans. For more information, see ControlScope
.
Implementations
Creates a new builder-style object to manufacture FrameworkControl
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 FrameworkControl
impl Send for FrameworkControl
impl Sync for FrameworkControl
impl Unpin for FrameworkControl
impl UnwindSafe for FrameworkControl
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