getApplicationComponentDetails method

Future<GetApplicationComponentDetailsResponse> getApplicationComponentDetails({
  1. required String applicationComponentId,
})

Retrieves details about an application component.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter applicationComponentId : The ID of the application component. The ID is unique within an AWS account.

Implementation

Future<GetApplicationComponentDetailsResponse>
    getApplicationComponentDetails({
  required String applicationComponentId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/get-applicationcomponent-details/${Uri.encodeComponent(applicationComponentId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetApplicationComponentDetailsResponse.fromJson(response);
}