Class: Aws::RecycleBin::Types::UpdateRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RecycleBin::Types::UpdateRuleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-recyclebin/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The retention rule description.
-
#exclude_resource_tags ⇒ Array<Types::ResourceTag>
[Region-level retention rules only] Specifies the exclusion tags to use to identify resources that are to be excluded, or ignored, by a Region-level retention rule.
-
#identifier ⇒ String
The unique ID of the retention rule.
-
#resource_tags ⇒ Array<Types::ResourceTag>
[Tag-level retention rules only] Specifies the resource tags to use to identify resources that are to be retained by a tag-level retention rule.
-
#resource_type ⇒ String
<note markdown=“1”> This parameter is currently not supported.
-
#retention_period ⇒ Types::RetentionPeriod
Information about the retention period for which the retention rule is to retain resources.
Instance Attribute Details
#description ⇒ String
The retention rule description.
883 884 885 886 887 888 889 890 891 892 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 883 class UpdateRuleRequest < Struct.new( :identifier, :retention_period, :description, :resource_type, :resource_tags, :exclude_resource_tags) SENSITIVE = [] include Aws::Structure end |
#exclude_resource_tags ⇒ Array<Types::ResourceTag>
[Region-level retention rules only] Specifies the exclusion tags to use to identify resources that are to be excluded, or ignored, by a Region-level retention rule. Resources that have any of these tags are not retained by the retention rule upon deletion.
You can’t specify exclusion tags for tag-level retention rules.
883 884 885 886 887 888 889 890 891 892 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 883 class UpdateRuleRequest < Struct.new( :identifier, :retention_period, :description, :resource_type, :resource_tags, :exclude_resource_tags) SENSITIVE = [] include Aws::Structure end |
#identifier ⇒ String
The unique ID of the retention rule.
883 884 885 886 887 888 889 890 891 892 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 883 class UpdateRuleRequest < Struct.new( :identifier, :retention_period, :description, :resource_type, :resource_tags, :exclude_resource_tags) SENSITIVE = [] include Aws::Structure end |
#resource_tags ⇒ Array<Types::ResourceTag>
[Tag-level retention rules only] Specifies the resource tags to use to identify resources that are to be retained by a tag-level retention rule. For tag-level retention rules, only deleted resources, of the specified resource type, that have one or more of the specified tag key and value pairs are retained. If a resource is deleted, but it does not have any of the specified tag key and value pairs, it is immediately deleted without being retained by the retention rule.
You can add the same tag key and value pair to a maximum or five retention rules.
To create a Region-level retention rule, omit this parameter. A Region-level retention rule does not have any resource tags specified. It retains all deleted resources of the specified resource type in the Region in which the rule is created, even if the resources are not tagged.
883 884 885 886 887 888 889 890 891 892 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 883 class UpdateRuleRequest < Struct.new( :identifier, :retention_period, :description, :resource_type, :resource_tags, :exclude_resource_tags) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
<note markdown=“1”> This parameter is currently not supported. You can’t update a retention rule’s resource type after creation.
</note>
883 884 885 886 887 888 889 890 891 892 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 883 class UpdateRuleRequest < Struct.new( :identifier, :retention_period, :description, :resource_type, :resource_tags, :exclude_resource_tags) SENSITIVE = [] include Aws::Structure end |
#retention_period ⇒ Types::RetentionPeriod
Information about the retention period for which the retention rule is to retain resources.
883 884 885 886 887 888 889 890 891 892 |
# File 'lib/aws-sdk-recyclebin/types.rb', line 883 class UpdateRuleRequest < Struct.new( :identifier, :retention_period, :description, :resource_type, :resource_tags, :exclude_resource_tags) SENSITIVE = [] include Aws::Structure end |