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: