@awboost/cfn-resource-types 0.1.525 → 0.1.527
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.
|
@@ -33,6 +33,7 @@ export type ConnectEvaluationFormProperties = {
|
|
|
33
33
|
* Configuration for language settings of this evaluation form.
|
|
34
34
|
*/
|
|
35
35
|
LanguageConfiguration?: EvaluationFormLanguageConfiguration;
|
|
36
|
+
ReviewConfiguration?: EvaluationReviewConfiguration;
|
|
36
37
|
/**
|
|
37
38
|
* A scoring strategy of the evaluation form.
|
|
38
39
|
*/
|
|
@@ -619,6 +620,46 @@ export type EvaluationFormTextQuestionProperties = {
|
|
|
619
620
|
*/
|
|
620
621
|
Automation?: EvaluationFormTextQuestionAutomation;
|
|
621
622
|
};
|
|
623
|
+
/**
|
|
624
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationReviewConfiguration`.
|
|
625
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationreviewconfiguration.html}
|
|
626
|
+
*/
|
|
627
|
+
export type EvaluationReviewConfiguration = {
|
|
628
|
+
/**
|
|
629
|
+
* Number of days during which a request for review can be submitted for evaluations created from this form.
|
|
630
|
+
* @min `1`
|
|
631
|
+
* @max `90`
|
|
632
|
+
*/
|
|
633
|
+
EligibilityDays?: number;
|
|
634
|
+
/**
|
|
635
|
+
* List of recipients who should be notified when a review is requested.
|
|
636
|
+
*/
|
|
637
|
+
ReviewNotificationRecipients: EvaluationReviewNotificationRecipient[];
|
|
638
|
+
};
|
|
639
|
+
/**
|
|
640
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationReviewNotificationRecipient`.
|
|
641
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationreviewnotificationrecipient.html}
|
|
642
|
+
*/
|
|
643
|
+
export type EvaluationReviewNotificationRecipient = {
|
|
644
|
+
/**
|
|
645
|
+
* The type of notification recipient.
|
|
646
|
+
*/
|
|
647
|
+
Type: "USER_ID";
|
|
648
|
+
/**
|
|
649
|
+
* The value associated with the notification recipient type.
|
|
650
|
+
*/
|
|
651
|
+
Value: EvaluationReviewNotificationRecipientValue;
|
|
652
|
+
};
|
|
653
|
+
/**
|
|
654
|
+
* Type definition for `AWS::Connect::EvaluationForm.EvaluationReviewNotificationRecipientValue`.
|
|
655
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationreviewnotificationrecipientvalue.html}
|
|
656
|
+
*/
|
|
657
|
+
export type EvaluationReviewNotificationRecipientValue = {
|
|
658
|
+
/**
|
|
659
|
+
* The user identifier for the notification recipient.
|
|
660
|
+
*/
|
|
661
|
+
UserId?: string;
|
|
662
|
+
};
|
|
622
663
|
/**
|
|
623
664
|
* Type definition for `AWS::Connect::EvaluationForm.MultiSelectQuestionRuleCategoryAutomation`.
|
|
624
665
|
* Automation rule for multi-select questions based on rule categories.
|
|
@@ -55,6 +55,7 @@ export type BaselineEbsBandwidthMbpsRequest = {
|
|
|
55
55
|
export type InstanceLaunchTemplate = {
|
|
56
56
|
CapacityOptionType?: "ON_DEMAND" | "SPOT";
|
|
57
57
|
Ec2InstanceProfileArn: string;
|
|
58
|
+
FipsEnabled?: boolean;
|
|
58
59
|
InstanceRequirements?: InstanceRequirementsRequest;
|
|
59
60
|
Monitoring?: ManagedInstancesMonitoringOptions;
|
|
60
61
|
NetworkConfiguration: ManagedInstancesNetworkConfiguration;
|