deleteIntegration method
Deletes a zero-ETL integration or S3 event integration with Amazon Redshift.
May throw IntegrationConflictOperationFault.
May throw IntegrationConflictStateFault.
May throw IntegrationNotFoundFault.
May throw UnsupportedOperationFault.
Parameter integrationArn :
The unique identifier of the integration to delete.
Implementation
Future<Integration> deleteIntegration({
required String integrationArn,
}) async {
final $request = <String, String>{
'IntegrationArn': integrationArn,
};
final $result = await _protocol.send(
$request,
action: 'DeleteIntegration',
version: '2012-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
resultWrapper: 'DeleteIntegrationResult',
);
return Integration.fromXml($result);
}