Class: Aws::Backup::Types::FrameworkControl
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::FrameworkControl
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-backup/types.rb
Overview
Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#control_input_parameters ⇒ Array<Types::ControlInputParameter>
The name/value pairs.
-
#control_name ⇒ String
The name of a control.
-
#control_scope ⇒ Types::ControlScope
The scope of a control.
Instance Attribute Details
#control_input_parameters ⇒ Array<Types::ControlInputParameter>
The name/value pairs.
3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-backup/types.rb', line 3588 class FrameworkControl < Struct.new( :control_name, :control_input_parameters, :control_scope) SENSITIVE = [] include Aws::Structure end |
#control_name ⇒ String
The name of a control. This name is between 1 and 256 characters.
3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-backup/types.rb', line 3588 class FrameworkControl < Struct.new( :control_name, :control_input_parameters, :control_scope) SENSITIVE = [] include Aws::Structure end |
#control_scope ⇒ Types::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`.]
[1]: docs.aws.amazon.com/aws-backup/latest/devguide/API_ControlScope.html
3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-backup/types.rb', line 3588 class FrameworkControl < Struct.new( :control_name, :control_input_parameters, :control_scope) SENSITIVE = [] include Aws::Structure end |