deleteOdbPeeringConnection method

Future<void> deleteOdbPeeringConnection({
  1. required String odbPeeringConnectionId,
})

Deletes an ODB peering connection.

When you delete an ODB peering connection, the underlying VPC peering connection is also deleted.

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

Parameter odbPeeringConnectionId : The unique identifier of the ODB peering connection to delete.

Implementation

Future<void> deleteOdbPeeringConnection({
  required String odbPeeringConnectionId,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.0',
    'X-Amz-Target': 'Odb.DeleteOdbPeeringConnection'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'odbPeeringConnectionId': odbPeeringConnectionId,
    },
  );
}