getNotificationConfiguration method

Future<GetNotificationConfigurationResponse> getNotificationConfiguration({
  1. required String arn,
})

Returns a specified NotificationConfiguration.

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

Parameter arn : The Amazon Resource Name (ARN) of the NotificationConfiguration to return.

Implementation

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