getDbInstance method

Future<GetDbInstanceOutput> getDbInstance({
  1. required String identifier,
})

Returns a Timestream for InfluxDB DB instance.

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

Parameter identifier : The id of the DB instance.

Implementation

Future<GetDbInstanceOutput> getDbInstance({
  required String identifier,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.0',
    'X-Amz-Target': 'AmazonTimestreamInfluxDB.GetDbInstance'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'identifier': identifier,
    },
  );

  return GetDbInstanceOutput.fromJson(jsonResponse.body);
}