Class: Aws::Backup::Types::ResourceSelection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ResourceSelection
- 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
-
#resource_type ⇒ String
The type of Amazon Web Services resource; for example,
S3for Amazon S3. -
#resources ⇒ Array<String>
An array of strings that either contains ARNs of the associated resources or contains a wildcard
*to specify all resources. -
#tiering_down_settings_in_days ⇒ Integer
The number of days after creation within a backup vault that an object can transition to the low cost warm storage tier.
Instance Attribute Details
#resource_type ⇒ String
The type of Amazon Web Services resource; for example, S3 for
Amazon S3. For tiering configurations, this is currently limited to
S3.
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 |
#resources ⇒ Array<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.
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_days ⇒ Integer
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.
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 |