listResourcesForWebACL method

Future<ListResourcesForWebACLResponse> listResourcesForWebACL({
  1. required String webACLId,
  2. ResourceType? resourceType,
})

Implementation

Future<ListResourcesForWebACLResponse> listResourcesForWebACL({
  required String webACLId,
  ResourceType? resourceType,
}) async {
  ArgumentError.checkNotNull(webACLId, 'webACLId');
  _s.validateStringLength(
    'webACLId',
    webACLId,
    1,
    128,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSWAF_Regional_20161128.ListResourcesForWebACL'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'WebACLId': webACLId,
      if (resourceType != null) 'ResourceType': resourceType.toValue(),
    },
  );

  return ListResourcesForWebACLResponse.fromJson(jsonResponse.body);
}