Class: Aws::GlueDataBrew::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
resource_arn: "Arn", # required
tag_keys: ["TagKey"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
A DataBrew resource from which you want to remove a tag or tags.
-
#tag_keys ⇒ Array<String>
The tag keys (names) of one or more tags to be removed.
Instance Attribute Details
#resource_arn ⇒ String
A DataBrew resource from which you want to remove a tag or tags. The value for this parameter is an Amazon Resource Name (ARN).
4874 4875 4876 4877 4878 4879 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4874 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tag keys (names) of one or more tags to be removed.
4874 4875 4876 4877 4878 4879 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4874 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |