You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing HttpParameters as input to an Aws::Client method, you can use a vanilla Hash:

{
  path_parameter_values: ["PathParameter"],
  header_parameters: {
    "HeaderKey" => "HeaderValue",
  },
  query_string_parameters: {
    "QueryStringKey" => "QueryStringValue",
  },
}

These are custom parameter to be used when the target is an API Gateway REST APIs.

Returned by:

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 REST API.

Returns:

  • (Hash<String,String>)

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

#path_parameter_valuesArray<String>

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

Returns:

  • (Array<String>)

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

#query_string_parametersHash<String,String>

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

Returns:

  • (Hash<String,String>)

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