AWS ses documentation change
Summary
Added SAP ABAP SDK code example for DeleteIdentity API
Security assessment
Documents identity management security feature but doesn't address specific vulnerabilities. Enhances documentation for security-related operation (identity deletion).
Diff
diff --git a/ses/latest/dg/ses_example_ses_DeleteIdentity_section.md b/ses/latest/dg/ses_example_ses_DeleteIdentity_section.md index 6b4e86106..755d10628 100644 --- a//ses/latest/dg/ses_example_ses_DeleteIdentity_section.md +++ b//ses/latest/dg/ses_example_ses_DeleteIdentity_section.md @@ -209,0 +210,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->deleteidentity( iv_identity = iv_identity ). + MESSAGE 'Identity deleted successfully' 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 [DeleteIdentity](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + +