Method: Aws::Backup::Types::BackupSelection#conditions
- Defined in:
- lib/aws-sdk-backup/types.rb
#conditions ⇒ Types::Conditions
The conditions that you define to assign resources to your backup plans using tags. For example, ‘“StringEquals”: { “ConditionKey”: “aws:ResourceTag/backup”, “ConditionValue”: “daily” }`.
‘Conditions` supports `StringEquals`, `StringLike`, `StringNotEquals`, and `StringNotLike`. Condition operators are case sensitive.
If you specify multiple conditions, the resources much match all conditions (AND logic).
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 |
# File 'lib/aws-sdk-backup/types.rb', line 1036 class BackupSelection < Struct.new( :selection_name, :iam_role_arn, :resources, :list_of_tags, :not_resources, :conditions) SENSITIVE = [] include Aws::Structure end |