Method: Aws::Backup::Types::BackupSelection#resources

Defined in:
lib/aws-sdk-backup/types.rb

#resourcesArray<String>

The Amazon Resource Names (ARNs) of the resources to assign to a backup plan. The maximum number of ARNs is 500 without wildcards, or 30 ARNs with wildcards.

If you need to assign many resources to a backup plan, consider a different resource selection strategy, such as assigning all resources of a resource type or refining your resource selection using tags.

If you specify multiple ARNs, the resources much match any of the ARNs (OR logic).

Returns:

  • (Array<String>)


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