Class: Aws::APIGateway::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Removes a tag from a given resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of a resource that can be tagged.
-
#tag_keys ⇒ Array<String>
The Tag keys to delete.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of a resource that can be tagged.
5180 5181 5182 5183 5184 5185 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5180 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The Tag keys to delete.
5180 5181 5182 5183 5184 5185 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 5180 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |