Interface CfnPlaybackConfiguration.HttpRequestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPlaybackConfiguration.HttpRequestProperty.Jsii$Proxy
Enclosing class:
CfnPlaybackConfiguration

@Stability(Stable) public static interface CfnPlaybackConfiguration.HttpRequestProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the request to the Ad Decision Server URL.

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.*;
 HttpRequestProperty httpRequestProperty = HttpRequestProperty.builder()
         .body("body")
         .compressRequest("compressRequest")
         .headers(Map.of(
                 "headersKey", "headers"))
         .httpMethod("httpMethod")
         .build();
 

See Also: