deleteNotificationConfiguration method

Future<void> deleteNotificationConfiguration({
  1. required String autoScalingGroupName,
  2. required String topicARN,
})

Deletes the specified notification.

May throw ResourceContentionFault.

Parameter autoScalingGroupName : The name of the Auto Scaling group.

Parameter topicARN : The Amazon Resource Name (ARN) of the Amazon SNS topic.

Implementation

Future<void> deleteNotificationConfiguration({
  required String autoScalingGroupName,
  required String topicARN,
}) async {
  final $request = <String, String>{
    'AutoScalingGroupName': autoScalingGroupName,
    'TopicARN': topicARN,
  };
  await _protocol.send(
    $request,
    action: 'DeleteNotificationConfiguration',
    version: '2011-01-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
  );
}