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.
4405 4406 4407 4408 4409 4410 4411 |
# File 'lib/aws-sdk-backup/types.rb', line 4405 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.
4405 4406 4407 4408 4409 4410 4411 |
# File 'lib/aws-sdk-backup/types.rb', line 4405 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
4405 4406 4407 4408 4409 4410 4411 |
# File 'lib/aws-sdk-backup/types.rb', line 4405 class FrameworkControl < Struct.new( :control_name, :control_input_parameters, :control_scope) SENSITIVE = [] include Aws::Structure end |