getS3TableIntegration method

Future<GetS3TableIntegrationOutput> getS3TableIntegration({
  1. required String arn,
})

Retrieves information about a specific S3 Table integration, including its configuration, status, and metadata.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw TooManyRequestsException. May throw ValidationException.

Parameter arn : The Amazon Resource Name (ARN) of the S3 Table integration to retrieve.

Implementation

Future<GetS3TableIntegrationOutput> getS3TableIntegration({
  required String arn,
}) async {
  final $payload = <String, dynamic>{
    'Arn': arn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/GetS3TableIntegration',
    exceptionFnMap: _exceptionFns,
  );
  return GetS3TableIntegrationOutput.fromJson(response);
}