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.HttpParameters

Description

 
Synopsis

Documentation

data HttpParameters 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: newHttpParameters smart constructor.

Constructors

HttpParameters' 

Fields

Instances

Instances details
FromJSON HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

ToJSON HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Generic HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Associated Types

type Rep HttpParameters :: Type -> Type #

Read HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Show HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

NFData HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Methods

rnf :: HttpParameters -> () #

Eq HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Hashable HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

type Rep HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

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

newHttpParameters :: HttpParameters Source #

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

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

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

httpParameters_headerParameters :: Lens' HttpParameters (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.

httpParameters_pathParameterValues :: Lens' HttpParameters (Maybe [Text]) Source #

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

httpParameters_queryStringParameters :: Lens' HttpParameters (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.