Class: Aws::Ivschat::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the resource to be untagged.
-
#tag_keys ⇒ Array<String>
Array of tags to be removed.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the resource to be untagged. The ARN must be URL-encoded.
1069 1070 1071 1072 1073 1074 |
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 1069 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
Array of tags to be removed. Array of maps, each of the form
string:string (key:value)
. See Tagging AWS Resources for
details, including restrictions that apply to tags and "Tag naming
limits and requirements"; Amazon IVS Chat has no constraints beyond
what is documented there.
1069 1070 1071 1072 1073 1074 |
# File 'gems/aws-sdk-ivschat/lib/aws-sdk-ivschat/types.rb', line 1069 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |