Interface CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty

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

@Stability(Stable) public static interface CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the request to the specified 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.*;
 AdDecisionServerConfigurationProperty adDecisionServerConfigurationProperty = AdDecisionServerConfigurationProperty.builder()
         .httpRequest(HttpRequestProperty.builder()
                 .body("body")
                 .compressRequest("compressRequest")
                 .headers(Map.of(
                         "headersKey", "headers"))
                 .httpMethod("httpMethod")
                 .build())
         .build();
 

See Also: