untagResource method
Disassociates tags from an Amazon Q Apps resource.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter resourceARN :
The Amazon Resource Name (ARN) of the resource to disassociate the tag
from.
Parameter tagKeys :
The keys of the tags to disassociate from the resource.
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,
);
}