AWS code-library documentation change
Summary
Added SAP ABAP code example for DescribeTopicsDetectionJob operation
Security assessment
Change adds routine documentation for a natural language processing job monitoring feature. No security-specific content or vulnerabilities addressed.
Diff
diff --git a/code-library/latest/ug/comprehend_example_comprehend_DescribeTopicsDetectionJob_section.md b/code-library/latest/ug/comprehend_example_comprehend_DescribeTopicsDetectionJob_section.md index 435e0efd0..e12db074e 100644 --- a//code-library/latest/ug/comprehend_example_comprehend_DescribeTopicsDetectionJob_section.md +++ b//code-library/latest/ug/comprehend_example_comprehend_DescribeTopicsDetectionJob_section.md @@ -109,0 +110,33 @@ 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/cpd#code-examples). + + + TRY. + oo_result = lo_cpd->describetopicsdetectionjob( + iv_jobid = iv_job_id + ). + MESSAGE 'Topics detection job described.' TYPE 'I'. + CATCH /aws1/cx_cpdinvalidrequestex. + MESSAGE 'Invalid request.' TYPE 'E'. + CATCH /aws1/cx_cpdjobnotfoundex. + MESSAGE 'Job not found.' TYPE 'E'. + CATCH /aws1/cx_cpdtoomanyrequestsex. + MESSAGE 'Too many requests.' TYPE 'E'. + CATCH /aws1/cx_cpdinternalserverex. + MESSAGE 'Internal server error occurred.' TYPE 'E'. + ENDTRY. + + + + * For API details, see [DescribeTopicsDetectionJob](https://docs.aws.amazon.com/sdk-for-sap-abap/v1/api/latest/index.html) in _AWS SDK for SAP ABAP API reference_. + + + +