/AWS1/IF_CEX=>GETANOMALIES()¶
About GetAnomalies¶
Retrieves all of the cost anomalies detected on your account during the time period that's
specified by the DateInterval object. Anomalies are available for up to 90
days.
Method Signature¶
METHODS /AWS1/IF_CEX~GETANOMALIES
IMPORTING
!IV_MONITORARN TYPE /AWS1/CEXGENERICSTRING OPTIONAL
!IO_DATEINTERVAL TYPE REF TO /AWS1/CL_CEXANOMALYDATEINTER00 OPTIONAL
!IV_FEEDBACK TYPE /AWS1/CEXANOMALYFEEDBACKTYPE OPTIONAL
!IO_TOTALIMPACT TYPE REF TO /AWS1/CL_CEXTOTALIMPACTFILTER OPTIONAL
!IV_NEXTPAGETOKEN TYPE /AWS1/CEXNEXTPAGETOKEN OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/CEXPAGESIZE OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_cexgetanomaliesrsp
RAISING
/AWS1/CX_CEXINVALIDNEXTTOKENEX
/AWS1/CX_CEXLIMITEXCEEDEDEX
/AWS1/CX_CEXCLIENTEXC
/AWS1/CX_CEXSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
io_dateinterval TYPE REF TO /AWS1/CL_CEXANOMALYDATEINTER00 /AWS1/CL_CEXANOMALYDATEINTER00¶
Assigns the start and end dates for retrieving cost anomalies. The returned anomaly object will have an
AnomalyEndDatein the specified time range.
Optional arguments:¶
iv_monitorarn TYPE /AWS1/CEXGENERICSTRING /AWS1/CEXGENERICSTRING¶
Retrieves all of the cost anomalies detected for a specific cost anomaly monitor Amazon Resource Name (ARN).
iv_feedback TYPE /AWS1/CEXANOMALYFEEDBACKTYPE /AWS1/CEXANOMALYFEEDBACKTYPE¶
Filters anomaly results by the feedback field on the anomaly object.
io_totalimpact TYPE REF TO /AWS1/CL_CEXTOTALIMPACTFILTER /AWS1/CL_CEXTOTALIMPACTFILTER¶
Filters anomaly results by the total impact field on the anomaly object. For example, you can filter anomalies
GREATER_THAN 200.00to retrieve anomalies, with an estimated dollar impact greater than 200.
iv_nextpagetoken TYPE /AWS1/CEXNEXTPAGETOKEN /AWS1/CEXNEXTPAGETOKEN¶
The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.
iv_maxresults TYPE /AWS1/CEXPAGESIZE /AWS1/CEXPAGESIZE¶
The number of entries a paginated response contains.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_cexgetanomaliesrsp /AWS1/CL_CEXGETANOMALIESRSP¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->getanomalies(
io_dateinterval = new /aws1/cl_cexanomalydateinter00(
iv_enddate = |string|
iv_startdate = |string|
)
io_totalimpact = new /aws1/cl_cextotalimpactfilter(
iv_endvalue = '0.1'
iv_numericoperator = |string|
iv_startvalue = '0.1'
)
iv_feedback = |string|
iv_maxresults = 123
iv_monitorarn = |string|
iv_nextpagetoken = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
LOOP AT lo_result->get_anomalies( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_genericstring = lo_row_1->get_anomalyid( ).
lv_yearmonthday = lo_row_1->get_anomalystartdate( ).
lv_yearmonthday = lo_row_1->get_anomalyenddate( ).
lv_genericstring = lo_row_1->get_dimensionvalue( ).
LOOP AT lo_row_1->get_rootcauses( ) into lo_row_2.
lo_row_3 = lo_row_2.
IF lo_row_3 IS NOT INITIAL.
lv_genericstring = lo_row_3->get_service( ).
lv_genericstring = lo_row_3->get_region( ).
lv_genericstring = lo_row_3->get_linkedaccount( ).
lv_genericstring = lo_row_3->get_linkedaccountname( ).
lv_genericstring = lo_row_3->get_usagetype( ).
lo_rootcauseimpact = lo_row_3->get_impact( ).
IF lo_rootcauseimpact IS NOT INITIAL.
lv_genericdouble = lo_rootcauseimpact->get_contribution( ).
ENDIF.
ENDIF.
ENDLOOP.
lo_anomalyscore = lo_row_1->get_anomalyscore( ).
IF lo_anomalyscore IS NOT INITIAL.
lv_genericdouble = lo_anomalyscore->get_maxscore( ).
lv_genericdouble = lo_anomalyscore->get_currentscore( ).
ENDIF.
lo_impact = lo_row_1->get_impact( ).
IF lo_impact IS NOT INITIAL.
lv_genericdouble = lo_impact->get_maximpact( ).
lv_genericdouble = lo_impact->get_totalimpact( ).
lv_nullablenonnegativedoub = lo_impact->get_totalactualspend( ).
lv_nullablenonnegativedoub = lo_impact->get_totalexpectedspend( ).
lv_nullablenonnegativedoub = lo_impact->get_totalimpactpercentage( ).
ENDIF.
lv_genericstring = lo_row_1->get_monitorarn( ).
lv_anomalyfeedbacktype = lo_row_1->get_feedback( ).
ENDIF.
ENDLOOP.
lv_nextpagetoken = lo_result->get_nextpagetoken( ).
ENDIF.