Class: Aws::Transfer::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The value of the resource that will have the tag removed.
-
#tag_keys ⇒ Array<String>
TagKeys are key-value pairs assigned to ARNs that can be used to group and search for resources by type.
Instance Attribute Details
#arn ⇒ String
The value of the resource that will have the tag removed. An Amazon Resource Name (ARN) is an identifier for a specific Amazon Web Services resource, such as a server, user, or role.
4756 4757 4758 4759 4760 4761 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4756 class UntagResourceRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
TagKeys are key-value pairs assigned to ARNs that can be used to group and search for resources by type. This metadata can be attached to resources for any purpose.
4756 4757 4758 4759 4760 4761 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4756 class UntagResourceRequest < Struct.new( :arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |