Class: Aws::EventBridge::Types::HttpParameters

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eventbridge/types.rb

Overview

These are custom parameter to be used when the target is an API Gateway 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

Instance Attribute Details

#header_parametersHash<String,String>

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

Returns:

  • (Hash<String,String>)


2636
2637
2638
2639
2640
2641
2642
# File 'lib/aws-sdk-eventbridge/types.rb', line 2636

class HttpParameters < Struct.new(
  :path_parameter_values,
  :header_parameters,
  :query_string_parameters)
  SENSITIVE = []
  include Aws::Structure
end

#path_parameter_valuesArray<String>

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

Returns:

  • (Array<String>)


2636
2637
2638
2639
2640
2641
2642
# File 'lib/aws-sdk-eventbridge/types.rb', line 2636

class HttpParameters < Struct.new(
  :path_parameter_values,
  :header_parameters,
  :query_string_parameters)
  SENSITIVE = []
  include Aws::Structure
end

#query_string_parametersHash<String,String>

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

Returns:

  • (Hash<String,String>)


2636
2637
2638
2639
2640
2641
2642
# File 'lib/aws-sdk-eventbridge/types.rb', line 2636

class HttpParameters < Struct.new(
  :path_parameter_values,
  :header_parameters,
  :query_string_parameters)
  SENSITIVE = []
  include Aws::Structure
end