AWS code-library documentation change
Summary
Added SAP ABAP code example for VerifyEmailIdentity operation
Security assessment
The change documents email verification which helps prevent unauthorized email sending. No evidence shows this addresses a specific security incident.
Diff
diff --git a/code-library/latest/ug/ses_example_ses_VerifyEmailIdentity_section.md b/code-library/latest/ug/ses_example_ses_VerifyEmailIdentity_section.md index 5554a3fd9..acfe2aa88 100644 --- a//code-library/latest/ug/ses_example_ses_VerifyEmailIdentity_section.md +++ b//code-library/latest/ug/ses_example_ses_VerifyEmailIdentity_section.md @@ -264,0 +265,27 @@ 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/ses#code-examples). + + + TRY. + lo_ses->verifyemailidentity( iv_emailaddress = iv_email_address ). + MESSAGE 'Email verification initiated' TYPE 'I'. + CATCH /aws1/cx_rt_generic INTO DATA(lo_ex). + DATA(lv_error) = |An error occurred: { lo_ex->get_text( ) }|. + MESSAGE lv_error TYPE 'I'. + RAISE EXCEPTION lo_ex. + ENDTRY. + + + + * For API details, see [VerifyEmailIdentity](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + +