Class: Aws::Backup::Types::ControlInputParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ControlInputParameter
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
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
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_name ⇒ String
The name of a parameter, for example,
BackupPlanFrequency
. -
#parameter_value ⇒ String
The value of parameter, for example,
hourly
.
Instance Attribute Details
#parameter_name ⇒ String
The name of a parameter, for example, BackupPlanFrequency
.
1100 1101 1102 1103 1104 1105 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1100 class ControlInputParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
The value of parameter, for example, hourly
.
1100 1101 1102 1103 1104 1105 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1100 class ControlInputParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |