Class: Aws::AppConfig::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfig::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/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
The ARN of the resource for which to remove tags.
-
#tag_keys ⇒ Array<String>
The tag keys to delete.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the resource for which to remove tags.
1911 1912 1913 1914 1915 1916 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1911 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tag keys to delete.
1911 1912 1913 1914 1915 1916 |
# File 'gems/aws-sdk-appconfig/lib/aws-sdk-appconfig/types.rb', line 1911 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |