amazonka-pipes-2.0: Amazon EventBridge Pipes 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.Pipes.Types.PipeEnrichmentHttpParameters

Description

 
Synopsis

Documentation

data PipeEnrichmentHttpParameters Source #

These are custom parameter to be used when the target is an API Gateway REST APIs or EventBridge ApiDestinations. In the latter case, these are merged with any InvocationParameters specified on the Connection, with any values from the Connection taking precedence.

See: newPipeEnrichmentHttpParameters smart constructor.

Constructors

PipeEnrichmentHttpParameters' 

Fields

Instances

Instances details
FromJSON PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

ToJSON PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

Generic PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

Associated Types

type Rep PipeEnrichmentHttpParameters :: Type -> Type #

Show PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

NFData PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

Eq PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

Hashable PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

type Rep PipeEnrichmentHttpParameters Source # 
Instance details

Defined in Amazonka.Pipes.Types.PipeEnrichmentHttpParameters

type Rep PipeEnrichmentHttpParameters = D1 ('MetaData "PipeEnrichmentHttpParameters" "Amazonka.Pipes.Types.PipeEnrichmentHttpParameters" "amazonka-pipes-2.0-DDuNjbjVfgsJFLlibzr06i" 'False) (C1 ('MetaCons "PipeEnrichmentHttpParameters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "headerParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text (Sensitive Text)))) :*: (S1 ('MetaSel ('Just "pathParameterValues") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Sensitive Text])) :*: S1 ('MetaSel ('Just "queryStringParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text (Sensitive Text)))))))

newPipeEnrichmentHttpParameters :: PipeEnrichmentHttpParameters Source #

Create a value of PipeEnrichmentHttpParameters 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:headerParameters:PipeEnrichmentHttpParameters', pipeEnrichmentHttpParameters_headerParameters - The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.

$sel:pathParameterValues:PipeEnrichmentHttpParameters', pipeEnrichmentHttpParameters_pathParameterValues - The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").

$sel:queryStringParameters:PipeEnrichmentHttpParameters', pipeEnrichmentHttpParameters_queryStringParameters - The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.

pipeEnrichmentHttpParameters_headerParameters :: Lens' PipeEnrichmentHttpParameters (Maybe (HashMap Text Text)) Source #

The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.

pipeEnrichmentHttpParameters_pathParameterValues :: Lens' PipeEnrichmentHttpParameters (Maybe [Text]) Source #

The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").

pipeEnrichmentHttpParameters_queryStringParameters :: Lens' PipeEnrichmentHttpParameters (Maybe (HashMap Text Text)) Source #

The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.