tagResource method
Adds or updates tags for a specified dashboard resource.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter resourceArn :
The unique identifier for the resource.
Parameter resourceTags :
The tags to add to the dashboard resource.
Implementation
Future<void> tagResource({
required String resourceArn,
required List<ResourceTag> resourceTags,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.0',
'X-Amz-Target': 'AWSBCMDashboardsService.TagResource'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'resourceArn': resourceArn,
'resourceTags': resourceTags,
},
);
}