untagResource method
Deletes specified tags from a resource.
May throw BadRequestException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw ServiceUnavailableException.
May throw TooManyRequestsException.
Parameter resourceArn :
The Amazon Resource Name (ARN) of the resource to delete tags from.
Parameter tagKeys :
The keys of the tags to be removed.
Implementation
Future<void> untagResource({
required String resourceArn,
required List<String> tagKeys,
}) async {
final $query = <String, List<String>>{
'resourceArn': [resourceArn],
};
final $payload = <String, dynamic>{
'tagKeys': tagKeys,
};
final response = await _protocol.send(
payload: $payload,
method: 'PUT',
requestUri: '/v20190125/untag',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
}