deleteCodeSecurityIntegration method

Future<DeleteCodeSecurityIntegrationResponse> deleteCodeSecurityIntegration({
  1. required String integrationArn,
})

Deletes a code security integration.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter integrationArn : The Amazon Resource Name (ARN) of the code security integration to delete.

Implementation

Future<DeleteCodeSecurityIntegrationResponse> deleteCodeSecurityIntegration({
  required String integrationArn,
}) async {
  final $payload = <String, dynamic>{
    'integrationArn': integrationArn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/codesecurity/integration/delete',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteCodeSecurityIntegrationResponse.fromJson(response);
}