amazonka-cloudwatch-events-2.0: Amazon EventBridge SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CloudWatchEvents.Types.ReplayDestination

Description

 
Synopsis

Documentation

data ReplayDestination Source #

A ReplayDestination object that contains details about a replay.

See: newReplayDestination smart constructor.

Constructors

ReplayDestination' 

Fields

  • filterArns :: Maybe [Text]

    A list of ARNs for rules to replay events to.

  • arn :: Text

    The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.

Instances

Instances details
FromJSON ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

ToJSON ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

Generic ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

Associated Types

type Rep ReplayDestination :: Type -> Type #

Read ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

Show ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

NFData ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

Methods

rnf :: ReplayDestination -> () #

Eq ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

Hashable ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

type Rep ReplayDestination Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.ReplayDestination

type Rep ReplayDestination = D1 ('MetaData "ReplayDestination" "Amazonka.CloudWatchEvents.Types.ReplayDestination" "amazonka-cloudwatch-events-2.0-GJzRBos1CnlE3BT39axMc5" 'False) (C1 ('MetaCons "ReplayDestination'" 'PrefixI 'True) (S1 ('MetaSel ('Just "filterArns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newReplayDestination Source #

Create a value of ReplayDestination with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:filterArns:ReplayDestination', replayDestination_filterArns - A list of ARNs for rules to replay events to.

$sel:arn:ReplayDestination', replayDestination_arn - The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.

replayDestination_filterArns :: Lens' ReplayDestination (Maybe [Text]) Source #

A list of ARNs for rules to replay events to.

replayDestination_arn :: Lens' ReplayDestination Text Source #

The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.