deleteIntegrationResourceProperty method

Future<void> deleteIntegrationResourceProperty({
  1. required String resourceArn,
})

This API is used for deleting the ResourceProperty of the Glue connection (for the source) or Glue database ARN (for the target).

May throw AccessDeniedException. May throw EntityNotFoundException. May throw InternalServerException. May throw InternalServiceException. May throw InvalidInputException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter resourceArn : The connection ARN of the source, or the database ARN of the target.

Implementation

Future<void> deleteIntegrationResourceProperty({
  required String resourceArn,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSGlue.DeleteIntegrationResourceProperty'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'ResourceArn': resourceArn,
    },
  );
}