untagResource method
Deletes tags associated with a budget or budget action resource.
May throw AccessDeniedException.
May throw InternalErrorException.
May throw InvalidParameterException.
May throw NotFoundException.
May throw ThrottlingException.
Parameter resourceARN :
The unique identifier for the resource.
Parameter resourceTagKeys :
The key that's associated with the tag.
Implementation
Future<void> untagResource({
required String resourceARN,
required List<String> resourceTagKeys,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSBudgetServiceGateway.UntagResource'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'ResourceARN': resourceARN,
'ResourceTagKeys': resourceTagKeys,
},
);
}