Method: Aws::Backup::Types::BackupSelection#not_resources

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

#not_resourcesArray<String>

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

If you need to exclude many resources from a backup plan, consider a different resource selection strategy, such as assigning only one or a few resource types or refining your resource selection using tags.

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