AWS ses documentation change
Summary
Added SAP ABAP SDK code example for VerifyDomainIdentity API
Security assessment
Documents domain verification security feature without addressing vulnerabilities. Improves guidance for security-critical identity verification process.
Diff
diff --git a/ses/latest/dg/ses_example_ses_VerifyDomainIdentity_section.md b/ses/latest/dg/ses_example_ses_VerifyDomainIdentity_section.md index 16d2d967a..90de99c72 100644 --- a//ses/latest/dg/ses_example_ses_VerifyDomainIdentity_section.md +++ b//ses/latest/dg/ses_example_ses_VerifyDomainIdentity_section.md @@ -142,0 +143,28 @@ 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. + DATA(lo_result) = lo_ses->verifydomainidentity( iv_domain = iv_domain_name ). + ov_token = lo_result->get_verificationtoken( ). + MESSAGE 'Domain 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 [VerifyDomainIdentity](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + +