untagResource method
Removes one or more tags from a resource.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter resourceArn :
The ARN of the resource to remove tags from.
Parameter tagKeys :
A list of the keys of the tags to remove from the resource.
Implementation
Future<void> untagResource({
required String resourceArn,
required List<String> tagKeys,
}) async {
final $query = <String, List<String>>{
'resourceArn': [resourceArn],
'tagKeys': tagKeys,
};
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/tags',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
}