listTagsForResource method
Returns a list of the tags assigned to the specified resource.
Parameter resourceArn
:
The Amazon Resource Name (ARN) for the resource. You can get this from the
response to any request to the resource.
Implementation
Future<ListTagsForResourceResponse> listTagsForResource({
required String resourceArn,
}) async {
ArgumentError.checkNotNull(resourceArn, 'resourceArn');
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/tags/${Uri.encodeComponent(resourceArn)}',
exceptionFnMap: _exceptionFns,
);
return ListTagsForResourceResponse.fromJson(response);
}