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
The 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
.
1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1212 class ControlInputParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
The value of parameter, for example, hourly
.
1212 1213 1214 1215 1216 1217 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1212 class ControlInputParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |