deleteS3TableIntegration method
Deletes an S3 Table integration and its associated data. This operation removes the connection between CloudWatch Observability Admin and S3 Tables.
May throw AccessDeniedException.
May throw InternalServerException.
May throw InvalidStateException.
May throw ServiceQuotaExceededException.
May throw TooManyRequestsException.
May throw ValidationException.
Parameter arn :
The Amazon Resource Name (ARN) of the S3 Table integration to delete.
Implementation
Future<void> deleteS3TableIntegration({
required String arn,
}) async {
final $payload = <String, dynamic>{
'Arn': arn,
};
await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DeleteS3TableIntegration',
exceptionFnMap: _exceptionFns,
);
}