untagResource method
Deletes specified tags from an Amazon EKS resource.
May throw BadRequestException.
May throw NotFoundException.
Parameter resourceArn :
The Amazon Resource Name (ARN) of the resource to delete tags from.
Parameter tagKeys :
The keys of the tags to remove.
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,
);
}