Class: Aws::Backup::Types::ConditionParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ConditionParameter
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Note:
When making an API call, you may pass ConditionParameter data as a hash:
{
condition_key: "ConditionKey",
condition_value: "ConditionValue",
}
Includes information about tags you define to assign tagged resources to a backup plan.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition_key ⇒ String
The key in a key-value pair.
-
#condition_value ⇒ String
The value in a key-value pair.
Instance Attribute Details
#condition_key ⇒ String
The key in a key-value pair. For example, in the tag Department:
Accounting
, Department
is the key.
1065 1066 1067 1068 1069 1070 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1065 class ConditionParameter < Struct.new( :condition_key, :condition_value) SENSITIVE = [] include Aws::Structure end |
#condition_value ⇒ String
The value in a key-value pair. For example, in the tag Department:
Accounting
, Accounting
is the value.
1065 1066 1067 1068 1069 1070 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 1065 class ConditionParameter < Struct.new( :condition_key, :condition_value) SENSITIVE = [] include Aws::Structure end |