@awboost/cfn-resource-types 0.1.510 → 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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.510",
3
+ "version": "0.1.511",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },