Class: Aws::Backup::Types::ConditionParameter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb

Overview

Includes information about tags you define to assign tagged resources to a backup plan.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#condition_keyString

The key in a key-value pair. For example, in the tag Department: Accounting, Department is the key.

Returns:

  • (String)


1113
1114
1115
1116
1117
1118
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1113

class ConditionParameter < Struct.new(
  :condition_key,
  :condition_value)
  SENSITIVE = []
  include Aws::Structure
end

#condition_valueString

The value in a key-value pair. For example, in the tag Department: Accounting, Accounting is the value.

Returns:

  • (String)


1113
1114
1115
1116
1117
1118
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1113

class ConditionParameter < Struct.new(
  :condition_key,
  :condition_value)
  SENSITIVE = []
  include Aws::Structure
end