getChangeToken method

Future<GetChangeTokenResponse> getChangeToken()

Implementation

Future<GetChangeTokenResponse> getChangeToken() async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSWAF_20150824.GetChangeToken'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
  );

  return GetChangeTokenResponse.fromJson(jsonResponse.body);
}