untagResource method
Removes tags from the specified resource.
May throw InternalServerException. May throw ValidationException. May throw NotFoundException.
Parameter resourceArn
:
The Amazon Resource Name (ARN) of the resource.
Parameter tagKeys
:
The tag keys.
Implementation
Future<void> untagResource({
required String resourceArn,
required List<String> tagKeys,
}) async {
ArgumentError.checkNotNull(resourceArn, 'resourceArn');
_s.validateStringLength(
'resourceArn',
resourceArn,
0,
1011,
isRequired: true,
);
ArgumentError.checkNotNull(tagKeys, 'tagKeys');
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,
);
}