Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sap-abap/services/emr/#awsex#cl_emr_actions.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ CLASS /awsex/cl_emr_actions DEFINITION
!it_applications TYPE /aws1/cl_emrapplication=>tt_applicationlist
!iv_job_flow_role TYPE /aws1/emrxmlstring
!iv_service_role TYPE /aws1/emrxmlstring
!iv_master_sec_grp TYPE /aws1/emrxmlstringmaxlen256
!iv_slave_sec_grp TYPE /aws1/emrxmlstringmaxlen256
!iv_primary_sec_grp TYPE /aws1/emrxmlstringmaxlen256
!iv_secondary_sec_grp TYPE /aws1/emrxmlstringmaxlen256
!it_steps TYPE /aws1/cl_emrstepconfig=>tt_stepconfiglist
RETURNING
VALUE(ov_cluster_id) TYPE /aws1/emrxmlstringmaxlen256
Expand Down Expand Up @@ -88,8 +88,8 @@ CLASS /AWSEX/CL_EMR_ACTIONS IMPLEMENTATION.
iv_slaveinstancetype = 'm5.xlarge'
iv_instancecount = 3
iv_keepjobflowalivewhennos00 = iv_keep_alive
iv_emrmanagedmastersecgroup = iv_master_sec_grp
iv_emrmanagedslavesecgroup = iv_slave_sec_grp
iv_emrmanagedmastersecgroup = iv_primary_sec_grp
iv_emrmanagedslavesecgroup = iv_secondary_sec_grp
).

DATA(lo_result) = lo_emr->runjobflow(
Expand Down
16 changes: 8 additions & 8 deletions sap-abap/services/rsh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ For prerequisites, see the [README](../../README.md#Prerequisites) in the `sap-a

Code excerpts that show you how to call individual service functions.

- [CreateCluster](#awsex#cl_rsh_actions.clas.abap#L63)
- [DeleteCluster](#awsex#cl_rsh_actions.clas.abap#L99)
- [DescribeClusters](#awsex#cl_rsh_actions.clas.abap#L156)
- [DescribeStatement](../rsd/#awsex#cl_rsd_actions.clas.abap#L150)
- [ExecuteStatement](../rsd/#awsex#cl_rsd_actions.clas.abap#L102)
- [GetStatementResult](../rsd/#awsex#cl_rsd_actions.clas.abap#L182)
- [ListDatabases](../rsd/#awsex#cl_rsd_actions.clas.abap#L69)
- [ModifyCluster](#awsex#cl_rsh_actions.clas.abap#L126)
- [CreateCluster](%23awsex%23cl_rsh_actions.clas.abap#L63)
- [DeleteCluster](%23awsex%23cl_rsh_actions.clas.abap#L99)
- [DescribeClusters](%23awsex%23cl_rsh_actions.clas.abap#L156)
- [DescribeStatement](../rsd/%23awsex%23cl_rsd_actions.clas.abap#L150)
- [ExecuteStatement](../rsd/%23awsex%23cl_rsd_actions.clas.abap#L102)
- [GetStatementResult](../rsd/%23awsex%23cl_rsd_actions.clas.abap#L182)
- [ListDatabases](../rsd/%23awsex%23cl_rsd_actions.clas.abap#L69)
- [ModifyCluster](%23awsex%23cl_rsh_actions.clas.abap#L126)


<!--custom.examples.start-->
Expand Down
Loading