SAP Cloud SDK for JavaScript - v4.5.1
    Preparing search index...

    Type Alias DestinationFromServiceBindingOptions

    DestinationFromServiceBindingOptions: {
        serviceBindingTransformFn?: ServiceBindingTransformFunction;
    } & (
        | { destinationName?: never; service: Service }
        | { destinationName: string; service?: never }
    )

    Options to customize the behavior of getDestinationFromServiceBinding.

    Type Declaration

    • { destinationName?: never; service: Service }
      • OptionaldestinationName?: never
      • service: Service

        A service binding to use directly instead of looking it up by name. Mandatory if no destination name is provided.

    • { destinationName: string; service?: never }
      • destinationName: string

        The name of the destination to retrieve from service bindings.

        Copyright Ⓒ 2026 SAP SE or an SAP affiliate company. All rights reserved.

      • Optionalservice?: never