{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.AutoScaling.Types.NotificationConfiguration -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.AutoScaling.Types.NotificationConfiguration where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | Describes a notification. -- -- /See:/ 'newNotificationConfiguration' smart constructor. data NotificationConfiguration = NotificationConfiguration' { -- | The name of the Auto Scaling group. autoScalingGroupName :: Prelude.Maybe Prelude.Text, -- | One of the following event notification types: -- -- - @autoscaling:EC2_INSTANCE_LAUNCH@ -- -- - @autoscaling:EC2_INSTANCE_LAUNCH_ERROR@ -- -- - @autoscaling:EC2_INSTANCE_TERMINATE@ -- -- - @autoscaling:EC2_INSTANCE_TERMINATE_ERROR@ -- -- - @autoscaling:TEST_NOTIFICATION@ notificationType :: Prelude.Maybe Prelude.Text, -- | The Amazon Resource Name (ARN) of the Amazon SNS topic. topicARN :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'NotificationConfiguration' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'autoScalingGroupName', 'notificationConfiguration_autoScalingGroupName' - The name of the Auto Scaling group. -- -- 'notificationType', 'notificationConfiguration_notificationType' - One of the following event notification types: -- -- - @autoscaling:EC2_INSTANCE_LAUNCH@ -- -- - @autoscaling:EC2_INSTANCE_LAUNCH_ERROR@ -- -- - @autoscaling:EC2_INSTANCE_TERMINATE@ -- -- - @autoscaling:EC2_INSTANCE_TERMINATE_ERROR@ -- -- - @autoscaling:TEST_NOTIFICATION@ -- -- 'topicARN', 'notificationConfiguration_topicARN' - The Amazon Resource Name (ARN) of the Amazon SNS topic. newNotificationConfiguration :: NotificationConfiguration newNotificationConfiguration = NotificationConfiguration' { autoScalingGroupName = Prelude.Nothing, notificationType = Prelude.Nothing, topicARN = Prelude.Nothing } -- | The name of the Auto Scaling group. notificationConfiguration_autoScalingGroupName :: Lens.Lens' NotificationConfiguration (Prelude.Maybe Prelude.Text) notificationConfiguration_autoScalingGroupName = Lens.lens (\NotificationConfiguration' {autoScalingGroupName} -> autoScalingGroupName) (\s@NotificationConfiguration' {} a -> s {autoScalingGroupName = a} :: NotificationConfiguration) -- | One of the following event notification types: -- -- - @autoscaling:EC2_INSTANCE_LAUNCH@ -- -- - @autoscaling:EC2_INSTANCE_LAUNCH_ERROR@ -- -- - @autoscaling:EC2_INSTANCE_TERMINATE@ -- -- - @autoscaling:EC2_INSTANCE_TERMINATE_ERROR@ -- -- - @autoscaling:TEST_NOTIFICATION@ notificationConfiguration_notificationType :: Lens.Lens' NotificationConfiguration (Prelude.Maybe Prelude.Text) notificationConfiguration_notificationType = Lens.lens (\NotificationConfiguration' {notificationType} -> notificationType) (\s@NotificationConfiguration' {} a -> s {notificationType = a} :: NotificationConfiguration) -- | The Amazon Resource Name (ARN) of the Amazon SNS topic. notificationConfiguration_topicARN :: Lens.Lens' NotificationConfiguration (Prelude.Maybe Prelude.Text) notificationConfiguration_topicARN = Lens.lens (\NotificationConfiguration' {topicARN} -> topicARN) (\s@NotificationConfiguration' {} a -> s {topicARN = a} :: NotificationConfiguration) instance Data.FromXML NotificationConfiguration where parseXML x = NotificationConfiguration' Prelude.<$> (x Data..@? "AutoScalingGroupName") Prelude.<*> (x Data..@? "NotificationType") Prelude.<*> (x Data..@? "TopicARN") instance Prelude.Hashable NotificationConfiguration where hashWithSalt _salt NotificationConfiguration' {..} = _salt `Prelude.hashWithSalt` autoScalingGroupName `Prelude.hashWithSalt` notificationType `Prelude.hashWithSalt` topicARN instance Prelude.NFData NotificationConfiguration where rnf NotificationConfiguration' {..} = Prelude.rnf autoScalingGroupName `Prelude.seq` Prelude.rnf notificationType `Prelude.seq` Prelude.rnf topicARN