tagResource method
This operation tags a resource.
Parameter resourceArn
:
An Amazon Resource Name (ARN) that uniquely identifies an AWS resource.
Parameter tags
:
A label that consists of a customer-defined key and an optional value.
Implementation
Future<void> tagResource({
required String resourceArn,
required Map<String, String> tags,
}) async {
ArgumentError.checkNotNull(resourceArn, 'resourceArn');
ArgumentError.checkNotNull(tags, 'tags');
final $payload = <String, dynamic>{
'tags': tags,
};
await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/tags/${Uri.encodeComponent(resourceArn)}',
exceptionFnMap: _exceptionFns,
);
}