Class: Aws::Backup::Types::ControlInputParameter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#parameter_nameString

The name of a parameter, for example, BackupPlanFrequency.

Returns:

  • (String)


1200
1201
1202
1203
1204
1205
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1200

class ControlInputParameter < Struct.new(
  :parameter_name,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_valueString

The value of parameter, for example, hourly.

Returns:

  • (String)


1200
1201
1202
1203
1204
1205
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1200

class ControlInputParameter < Struct.new(
  :parameter_name,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end