interface AdDecisionServerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPlaybackConfiguration_AdDecisionServerConfigurationProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty |
Python | aws_cdk.aws_mediatailor.CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPlaybackConfiguration » AdDecisionServerConfigurationProperty |
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 { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const adDecisionServerConfigurationProperty: mediatailor.CfnPlaybackConfiguration.AdDecisionServerConfigurationProperty = {
httpRequest: {
body: 'body',
compressRequest: 'compressRequest',
headers: {
headersKey: 'headers',
},
httpMethod: 'httpMethod',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| http | IResolvable | Http | The configuration for the request to the Ad Decision Server URL. |
httpRequest
Type:
IResolvable | Http
The configuration for the request to the Ad Decision Server URL.

.NET
Go
Java
Python
TypeScript