Interface HttpRequestParameters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
HttpCallProps
- All Known Implementing Classes:
HttpCallProps.Jsii$Proxy,HttpRequestParameters.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:51.025Z")
@Stability(Experimental)
public interface HttpRequestParameters
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.integtests.alpha.*;
HttpRequestParameters httpRequestParameters = HttpRequestParameters.builder()
.url("url")
// the properties below are optional
.fetchOptions(FetchOptions.builder()
.body("body")
.headers(Map.of(
"headersKey", "headers"))
.method("method")
.port(123)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpRequestParametersstatic final classAn implementation forHttpRequestParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default FetchOptions(experimental) Options for fetch.getUrl()(experimental) The url to fetch.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUrl
(experimental) The url to fetch. -
getFetchOptions
(experimental) Options for fetch. -
builder
- Returns:
- a
HttpRequestParameters.BuilderofHttpRequestParameters
-