{-# 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.CloudWatchEvents.Types.EventBus -- 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.CloudWatchEvents.Types.EventBus 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 -- | An event bus receives events from a source and routes them to rules -- associated with that event bus. Your account\'s default event bus -- receives events from Amazon Web Services services. A custom event bus -- can receive events from your custom applications and services. A partner -- event bus receives events from an event source created by an SaaS -- partner. These events come from the partners services or applications. -- -- /See:/ 'newEventBus' smart constructor. data EventBus = EventBus' { -- | The ARN of the event bus. arn :: Prelude.Maybe Prelude.Text, -- | The name of the event bus. name :: Prelude.Maybe Prelude.Text, -- | The permissions policy of the event bus, describing which other Amazon -- Web Services accounts can write events to this event bus. policy :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'EventBus' 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: -- -- 'arn', 'eventBus_arn' - The ARN of the event bus. -- -- 'name', 'eventBus_name' - The name of the event bus. -- -- 'policy', 'eventBus_policy' - The permissions policy of the event bus, describing which other Amazon -- Web Services accounts can write events to this event bus. newEventBus :: EventBus newEventBus = EventBus' { arn = Prelude.Nothing, name = Prelude.Nothing, policy = Prelude.Nothing } -- | The ARN of the event bus. eventBus_arn :: Lens.Lens' EventBus (Prelude.Maybe Prelude.Text) eventBus_arn = Lens.lens (\EventBus' {arn} -> arn) (\s@EventBus' {} a -> s {arn = a} :: EventBus) -- | The name of the event bus. eventBus_name :: Lens.Lens' EventBus (Prelude.Maybe Prelude.Text) eventBus_name = Lens.lens (\EventBus' {name} -> name) (\s@EventBus' {} a -> s {name = a} :: EventBus) -- | The permissions policy of the event bus, describing which other Amazon -- Web Services accounts can write events to this event bus. eventBus_policy :: Lens.Lens' EventBus (Prelude.Maybe Prelude.Text) eventBus_policy = Lens.lens (\EventBus' {policy} -> policy) (\s@EventBus' {} a -> s {policy = a} :: EventBus) instance Data.FromJSON EventBus where parseJSON = Data.withObject "EventBus" ( \x -> EventBus' Prelude.<$> (x Data..:? "Arn") Prelude.<*> (x Data..:? "Name") Prelude.<*> (x Data..:? "Policy") ) instance Prelude.Hashable EventBus where hashWithSalt _salt EventBus' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` name `Prelude.hashWithSalt` policy instance Prelude.NFData EventBus where rnf EventBus' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf policy