@awboost/cfn-resource-types 0.1.509 → 0.1.510
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,6 +9,10 @@ export type MediaTailorPlaybackConfigurationProperties = {
|
|
|
9
9
|
* <p>The setting that indicates what conditioning MediaTailor will perform on ads that the ad decision server (ADS) returns.</p>
|
|
10
10
|
*/
|
|
11
11
|
AdConditioningConfiguration?: AdConditioningConfiguration;
|
|
12
|
+
/**
|
|
13
|
+
* The configuration for the request to the specified Ad Decision Server URL.
|
|
14
|
+
*/
|
|
15
|
+
AdDecisionServerConfiguration?: AdDecisionServerConfiguration;
|
|
12
16
|
/**
|
|
13
17
|
* The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
|
|
14
18
|
*/
|
|
@@ -121,6 +125,23 @@ export type MediaTailorPlaybackConfigurationAttributes = {
|
|
|
121
125
|
export type AdConditioningConfiguration = {
|
|
122
126
|
StreamingMediaFileConditioning: StreamingMediaFileConditioning;
|
|
123
127
|
};
|
|
128
|
+
/**
|
|
129
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdDecisionServerConfiguration`.
|
|
130
|
+
* The configuration for the request to the specified Ad Decision Server URL.
|
|
131
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-addecisionserverconfiguration.html}
|
|
132
|
+
*/
|
|
133
|
+
export type AdDecisionServerConfiguration = {
|
|
134
|
+
/**
|
|
135
|
+
* The configuration for the request to the Ad Decision Server URL.
|
|
136
|
+
*/
|
|
137
|
+
HttpRequest: HttpRequest;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdDecisionServerConfigurationHttpHeaders`.
|
|
141
|
+
* The headers in the request sent to the Ad Decision Server URL. The max length is 10,000 characters.
|
|
142
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-addecisionserverconfigurationhttpheaders.html}
|
|
143
|
+
*/
|
|
144
|
+
export type AdDecisionServerConfigurationHttpHeaders = Record<string, string>;
|
|
124
145
|
/**
|
|
125
146
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.AdMarkerPassthrough`.
|
|
126
147
|
* For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest. No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.
|
|
@@ -216,6 +237,29 @@ export type DashConfiguration = {
|
|
|
216
237
|
*/
|
|
217
238
|
OriginManifestType?: "SINGLE_PERIOD" | "MULTI_PERIOD";
|
|
218
239
|
};
|
|
240
|
+
/**
|
|
241
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.HttpRequest`.
|
|
242
|
+
* The configuration for the request to the Ad Decision Server URL.
|
|
243
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html}
|
|
244
|
+
*/
|
|
245
|
+
export type HttpRequest = {
|
|
246
|
+
/**
|
|
247
|
+
* The body of the request to the Ad Decision Server URL. The maximum length is 100,000 characters.
|
|
248
|
+
*/
|
|
249
|
+
Body?: string;
|
|
250
|
+
/**
|
|
251
|
+
* The compression type of the request sent to the Ad Decision Server URL. Only the POST HTTP Method permits compression other than NONE.
|
|
252
|
+
*/
|
|
253
|
+
CompressRequest?: "NONE" | "GZIP";
|
|
254
|
+
/**
|
|
255
|
+
* The headers in the request sent to the Ad Decision Server URL. The max length is 10,000 characters.
|
|
256
|
+
*/
|
|
257
|
+
Headers?: AdDecisionServerConfigurationHttpHeaders;
|
|
258
|
+
/**
|
|
259
|
+
* Supported HTTP Methods for the request to the Ad Decision Server URL.
|
|
260
|
+
*/
|
|
261
|
+
HttpMethod?: "GET" | "POST";
|
|
262
|
+
};
|
|
219
263
|
/**
|
|
220
264
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.InsertionMode`.
|
|
221
265
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-insertionmode.html}
|