/AWS1/IF_CFS=>GETAGGREGATECONFORMANCEPAC00()
¶
About GetAggregateConformancePackComplianceSummary¶
Returns the count of compliant and noncompliant conformance packs across all Amazon Web Services accounts and Amazon Web Services Regions in an aggregator. You can filter based on Amazon Web Services account ID or Amazon Web Services Region.
The results can return an empty result page, but if you have a nextToken, the results are displayed on the next page.
Method Signature¶
METHODS /AWS1/IF_CFS~GETAGGREGATECONFORMANCEPAC00
IMPORTING
!IV_CONFAGGREGATORNAME TYPE /AWS1/CFSCONFAGGREGATORNAME OPTIONAL
!IO_FILTERS TYPE REF TO /AWS1/CL_CFSAGGREGATECONFORM02 OPTIONAL
!IV_GROUPBYKEY TYPE /AWS1/CFSAGGREGATECONFORMANC00 OPTIONAL
!IV_LIMIT TYPE /AWS1/CFSLIMIT OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/CFSNEXTTOKEN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_cfsgetaggregateconf01
RAISING
/AWS1/CX_CFSINVALIDLIMITEX
/AWS1/CX_CFSINVALIDNEXTTOKENEX
/AWS1/CX_CFSNOSUCHCONFAGGREG00
/AWS1/CX_CFSVALIDATIONEX
/AWS1/CX_CFSCLIENTEXC
/AWS1/CX_CFSSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_confaggregatorname
TYPE /AWS1/CFSCONFAGGREGATORNAME
/AWS1/CFSCONFAGGREGATORNAME
¶
The name of the configuration aggregator.
Optional arguments:¶
io_filters
TYPE REF TO /AWS1/CL_CFSAGGREGATECONFORM02
/AWS1/CL_CFSAGGREGATECONFORM02
¶
Filters the results based on the
AggregateConformancePackComplianceSummaryFilters
object.
iv_groupbykey
TYPE /AWS1/CFSAGGREGATECONFORMANC00
/AWS1/CFSAGGREGATECONFORMANC00
¶
Groups the result based on Amazon Web Services account ID or Amazon Web Services Region.
iv_limit
TYPE /AWS1/CFSLIMIT
/AWS1/CFSLIMIT
¶
The maximum number of results returned on each page. The default is maximum. If you specify 0, Config uses the default.
iv_nexttoken
TYPE /AWS1/CFSNEXTTOKEN
/AWS1/CFSNEXTTOKEN
¶
The
nextToken
string returned on a previous page that you use to get the next page of results in a paginated response.
RETURNING¶
oo_output
TYPE REF TO /aws1/cl_cfsgetaggregateconf01
/AWS1/CL_CFSGETAGGREGATECONF01
¶
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->getaggregateconformancepac00(
io_filters = new /aws1/cl_cfsaggregateconform02(
iv_accountid = |string|
iv_awsregion = |string|
)
iv_confaggregatorname = |string|
iv_groupbykey = |string|
iv_limit = 123
iv_nexttoken = |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_aggregateconformancepa00( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lo_aggregateconformancepac = lo_row_1->get_compliancesummary( ).
IF lo_aggregateconformancepac IS NOT INITIAL.
lv_integer = lo_aggregateconformancepac->get_compliantconformancepa00( ).
lv_integer = lo_aggregateconformancepac->get_noncompconformancepackct( ).
ENDIF.
lv_stringwithcharlimit256 = lo_row_1->get_groupname( ).
ENDIF.
ENDLOOP.
lv_stringwithcharlimit256 = lo_result->get_groupbykey( ).
lv_nexttoken = lo_result->get_nexttoken( ).
ENDIF.