getManagedNotificationConfiguration method
Future<GetManagedNotificationConfigurationResponse>
getManagedNotificationConfiguration({
- required String arn,
Returns a specified ManagedNotificationConfiguration.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter arn :
The Amazon Resource Name (ARN) of the
ManagedNotificationConfiguration to return.
Implementation
Future<GetManagedNotificationConfigurationResponse>
getManagedNotificationConfiguration({
required String arn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/managed-notification-configurations/${Uri.encodeComponent(arn)}',
exceptionFnMap: _exceptionFns,
);
return GetManagedNotificationConfigurationResponse.fromJson(response);
}