Class: Aws::Pipes::Types::PipeEnrichmentParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::PipeEnrichmentParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
The parameters required to set up enrichment on your pipe.
Constant Summary collapse
- SENSITIVE =
[:input_template]
Instance Attribute Summary collapse
-
#http_parameters ⇒ Types::PipeEnrichmentHttpParameters
Contains the HTTP parameters to use when the target is a API Gateway REST endpoint or EventBridge ApiDestination.
-
#input_template ⇒ String
Valid JSON text passed to the enrichment.
Instance Attribute Details
#http_parameters ⇒ Types::PipeEnrichmentHttpParameters
Contains the HTTP parameters to use when the target is a API Gateway REST endpoint or EventBridge ApiDestination.
If you specify an API Gateway REST API or EventBridge ApiDestination as a target, you can use this parameter to specify headers, path parameters, and query string keys/values as part of your target invoking request. If you’re using ApiDestinations, the corresponding Connection can also have these values configured. In case of any conflicting keys, values from the Connection take precedence.
1569 1570 1571 1572 1573 1574 |
# File 'lib/aws-sdk-pipes/types.rb', line 1569 class PipeEnrichmentParameters < Struct.new( :input_template, :http_parameters) SENSITIVE = [:input_template] include Aws::Structure end |
#input_template ⇒ String
Valid JSON text passed to the enrichment. In this case, nothing from the event itself is passed to the enrichment. For more information, see [The JavaScript Object Notation (JSON) Data Interchange Format].
To remove an input template, specify an empty string.
1569 1570 1571 1572 1573 1574 |
# File 'lib/aws-sdk-pipes/types.rb', line 1569 class PipeEnrichmentParameters < Struct.new( :input_template, :http_parameters) SENSITIVE = [:input_template] include Aws::Structure end |