tagResource method
Adds tags to a resource.
May throw BadRequestException. May throw InternalServerErrorException.
Parameter resourceArn
:
The Amazon Resource Name (ARN) for the GuardDuty resource to apply a tag
to.
Parameter tags
:
The tags to be added to a resource.
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,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/tags/${Uri.encodeComponent(resourceArn)}',
exceptionFnMap: _exceptionFns,
);
}