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
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
resource_arn: "String", # required
tag_keys: ["String"], # required
}
Removes a tag from a given resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
[Required] The ARN of a resource that can be tagged.
-
#tag_keys ⇒ Array<String>
[Required] The Tag keys to delete.
Instance Attribute Details
#resource_arn ⇒ String
[Required] The ARN of a resource that can be tagged.
7168 7169 7170 7171 7172 7173 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 7168 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
[Required] The Tag keys to delete.
7168 7169 7170 7171 7172 7173 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 7168 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |