@awboost/cfn-resource-types 0.1.509 → 0.1.511

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.
@@ -29,6 +29,9 @@ export type ConnectEvaluationFormProperties = {
29
29
  * @maxLength `200`
30
30
  */
31
31
  Items: EvaluationFormBaseItem[];
32
+ /**
33
+ * Configuration for language settings of this evaluation form.
34
+ */
32
35
  LanguageConfiguration?: EvaluationFormLanguageConfiguration;
33
36
  /**
34
37
  * A scoring strategy of the evaluation form.
@@ -44,6 +47,9 @@ export type ConnectEvaluationFormProperties = {
44
47
  * @maxLength `50`
45
48
  */
46
49
  Tags?: Tag[];
50
+ /**
51
+ * Configuration that specifies the target for this evaluation form.
52
+ */
47
53
  TargetConfiguration?: EvaluationFormTargetConfiguration;
48
54
  /**
49
55
  * A title of the evaluation form.
@@ -208,29 +214,31 @@ export type EvaluationFormItemEnablementSourceValue = {
208
214
  };
209
215
  /**
210
216
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormLanguageConfiguration`.
217
+ * Language configuration for an evaluation form.
211
218
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformlanguageconfiguration.html}
212
219
  */
213
220
  export type EvaluationFormLanguageConfiguration = {
214
221
  /**
215
- * The language of the form
222
+ * The language for the evaluation form.
216
223
  */
217
224
  FormLanguage?: "de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR";
218
225
  };
219
226
  /**
220
227
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomation`.
228
+ * Automation configuration for multi-select questions.
221
229
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html}
222
230
  */
223
231
  export type EvaluationFormMultiSelectQuestionAutomation = {
224
232
  /**
225
- * The source of automation answer of the question.
233
+ * A question automation answer.
226
234
  */
227
235
  AnswerSource?: EvaluationFormQuestionAutomationAnswerSource;
228
236
  /**
229
- * The option reference identifiers of the default answers.
237
+ * Reference IDs of default options.
230
238
  */
231
239
  DefaultOptionRefIds?: string[];
232
240
  /**
233
- * The answer options for the automation.
241
+ * Automation options for the multi-select question.
234
242
  * @minLength `1`
235
243
  * @maxLength `20`
236
244
  */
@@ -238,26 +246,28 @@ export type EvaluationFormMultiSelectQuestionAutomation = {
238
246
  };
239
247
  /**
240
248
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomationOption`.
249
+ * An automation option for a multi-select question.
241
250
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomationoption.html}
242
251
  */
243
252
  export type EvaluationFormMultiSelectQuestionAutomationOption = {
244
253
  /**
245
- * The automation option based on Rules categories.
254
+ * Rule category configuration for this automation option.
246
255
  */
247
256
  RuleCategory: MultiSelectQuestionRuleCategoryAutomation;
248
257
  };
249
258
  /**
250
259
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionOption`.
260
+ * An option for a multi-select question in an evaluation form.
251
261
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html}
252
262
  */
253
263
  export type EvaluationFormMultiSelectQuestionOption = {
254
264
  /**
255
- * The identifier used to reference the option.
265
+ * Reference identifier for this option.
256
266
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
257
267
  */
258
268
  RefId: string;
259
269
  /**
260
- * The title of the option.
270
+ * Display text for this option.
261
271
  * @minLength `1`
262
272
  * @maxLength `128`
263
273
  */
@@ -265,19 +275,20 @@ export type EvaluationFormMultiSelectQuestionOption = {
265
275
  };
266
276
  /**
267
277
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionProperties`.
278
+ * Properties for a multi-select question in an evaluation form.
268
279
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html}
269
280
  */
270
281
  export type EvaluationFormMultiSelectQuestionProperties = {
271
282
  /**
272
- * The automation properties for the multi-select question.
283
+ * Automation configuration for this multi-select question.
273
284
  */
274
285
  Automation?: EvaluationFormMultiSelectQuestionAutomation;
275
286
  /**
276
- * The display mode of the multi-select question.
287
+ * Display format for the multi-select question.
277
288
  */
278
289
  DisplayAs?: "DROPDOWN" | "CHECKBOX";
279
290
  /**
280
- * The list of options for the question.
291
+ * Options available for this multi-select question.
281
292
  * @minLength `2`
282
293
  * @maxLength `256`
283
294
  */
@@ -422,6 +433,9 @@ export type EvaluationFormQuestionAutomationAnswerSource = {
422
433
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
423
434
  */
424
435
  export type EvaluationFormQuestionTypeProperties = {
436
+ /**
437
+ * Properties for multi-select question types.
438
+ */
425
439
  MultiSelect?: EvaluationFormMultiSelectQuestionProperties;
426
440
  /**
427
441
  * The properties of the numeric question.
@@ -574,11 +588,12 @@ export type EvaluationFormSingleSelectQuestionProperties = {
574
588
  };
575
589
  /**
576
590
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTargetConfiguration`.
591
+ * Configuration that specifies the target for an evaluation form.
577
592
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtargetconfiguration.html}
578
593
  */
579
594
  export type EvaluationFormTargetConfiguration = {
580
595
  /**
581
- * The interaction type of a contact
596
+ * The contact interaction type for this evaluation form.
582
597
  */
583
598
  ContactInteractionType: "AGENT" | "AUTOMATED";
584
599
  };
@@ -606,21 +621,22 @@ export type EvaluationFormTextQuestionProperties = {
606
621
  };
607
622
  /**
608
623
  * Type definition for `AWS::Connect::EvaluationForm.MultiSelectQuestionRuleCategoryAutomation`.
624
+ * Automation rule for multi-select questions based on rule categories.
609
625
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html}
610
626
  */
611
627
  export type MultiSelectQuestionRuleCategoryAutomation = {
612
628
  /**
613
- * The category name as defined in Rules.
629
+ * The category name for this automation rule.
614
630
  * @minLength `1`
615
631
  * @maxLength `50`
616
632
  */
617
633
  Category: string;
618
634
  /**
619
- * The automation condition applied on contact categories.
635
+ * The condition for this automation rule.
620
636
  */
621
637
  Condition: "PRESENT" | "NOT_PRESENT";
622
638
  /**
623
- * The option identifiers referencing the options to be selected when the automation option is triggered.
639
+ * Reference IDs of options for this automation rule.
624
640
  */
625
641
  OptionRefIds: string[];
626
642
  };
@@ -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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.509",
3
+ "version": "0.1.511",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },