getRasterDataCollection method

Future<GetRasterDataCollectionOutput> getRasterDataCollection({
  1. required String arn,
})

Use this operation to get details of a specific raster data collection.

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

Parameter arn : The Amazon Resource Name (ARN) of the raster data collection.

Implementation

Future<GetRasterDataCollectionOutput> getRasterDataCollection({
  required String arn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/raster-data-collection/${Uri.encodeComponent(arn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetRasterDataCollectionOutput.fromJson(response);
}