Interface CfnPlaybackConfigurationPropsMixin.HttpRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlaybackConfigurationPropsMixin.HttpRequestProperty.Jsii$Proxy
- Enclosing class:
CfnPlaybackConfigurationPropsMixin
@Stability(Stable)
public static interface CfnPlaybackConfigurationPropsMixin.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.cfnpropertymixins.services.mediatailor.*;
HttpRequestProperty httpRequestProperty = HttpRequestProperty.builder()
.body("body")
.compressRequest("compressRequest")
.headers(Map.of(
"headersKey", "headers"))
.httpMethod("httpMethod")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPlaybackConfigurationPropsMixin.HttpRequestPropertystatic final classAn implementation forCfnPlaybackConfigurationPropsMixin.HttpRequestProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetBody()The body of the request to the Ad Decision Server URL.default StringThe compression type of the request sent to the Ad Decision Server URL.default ObjectThe headers in the request sent to the Ad Decision Server URL.default StringSupported HTTP Methods for the request to the Ad Decision Server URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBody
The body of the request to the Ad Decision Server URL.The maximum length is 100,000 characters.
- See Also:
-
getCompressRequest
The compression type of the request sent to the Ad Decision Server URL.Only the POST HTTP Method permits compression other than NONE.
- See Also:
-
getHeaders
The headers in the request sent to the Ad Decision Server URL.The max length is 10,000 characters.
Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getHttpMethod
Supported HTTP Methods for the request to the Ad Decision Server URL.- See Also:
-
builder
-