Class: Aws::Backup::Types::ResourceSelection

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

Overview

This contains metadata about resource selection for tiering configurations.

You can specify up to 5 different resource selections per tiering configuration. Data moved to lower-cost tier remains there until deletion (one-way transition).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_typeString

The type of Amazon Web Services resource; for example, S3 for Amazon S3. For tiering configurations, this is currently limited to S3.

Returns:

  • (String)


8748
8749
8750
8751
8752
8753
8754
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8748

class ResourceSelection < Struct.new(
  :resources,
  :tiering_down_settings_in_days,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end

#resourcesArray<String>

An array of strings that either contains ARNs of the associated resources or contains a wildcard * to specify all resources. You can specify up to 100 specific resources per tiering configuration.

Returns:

  • (Array<String>)


8748
8749
8750
8751
8752
8753
8754
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8748

class ResourceSelection < Struct.new(
  :resources,
  :tiering_down_settings_in_days,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end

#tiering_down_settings_in_daysInteger

The number of days after creation within a backup vault that an object can transition to the low cost warm storage tier. Must be a positive integer between 60 and 36500 days.

Returns:

  • (Integer)


8748
8749
8750
8751
8752
8753
8754
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8748

class ResourceSelection < Struct.new(
  :resources,
  :tiering_down_settings_in_days,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end