libZSservicesZSamazonka-cloudwatch-eventsZSamazonka-cloudwatch-events
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

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
Eq HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Read HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Show 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 #

NFData HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

Methods

rnf :: HttpParameters -> () #

Hashable HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

ToJSON HttpParameters Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.Types.HttpParameters

FromJSON 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" "libZSservicesZSamazonka-cloudwatch-eventsZSamazonka-cloudwatch-events" 'False) (C1 ('MetaCons "HttpParameters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "pathParameterValues") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "queryStringParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "headerParameters") '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: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.

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

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.

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.