deleteResourceEndpointAssociation method

Future<DeleteResourceEndpointAssociationResponse> deleteResourceEndpointAssociation({
  1. required String resourceEndpointAssociationIdentifier,
})

Disassociates the resource configuration from the resource VPC endpoint.

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

Parameter resourceEndpointAssociationIdentifier : The ID or ARN of the association.

Implementation

Future<DeleteResourceEndpointAssociationResponse>
    deleteResourceEndpointAssociation({
  required String resourceEndpointAssociationIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/resourceendpointassociations/${Uri.encodeComponent(resourceEndpointAssociationIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteResourceEndpointAssociationResponse.fromJson(response);
}