Class: Aws::AppStream::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/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 Amazon Resource Name (ARN) of the resource.
-
#tag_keys ⇒ Array<String>
The tag keys for the tags to disassociate.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resource.
4855 4856 4857 4858 4859 4860 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4855 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
The tag keys for the tags to disassociate.
4855 4856 4857 4858 4859 4860 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4855 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |