Class: Aws::CloudWatchEvents::Types::HttpParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvents::Types::HttpParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevents/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header_parameters ⇒ Hash<String,String>
The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
-
#path_parameter_values ⇒ Array<String>
The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards (“*”).
-
#query_string_parameters ⇒ Hash<String,String>
The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
Instance Attribute Details
#header_parameters ⇒ Hash<String,String>
The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 1996 class HttpParameters < Struct.new( :path_parameter_values, :header_parameters, :query_string_parameters) SENSITIVE = [] include Aws::Structure end |
#path_parameter_values ⇒ Array<String>
The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards (“*”).
1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 1996 class HttpParameters < Struct.new( :path_parameter_values, :header_parameters, :query_string_parameters) SENSITIVE = [] include Aws::Structure end |
#query_string_parameters ⇒ Hash<String,String>
The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
1996 1997 1998 1999 2000 2001 2002 |
# File 'lib/aws-sdk-cloudwatchevents/types.rb', line 1996 class HttpParameters < Struct.new( :path_parameter_values, :header_parameters, :query_string_parameters) SENSITIVE = [] include Aws::Structure end |