untagResource method
This operation removes tags from the specified resource.
May throw ResourceNotFoundException.
Parameter resourceArn :
The Amazon Resource Name (ARN) that uniquely identifies the resource where
you want to remove tags.
Parameter tagKeys :
This required parameter contains the tag keys you want to remove from the
source.
Implementation
Future<void> untagResource({
required String resourceArn,
required List<String> tagKeys,
}) async {
final $query = <String, List<String>>{
'tagKeys': tagKeys,
};
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/tags/${Uri.encodeComponent(resourceArn)}',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
}