Interface CfnFunction.HttpRequestConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFunction.HttpRequestConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFunction
@Stability(Stable)
public static interface CfnFunction.HttpRequestConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for HTTP request functions.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.mediatailor.*;
HttpRequestConfigurationProperty httpRequestConfigurationProperty = HttpRequestConfigurationProperty.builder()
.methodType("methodType")
.requestTimeoutMilliseconds(123)
.runtime("runtime")
.url("url")
// the properties below are optional
.body("body")
.headers(Map.of(
"headersKey", "headers"))
.output(Map.of(
"outputKey", "output"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.HttpRequestConfigurationPropertystatic final classAn implementation forCfnFunction.HttpRequestConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMethodType
- See Also:
-
getRequestTimeoutMilliseconds
The timeout in milliseconds for the HTTP request.Maximum value is 2000.
- See Also:
-
getRuntime
- See Also:
-
getUrl
The URL endpoint for the HTTP request.- See Also:
-
getBody
The body of the HTTP request.- See Also:
-
getHeaders
- See Also:
-
getOutput
- See Also:
-
builder
-