You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CloudWatchEvents::Types::HttpParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvents::Types::HttpParameters
- Defined in:
- (unknown)
Overview
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
-
#header_parameters ⇒ Hash<String,String>
The headers that need to be sent as part of request invoking the API Gateway REST API.
-
#path_parameter_values ⇒ Array<String>
The path parameter values to be used to populate API Gateway REST API 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.
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.
#path_parameter_values ⇒ Array<String>
The path parameter values to be used to populate API Gateway REST API 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.