Skip to content

/AWS1/CL_IOT=>DESCRIBEFLEETMETRIC()

About DescribeFleetMetric

Gets information about the specified fleet metric.

Requires permission to access the DescribeFleetMetric action.

Method Signature

IMPORTING

Required arguments:

iv_metricname TYPE /AWS1/IOTFLEETMETRICNAME /AWS1/IOTFLEETMETRICNAME

The name of the fleet metric to describe.

RETURNING

oo_output TYPE REF TO /aws1/cl_iotdscfleetmetricrsp /AWS1/CL_IOTDSCFLEETMETRICRSP

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->/aws1/if_iot~describefleetmetric( |string| ).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_fleetmetricname = lo_result->get_metricname( ).
  lv_querystring = lo_result->get_querystring( ).
  lo_aggregationtype = lo_result->get_aggregationtype( ).
  IF lo_aggregationtype IS NOT INITIAL.
    lv_aggregationtypename = lo_aggregationtype->get_name( ).
    LOOP AT lo_aggregationtype->get_values( ) into lo_row.
      lo_row_1 = lo_row.
      IF lo_row_1 IS NOT INITIAL.
        lv_aggregationtypevalue = lo_row_1->get_value( ).
      ENDIF.
    ENDLOOP.
  ENDIF.
  lv_fleetmetricperiod = lo_result->get_period( ).
  lv_aggregationfield = lo_result->get_aggregationfield( ).
  lv_fleetmetricdescription = lo_result->get_description( ).
  lv_queryversion = lo_result->get_queryversion( ).
  lv_indexname = lo_result->get_indexname( ).
  lv_creationdate = lo_result->get_creationdate( ).
  lv_lastmodifieddate = lo_result->get_lastmodifieddate( ).
  lv_fleetmetricunit = lo_result->get_unit( ).
  lv_version = lo_result->get_version( ).
  lv_fleetmetricarn = lo_result->get_metricarn( ).
ENDIF.