文件範例儲存庫中有更多 AWS SDK可用的範例。 AWS SDK GitHub
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
DeleteEndpoint
搭配 使用 AWS SDK
下列程式碼範例示範如何使用 DeleteEndpoint
。
動作範例是大型程式的程式碼摘錄,必須在內容中執行。您可以在下列程式碼範例的內容中看到此動作:
- SAP ABAP
-
- SDK 適用於 SAP ABAP
-
"Delete an endpoint."
TRY.
lo_sgm->deleteendpoint(
iv_endpointname = iv_endpoint_name
).
MESSAGE 'Endpoint configuration deleted.' TYPE 'I'.
CATCH /aws1/cx_rt_service_generic INTO DATA(lo_endpoint_exception).
DATA(lv_endpoint_error) = |"{ lo_endpoint_exception->av_err_code }" - { lo_endpoint_exception->av_err_msg }|.
MESSAGE lv_endpoint_error TYPE 'E'.
ENDTRY.
"Delete an endpoint configuration."
TRY.
lo_sgm->deleteendpointconfig(
iv_endpointconfigname = iv_endpoint_config_name
).
MESSAGE 'Endpoint deleted.' TYPE 'I'.
CATCH /aws1/cx_rt_service_generic INTO DATA(lo_endpointconfig_exception).
DATA(lv_endpointconfig_error) = |"{ lo_endpointconfig_exception->av_err_code }" - { lo_endpointconfig_exception->av_err_msg }|.
MESSAGE lv_endpointconfig_error TYPE 'E'.
ENDTRY.