deleteTags method

Future<void> deleteTags({
  1. required List<Tag> tags,
})

Deletes the specified tags.

May throw ResourceContentionFault. May throw ResourceInUseFault.

Parameter tags : One or more tags.

Implementation

Future<void> deleteTags({
  required List<Tag> tags,
}) async {
  ArgumentError.checkNotNull(tags, 'tags');
  final $request = <String, dynamic>{};
  $request['Tags'] = tags;
  await _protocol.send(
    $request,
    action: 'DeleteTags',
    version: '2011-01-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DeleteTagsType'],
    shapes: shapes,
  );
}