Class: Aws::APIGateway::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UntagResourceRequest
- Includes:
- Structure
- Defined in:
- 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.
5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5384 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The Tag keys to delete.
5384 5385 5386 5387 5388 5389 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5384 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |