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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPlaybackConfiguration.AdDecisionServerConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration for the request to the Ad Decision Server URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHttpRequest
The configuration for the request to the Ad Decision Server URL.Returns union: either
IResolvableorCfnPlaybackConfiguration.HttpRequestProperty- See Also:
-
builder
@Stability(Stable) static CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty.Builder builder()
-