interface HttpRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPlaybackConfiguration.HttpRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPlaybackConfiguration_HttpRequestProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPlaybackConfiguration.HttpRequestProperty |
Python | aws_cdk.aws_mediatailor.CfnPlaybackConfiguration.HttpRequestProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPlaybackConfiguration » HttpRequestProperty |
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 { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const httpRequestProperty: mediatailor.CfnPlaybackConfiguration.HttpRequestProperty = {
body: 'body',
compressRequest: 'compressRequest',
headers: {
headersKey: 'headers',
},
httpMethod: 'httpMethod',
};
Properties
| Name | Type | Description |
|---|---|---|
| body? | string | The body of the request to the Ad Decision Server URL. |
| compress | string | The compression type of the request sent to the Ad Decision Server URL. |
| headers? | { [string]: string } | IResolvable | The headers in the request sent to the Ad Decision Server URL. |
| http | string | Supported HTTP Methods for the request to the Ad Decision Server URL. |
body?
Type:
string
(optional)
The body of the request to the Ad Decision Server URL.
The maximum length is 100,000 characters.
compressRequest?
Type:
string
(optional)
The compression type of the request sent to the Ad Decision Server URL.
Only the POST HTTP Method permits compression other than NONE.
headers?
Type:
{ [string]: string } | IResolvable
(optional)
The headers in the request sent to the Ad Decision Server URL.
The max length is 10,000 characters.
httpMethod?
Type:
string
(optional)
Supported HTTP Methods for the request to the Ad Decision Server URL.

.NET
Go
Java
Python
TypeScript