getManagedThingMetaData method

Future<GetManagedThingMetaDataResponse> getManagedThingMetaData({
  1. required String identifier,
})

Get the metadata information for a managed thing.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceUnavailableException. May throw ThrottlingException. May throw UnauthorizedException. May throw ValidationException.

Parameter identifier : The managed thing id.

Implementation

Future<GetManagedThingMetaDataResponse> getManagedThingMetaData({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/managed-things-metadata/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetManagedThingMetaDataResponse.fromJson(response);
}