AWS ses documentation change
Summary
Added SAP ABAP SDK code example for DeleteEmailIdentity API
Security assessment
The change only adds a new code example for identity deletion. No security vulnerabilities or security-specific features are mentioned in the diff.
Diff
diff --git a/ses/latest/dg/sesv2_example_sesv2_DeleteEmailIdentity_section.md b/ses/latest/dg/sesv2_example_sesv2_DeleteEmailIdentity_section.md index 8df315af7..d720189e5 100644 --- a//ses/latest/dg/sesv2_example_sesv2_DeleteEmailIdentity_section.md +++ b//ses/latest/dg/sesv2_example_sesv2_DeleteEmailIdentity_section.md @@ -198,0 +199,29 @@ There's more on GitHub. Find the complete example and learn how to set up and ru +SAP ABAP + + +**SDK for SAP ABAP** + + +###### Note + +There's more on GitHub. Find the complete example and learn how to set up and run in the [AWS Code Examples Repository](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/sap-abap/services/se2#code-examples). + + + TRY. + lo_se2->deleteemailidentity( + iv_emailidentity = iv_email_identity ). + MESSAGE 'Email identity deleted successfully.' TYPE 'I'. + CATCH /aws1/cx_se2notfoundexception. + MESSAGE 'Email identity not found.' TYPE 'I'. + CATCH /aws1/cx_se2badrequestex INTO DATA(lo_bad_request). + MESSAGE 'Bad request.' TYPE 'I'. + RAISE EXCEPTION lo_bad_request. + ENDTRY. + + + + * For API details, see [DeleteEmailIdentity](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + +