{-# 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.DMS.Types.EventSubscription -- 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.DMS.Types.EventSubscription 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 an event notification subscription created by the -- @CreateEventSubscription@ operation. -- -- /See:/ 'newEventSubscription' smart constructor. data EventSubscription = EventSubscription' { -- | The DMS event notification subscription Id. custSubscriptionId :: Prelude.Maybe Prelude.Text, -- | The Amazon Web Services customer account associated with the DMS event -- notification subscription. customerAwsId :: Prelude.Maybe Prelude.Text, -- | Boolean value that indicates if the event subscription is enabled. enabled :: Prelude.Maybe Prelude.Bool, -- | A lists of event categories. eventCategoriesList :: Prelude.Maybe [Prelude.Text], -- | The topic ARN of the DMS event notification subscription. snsTopicArn :: Prelude.Maybe Prelude.Text, -- | A list of source Ids for the event subscription. sourceIdsList :: Prelude.Maybe [Prelude.Text], -- | The type of DMS resource that generates events. -- -- Valid values: replication-instance | replication-server | security-group -- | replication-task sourceType :: Prelude.Maybe Prelude.Text, -- | The status of the DMS event notification subscription. -- -- Constraints: -- -- Can be one of the following: creating | modifying | deleting | active | -- no-permission | topic-not-exist -- -- The status \"no-permission\" indicates that DMS no longer has permission -- to post to the SNS topic. The status \"topic-not-exist\" indicates that -- the topic was deleted after the subscription was created. status :: Prelude.Maybe Prelude.Text, -- | The time the DMS event notification subscription was created. subscriptionCreationTime :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'EventSubscription' 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: -- -- 'custSubscriptionId', 'eventSubscription_custSubscriptionId' - The DMS event notification subscription Id. -- -- 'customerAwsId', 'eventSubscription_customerAwsId' - The Amazon Web Services customer account associated with the DMS event -- notification subscription. -- -- 'enabled', 'eventSubscription_enabled' - Boolean value that indicates if the event subscription is enabled. -- -- 'eventCategoriesList', 'eventSubscription_eventCategoriesList' - A lists of event categories. -- -- 'snsTopicArn', 'eventSubscription_snsTopicArn' - The topic ARN of the DMS event notification subscription. -- -- 'sourceIdsList', 'eventSubscription_sourceIdsList' - A list of source Ids for the event subscription. -- -- 'sourceType', 'eventSubscription_sourceType' - The type of DMS resource that generates events. -- -- Valid values: replication-instance | replication-server | security-group -- | replication-task -- -- 'status', 'eventSubscription_status' - The status of the DMS event notification subscription. -- -- Constraints: -- -- Can be one of the following: creating | modifying | deleting | active | -- no-permission | topic-not-exist -- -- The status \"no-permission\" indicates that DMS no longer has permission -- to post to the SNS topic. The status \"topic-not-exist\" indicates that -- the topic was deleted after the subscription was created. -- -- 'subscriptionCreationTime', 'eventSubscription_subscriptionCreationTime' - The time the DMS event notification subscription was created. newEventSubscription :: EventSubscription newEventSubscription = EventSubscription' { custSubscriptionId = Prelude.Nothing, customerAwsId = Prelude.Nothing, enabled = Prelude.Nothing, eventCategoriesList = Prelude.Nothing, snsTopicArn = Prelude.Nothing, sourceIdsList = Prelude.Nothing, sourceType = Prelude.Nothing, status = Prelude.Nothing, subscriptionCreationTime = Prelude.Nothing } -- | The DMS event notification subscription Id. eventSubscription_custSubscriptionId :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Text) eventSubscription_custSubscriptionId = Lens.lens (\EventSubscription' {custSubscriptionId} -> custSubscriptionId) (\s@EventSubscription' {} a -> s {custSubscriptionId = a} :: EventSubscription) -- | The Amazon Web Services customer account associated with the DMS event -- notification subscription. eventSubscription_customerAwsId :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Text) eventSubscription_customerAwsId = Lens.lens (\EventSubscription' {customerAwsId} -> customerAwsId) (\s@EventSubscription' {} a -> s {customerAwsId = a} :: EventSubscription) -- | Boolean value that indicates if the event subscription is enabled. eventSubscription_enabled :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Bool) eventSubscription_enabled = Lens.lens (\EventSubscription' {enabled} -> enabled) (\s@EventSubscription' {} a -> s {enabled = a} :: EventSubscription) -- | A lists of event categories. eventSubscription_eventCategoriesList :: Lens.Lens' EventSubscription (Prelude.Maybe [Prelude.Text]) eventSubscription_eventCategoriesList = Lens.lens (\EventSubscription' {eventCategoriesList} -> eventCategoriesList) (\s@EventSubscription' {} a -> s {eventCategoriesList = a} :: EventSubscription) Prelude.. Lens.mapping Lens.coerced -- | The topic ARN of the DMS event notification subscription. eventSubscription_snsTopicArn :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Text) eventSubscription_snsTopicArn = Lens.lens (\EventSubscription' {snsTopicArn} -> snsTopicArn) (\s@EventSubscription' {} a -> s {snsTopicArn = a} :: EventSubscription) -- | A list of source Ids for the event subscription. eventSubscription_sourceIdsList :: Lens.Lens' EventSubscription (Prelude.Maybe [Prelude.Text]) eventSubscription_sourceIdsList = Lens.lens (\EventSubscription' {sourceIdsList} -> sourceIdsList) (\s@EventSubscription' {} a -> s {sourceIdsList = a} :: EventSubscription) Prelude.. Lens.mapping Lens.coerced -- | The type of DMS resource that generates events. -- -- Valid values: replication-instance | replication-server | security-group -- | replication-task eventSubscription_sourceType :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Text) eventSubscription_sourceType = Lens.lens (\EventSubscription' {sourceType} -> sourceType) (\s@EventSubscription' {} a -> s {sourceType = a} :: EventSubscription) -- | The status of the DMS event notification subscription. -- -- Constraints: -- -- Can be one of the following: creating | modifying | deleting | active | -- no-permission | topic-not-exist -- -- The status \"no-permission\" indicates that DMS no longer has permission -- to post to the SNS topic. The status \"topic-not-exist\" indicates that -- the topic was deleted after the subscription was created. eventSubscription_status :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Text) eventSubscription_status = Lens.lens (\EventSubscription' {status} -> status) (\s@EventSubscription' {} a -> s {status = a} :: EventSubscription) -- | The time the DMS event notification subscription was created. eventSubscription_subscriptionCreationTime :: Lens.Lens' EventSubscription (Prelude.Maybe Prelude.Text) eventSubscription_subscriptionCreationTime = Lens.lens (\EventSubscription' {subscriptionCreationTime} -> subscriptionCreationTime) (\s@EventSubscription' {} a -> s {subscriptionCreationTime = a} :: EventSubscription) instance Data.FromJSON EventSubscription where parseJSON = Data.withObject "EventSubscription" ( \x -> EventSubscription' Prelude.<$> (x Data..:? "CustSubscriptionId") Prelude.<*> (x Data..:? "CustomerAwsId") Prelude.<*> (x Data..:? "Enabled") Prelude.<*> ( x Data..:? "EventCategoriesList" Data..!= Prelude.mempty ) Prelude.<*> (x Data..:? "SnsTopicArn") Prelude.<*> (x Data..:? "SourceIdsList" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "SourceType") Prelude.<*> (x Data..:? "Status") Prelude.<*> (x Data..:? "SubscriptionCreationTime") ) instance Prelude.Hashable EventSubscription where hashWithSalt _salt EventSubscription' {..} = _salt `Prelude.hashWithSalt` custSubscriptionId `Prelude.hashWithSalt` customerAwsId `Prelude.hashWithSalt` enabled `Prelude.hashWithSalt` eventCategoriesList `Prelude.hashWithSalt` snsTopicArn `Prelude.hashWithSalt` sourceIdsList `Prelude.hashWithSalt` sourceType `Prelude.hashWithSalt` status `Prelude.hashWithSalt` subscriptionCreationTime instance Prelude.NFData EventSubscription where rnf EventSubscription' {..} = Prelude.rnf custSubscriptionId `Prelude.seq` Prelude.rnf customerAwsId `Prelude.seq` Prelude.rnf enabled `Prelude.seq` Prelude.rnf eventCategoriesList `Prelude.seq` Prelude.rnf snsTopicArn `Prelude.seq` Prelude.rnf sourceIdsList `Prelude.seq` Prelude.rnf sourceType `Prelude.seq` Prelude.rnf status `Prelude.seq` Prelude.rnf subscriptionCreationTime