Class: Aws::ApplicationInsights::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb
Overview
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
resource_arn: "AmazonResourceName", # required
tag_keys: ["TagKey"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the application that you want to remove one or more tags from.
-
#tag_keys ⇒ Array<String>
The tags (tag keys) that you want to remove from the resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the application that you want to remove one or more tags from.
1735 1736 1737 1738 1739 1740 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1735 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tags (tag keys) that you want to remove from the resource. When you specify a tag key, the action removes both that key and its associated tag value.
To remove more than one tag from the application, append the
TagKeys
parameter and argument for each additional tag to remove,
separated by an ampersand.
1735 1736 1737 1738 1739 1740 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 1735 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |