deleteGeoMatchSet method

Future<DeleteGeoMatchSetResponse> deleteGeoMatchSet({
  1. required String changeToken,
  2. required String geoMatchSetId,
})

Implementation

Future<DeleteGeoMatchSetResponse> deleteGeoMatchSet({
  required String changeToken,
  required String geoMatchSetId,
}) async {
  ArgumentError.checkNotNull(changeToken, 'changeToken');
  _s.validateStringLength(
    'changeToken',
    changeToken,
    1,
    128,
    isRequired: true,
  );
  ArgumentError.checkNotNull(geoMatchSetId, 'geoMatchSetId');
  _s.validateStringLength(
    'geoMatchSetId',
    geoMatchSetId,
    1,
    128,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSWAF_20150824.DeleteGeoMatchSet'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'ChangeToken': changeToken,
      'GeoMatchSetId': geoMatchSetId,
    },
  );

  return DeleteGeoMatchSetResponse.fromJson(jsonResponse.body);
}