startBulkAssociateWirelessDeviceWithMulticastGroup method
Starts a bulk association of all qualifying wireless devices with a multicast group.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<void> startBulkAssociateWirelessDeviceWithMulticastGroup({
required String id,
String? queryString,
List<Tag>? tags,
}) async {
final $payload = <String, dynamic>{
if (queryString != null) 'QueryString': queryString,
if (tags != null) 'Tags': tags,
};
final response = await _protocol.send(
payload: $payload,
method: 'PATCH',
requestUri: '/multicast-groups/${Uri.encodeComponent(id)}/bulk',
exceptionFnMap: _exceptionFns,
);
}