listS3TableIntegrations method
Lists all S3 Table integrations in your account. We recommend using pagination to ensure that the operation returns quickly and successfully.
May throw AccessDeniedException.
May throw InternalServerException.
May throw TooManyRequestsException.
May throw ValidationException.
Parameter maxResults :
The maximum number of S3 Table integrations to return in a single call.
Parameter nextToken :
The token for the next set of results. A previous call generates this
token.
Implementation
Future<ListS3TableIntegrationsOutput> listS3TableIntegrations({
int? maxResults,
String? nextToken,
}) async {
_s.validateNumRange(
'maxResults',
maxResults,
1,
100,
);
final $payload = <String, dynamic>{
if (maxResults != null) 'MaxResults': maxResults,
if (nextToken != null) 'NextToken': nextToken,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/ListS3TableIntegrations',
exceptionFnMap: _exceptionFns,
);
return ListS3TableIntegrationsOutput.fromJson(response);
}