@awboost/cfntypes 0.100.346 → 0.100.347

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.
@@ -41642,6 +41642,186 @@ export type ConnectContactFlowVersionAttributes = {
41642
41642
  */
41643
41643
  Version: number;
41644
41644
  };
41645
+ /**
41646
+ * Resource Type definition for AWS::Connect::DataTable
41647
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
41648
+ */
41649
+ export type ConnectDataTableProps = {
41650
+ /**
41651
+ * The description of the Data Table.
41652
+ * @minLength `0`
41653
+ * @maxLength `250`
41654
+ * @pattern `^[\P{C}
41655
+ ]+$`
41656
+ */
41657
+ Description?: string;
41658
+ /**
41659
+ * The identifier of the Amazon Connect instance.
41660
+ * @minLength `1`
41661
+ * @maxLength `100`
41662
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
41663
+ */
41664
+ InstanceArn?: string;
41665
+ /**
41666
+ * The name of the Data Table
41667
+ * @minLength `1`
41668
+ * @maxLength `128`
41669
+ * @pattern `^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
41670
+ */
41671
+ Name?: string;
41672
+ /**
41673
+ * The status of the Data Table
41674
+ */
41675
+ Status?: "PUBLISHED";
41676
+ /**
41677
+ * One or more tags.
41678
+ * @maxLength `50`
41679
+ */
41680
+ Tags?: ConnectDataTableTag[];
41681
+ /**
41682
+ * The time zone of the Data Table
41683
+ */
41684
+ TimeZone?: string;
41685
+ /**
41686
+ * The value lock level of the Data Table
41687
+ */
41688
+ ValueLockLevel?: "NONE";
41689
+ };
41690
+ /**
41691
+ * Attribute type definition for `AWS::Connect::DataTable`.
41692
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#aws-resource-connect-datatable-return-values}
41693
+ */
41694
+ export type ConnectDataTableAttributes = {
41695
+ /**
41696
+ * The arn of the Data Table
41697
+ * @minLength `1`
41698
+ * @maxLength `2048`
41699
+ */
41700
+ Arn: string;
41701
+ /**
41702
+ * The creation time of the Data Table
41703
+ */
41704
+ CreatedTime: number;
41705
+ /**
41706
+ * Last modified region.
41707
+ * @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
41708
+ */
41709
+ LastModifiedRegion: string;
41710
+ /**
41711
+ * Last modified time.
41712
+ */
41713
+ LastModifiedTime: number;
41714
+ /**
41715
+ * The lock version of the Data Table
41716
+ */
41717
+ LockVersion: {
41718
+ /**
41719
+ * The data table for the lock version
41720
+ */
41721
+ DataTable: string;
41722
+ };
41723
+ };
41724
+ /**
41725
+ * Type definition for `AWS::Connect::DataTable.Tag`.
41726
+ * A key-value pair to associate with a resource.
41727
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatable-tag.html}
41728
+ */
41729
+ export type ConnectDataTableTag = {
41730
+ /**
41731
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
41732
+ * @minLength `1`
41733
+ * @maxLength `128`
41734
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
41735
+ */
41736
+ Key: string;
41737
+ /**
41738
+ * The value for the tag. You can specify a value that is maximum of 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
41739
+ * @maxLength `256`
41740
+ */
41741
+ Value: string;
41742
+ };
41743
+ /**
41744
+ * Resource Type definition for AWS::Connect::DataTableAttribute
41745
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
41746
+ */
41747
+ export type ConnectDataTableAttributeProps = {
41748
+ /**
41749
+ * @minLength `1`
41750
+ * @maxLength `2048`
41751
+ */
41752
+ DataTableArn?: string;
41753
+ /**
41754
+ * @minLength `0`
41755
+ * @maxLength `250`
41756
+ * @pattern `^[\P{C}
41757
+ ]+$`
41758
+ */
41759
+ Description?: string;
41760
+ /**
41761
+ * @minLength `1`
41762
+ * @maxLength `100`
41763
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
41764
+ */
41765
+ InstanceArn?: string;
41766
+ /**
41767
+ * @minLength `1`
41768
+ * @maxLength `128`
41769
+ * @pattern `^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
41770
+ */
41771
+ Name?: string;
41772
+ Primary?: boolean;
41773
+ Validation?: {
41774
+ Enum?: {
41775
+ Strict?: boolean;
41776
+ Values?: string[];
41777
+ };
41778
+ ExclusiveMaximum?: number;
41779
+ ExclusiveMinimum?: number;
41780
+ /**
41781
+ * @min `0`
41782
+ */
41783
+ MaxLength?: number;
41784
+ /**
41785
+ * @min `0`
41786
+ */
41787
+ MaxValues?: number;
41788
+ Maximum?: number;
41789
+ /**
41790
+ * @min `0`
41791
+ */
41792
+ MinLength?: number;
41793
+ /**
41794
+ * @min `0`
41795
+ */
41796
+ MinValues?: number;
41797
+ Minimum?: number;
41798
+ /**
41799
+ * @min `0`
41800
+ */
41801
+ MultipleOf?: number;
41802
+ };
41803
+ ValueType?: "TEXT" | "NUMBER" | "BOOLEAN" | "TEXT_LIST" | "NUMBER_LIST";
41804
+ };
41805
+ /**
41806
+ * Attribute type definition for `AWS::Connect::DataTableAttribute`.
41807
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#aws-resource-connect-datatableattribute-return-values}
41808
+ */
41809
+ export type ConnectDataTableAttributeAttributes = {
41810
+ /**
41811
+ * @minLength `1`
41812
+ * @maxLength `256`
41813
+ */
41814
+ AttributeId: string;
41815
+ /**
41816
+ * @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
41817
+ */
41818
+ LastModifiedRegion: string;
41819
+ LastModifiedTime: number;
41820
+ LockVersion: {
41821
+ Attribute: string;
41822
+ DataTable: string;
41823
+ };
41824
+ };
41645
41825
  /**
41646
41826
  * Resource Type definition for AWS::Connect::EmailAddress
41647
41827
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html}
@@ -41733,6 +41913,9 @@ export type ConnectEmailAddressTag = {
41733
41913
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
41734
41914
  */
41735
41915
  export type ConnectEvaluationFormProps = {
41916
+ /**
41917
+ * The automatic evaluation configuration of an evaluation form.
41918
+ */
41736
41919
  AutoEvaluationConfiguration?: ConnectEvaluationFormAutoEvaluationConfiguration;
41737
41920
  /**
41738
41921
  * The description of the evaluation form.
@@ -41753,6 +41936,7 @@ export type ConnectEvaluationFormProps = {
41753
41936
  * @maxLength `200`
41754
41937
  */
41755
41938
  Items: ConnectEvaluationFormEvaluationFormBaseItem[];
41939
+ LanguageConfiguration?: ConnectEvaluationFormEvaluationFormLanguageConfiguration;
41756
41940
  /**
41757
41941
  * A scoring strategy of the evaluation form.
41758
41942
  */
@@ -41767,6 +41951,7 @@ export type ConnectEvaluationFormProps = {
41767
41951
  * @maxLength `50`
41768
41952
  */
41769
41953
  Tags?: ConnectEvaluationFormTag[];
41954
+ TargetConfiguration?: ConnectEvaluationFormEvaluationFormTargetConfiguration;
41770
41955
  /**
41771
41956
  * A title of the evaluation form.
41772
41957
  * @minLength `1`
@@ -41786,6 +41971,7 @@ export type ConnectEvaluationFormAttributes = {
41786
41971
  };
41787
41972
  /**
41788
41973
  * Type definition for `AWS::Connect::EvaluationForm.AutoEvaluationConfiguration`.
41974
+ * Configuration information about automated evaluations.
41789
41975
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html}
41790
41976
  */
41791
41977
  export type ConnectEvaluationFormAutoEvaluationConfiguration = {
@@ -41793,11 +41979,12 @@ export type ConnectEvaluationFormAutoEvaluationConfiguration = {
41793
41979
  };
41794
41980
  /**
41795
41981
  * Type definition for `AWS::Connect::EvaluationForm.AutomaticFailConfiguration`.
41982
+ * Information about automatic fail configuration for an evaluation form.
41796
41983
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-automaticfailconfiguration.html}
41797
41984
  */
41798
41985
  export type ConnectEvaluationFormAutomaticFailConfiguration = {
41799
41986
  /**
41800
- * The target section refId to control failure propagation boundary.
41987
+ * The referenceId of the target section for auto failure.
41801
41988
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
41802
41989
  */
41803
41990
  TargetSection?: string;
@@ -41830,102 +42017,188 @@ export type ConnectEvaluationFormEvaluationFormItem = {
41830
42017
  };
41831
42018
  /**
41832
42019
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementCondition`.
42020
+ * A condition for item enablement.
41833
42021
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html}
41834
42022
  */
41835
42023
  export type ConnectEvaluationFormEvaluationFormItemEnablementCondition = {
41836
42024
  /**
41837
- * The list of operands that compose the condition. Each operand represents a specific criteria to be evaluated.
42025
+ * Operands of the enablement condition.
41838
42026
  * @minLength `1`
41839
42027
  */
41840
42028
  Operands: ConnectEvaluationFormEvaluationFormItemEnablementConditionOperand[];
41841
42029
  /**
41842
- * The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
42030
+ * The operator to be used to be applied to operands if more than one provided.
41843
42031
  */
41844
42032
  Operator?: "OR" | "AND";
41845
42033
  };
41846
42034
  /**
41847
42035
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConditionOperand`.
42036
+ * An operand of the enablement condition.
41848
42037
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconditionoperand.html}
41849
42038
  */
41850
42039
  export type ConnectEvaluationFormEvaluationFormItemEnablementConditionOperand = {
41851
42040
  /**
41852
- * A direct comparison expression that evaluates a form item's value against specified criteria.
42041
+ * An expression of the enablement condition.
41853
42042
  */
41854
42043
  Expression?: ConnectEvaluationFormEvaluationFormItemEnablementExpression;
41855
42044
  };
41856
42045
  /**
41857
42046
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConfiguration`.
42047
+ * An item enablement configuration.
41858
42048
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html}
41859
42049
  */
41860
42050
  export type ConnectEvaluationFormEvaluationFormItemEnablementConfiguration = {
41861
42051
  /**
41862
- * Defines the enablement status to be applied when the specified condition is met.
42052
+ * An enablement action that if condition is satisfied.
41863
42053
  */
41864
42054
  Action: "DISABLE" | "ENABLE";
41865
42055
  /**
41866
- * Specifies the logical condition that determines when to apply the enablement rules.
42056
+ * A condition for item enablement configuration.
41867
42057
  */
41868
42058
  Condition: ConnectEvaluationFormEvaluationFormItemEnablementCondition;
41869
42059
  /**
41870
- * Specifies the default enablement status to be applied when the condition is not satisfied.
42060
+ * An enablement action that if condition is not satisfied.
41871
42061
  */
41872
42062
  DefaultAction?: "DISABLE" | "ENABLE";
41873
42063
  };
41874
42064
  /**
41875
42065
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementExpression`.
42066
+ * An expression that defines a basic building block of conditional enablement.
41876
42067
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html}
41877
42068
  */
41878
42069
  export type ConnectEvaluationFormEvaluationFormItemEnablementExpression = {
41879
42070
  /**
41880
- * Specifies the comparison method to determine if the source value matches any of the specified values.
42071
+ * A comparator to be used against list of values.
41881
42072
  */
41882
42073
  Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
41883
42074
  /**
41884
- * Identifies the form item whose value will be evaluated in the expression.
42075
+ * A source item of enablement expression.
41885
42076
  */
41886
42077
  Source: ConnectEvaluationFormEvaluationFormItemEnablementSource;
41887
42078
  /**
41888
- * The list of possible values to compare against the source form item's value.
42079
+ * A list of values from source item.
41889
42080
  * @minLength `1`
41890
42081
  */
41891
42082
  Values: ConnectEvaluationFormEvaluationFormItemEnablementSourceValue[];
41892
42083
  };
41893
42084
  /**
41894
42085
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSource`.
42086
+ * An enablement expression source item.
41895
42087
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html}
41896
42088
  */
41897
42089
  export type ConnectEvaluationFormEvaluationFormItemEnablementSource = {
41898
42090
  /**
41899
- * The identifier to reference the item.
42091
+ * A referenceId of the source item.
41900
42092
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
41901
42093
  */
41902
42094
  RefId?: string;
41903
42095
  /**
41904
- * The type of the source entity.
42096
+ * A type of source item.
41905
42097
  */
41906
42098
  Type: "QUESTION_REF_ID";
41907
42099
  };
41908
42100
  /**
41909
42101
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSourceValue`.
42102
+ * An enablement expression source value.
41910
42103
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html}
41911
42104
  */
41912
42105
  export type ConnectEvaluationFormEvaluationFormItemEnablementSourceValue = {
41913
42106
  /**
41914
- * The reference id of the source entity value.
42107
+ * A referenceId of the source value.
41915
42108
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
41916
42109
  */
41917
42110
  RefId?: string;
41918
42111
  /**
41919
- * Type of the source entity value.
42112
+ * A type of source item value.
41920
42113
  */
41921
42114
  Type?: "OPTION_REF_ID";
41922
42115
  };
42116
+ /**
42117
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormLanguageConfiguration`.
42118
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformlanguageconfiguration.html}
42119
+ */
42120
+ export type ConnectEvaluationFormEvaluationFormLanguageConfiguration = {
42121
+ /**
42122
+ * The language of the form
42123
+ */
42124
+ FormLanguage?: "de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR";
42125
+ };
42126
+ /**
42127
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomation`.
42128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html}
42129
+ */
42130
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomation = {
42131
+ /**
42132
+ * The source of automation answer of the question.
42133
+ */
42134
+ AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
42135
+ /**
42136
+ * The option reference identifiers of the default answers.
42137
+ */
42138
+ DefaultOptionRefIds?: string[];
42139
+ /**
42140
+ * The answer options for the automation.
42141
+ * @minLength `1`
42142
+ * @maxLength `20`
42143
+ */
42144
+ Options: ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomationOption[];
42145
+ };
42146
+ /**
42147
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomationOption`.
42148
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomationoption.html}
42149
+ */
42150
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomationOption = {
42151
+ /**
42152
+ * The automation option based on Rules categories.
42153
+ */
42154
+ RuleCategory: ConnectEvaluationFormMultiSelectQuestionRuleCategoryAutomation;
42155
+ };
42156
+ /**
42157
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionOption`.
42158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html}
42159
+ */
42160
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionOption = {
42161
+ /**
42162
+ * The identifier used to reference the option.
42163
+ * @pattern `^[a-zA-Z0-9._-]{1,40}$`
42164
+ */
42165
+ RefId: string;
42166
+ /**
42167
+ * The title of the option.
42168
+ * @minLength `1`
42169
+ * @maxLength `128`
42170
+ */
42171
+ Text: string;
42172
+ };
42173
+ /**
42174
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionProperties`.
42175
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html}
42176
+ */
42177
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionProperties = {
42178
+ /**
42179
+ * The automation properties for the multi-select question.
42180
+ */
42181
+ Automation?: ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomation;
42182
+ /**
42183
+ * The display mode of the multi-select question.
42184
+ */
42185
+ DisplayAs?: "DROPDOWN" | "CHECKBOX";
42186
+ /**
42187
+ * The list of options for the question.
42188
+ * @minLength `2`
42189
+ * @maxLength `256`
42190
+ */
42191
+ Options: ConnectEvaluationFormEvaluationFormMultiSelectQuestionOption[];
42192
+ };
41923
42193
  /**
41924
42194
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation`.
41925
42195
  * Information about the automation configuration in numeric questions.
41926
42196
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
41927
42197
  */
41928
42198
  export type ConnectEvaluationFormEvaluationFormNumericQuestionAutomation = {
42199
+ /**
42200
+ * A source of automation answer for numeric question.
42201
+ */
41929
42202
  AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
41930
42203
  /**
41931
42204
  * The property value of the automation.
@@ -41942,6 +42215,9 @@ export type ConnectEvaluationFormEvaluationFormNumericQuestionOption = {
41942
42215
  * The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
41943
42216
  */
41944
42217
  AutomaticFail?: boolean;
42218
+ /**
42219
+ * A configuration for automatic fail.
42220
+ */
41945
42221
  AutomaticFailConfiguration?: ConnectEvaluationFormAutomaticFailConfiguration;
41946
42222
  /**
41947
42223
  * The maximum answer value of the range option.
@@ -41991,6 +42267,9 @@ export type ConnectEvaluationFormEvaluationFormNumericQuestionProperties = {
41991
42267
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html}
41992
42268
  */
41993
42269
  export type ConnectEvaluationFormEvaluationFormQuestion = {
42270
+ /**
42271
+ * A question conditional enablement.
42272
+ */
41994
42273
  Enablement?: ConnectEvaluationFormEvaluationFormItemEnablementConfiguration;
41995
42274
  /**
41996
42275
  * The instructions of the section.
@@ -42035,11 +42314,12 @@ export type ConnectEvaluationFormEvaluationFormQuestion = {
42035
42314
  };
42036
42315
  /**
42037
42316
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestionAutomationAnswerSource`.
42317
+ * A question automation answer.
42038
42318
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestionautomationanswersource.html}
42039
42319
  */
42040
42320
  export type ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource = {
42041
42321
  /**
42042
- * The type of the answer source
42322
+ * The automation answer source type.
42043
42323
  */
42044
42324
  SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
42045
42325
  };
@@ -42049,6 +42329,7 @@ export type ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource =
42049
42329
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
42050
42330
  */
42051
42331
  export type ConnectEvaluationFormEvaluationFormQuestionTypeProperties = {
42332
+ MultiSelect?: ConnectEvaluationFormEvaluationFormMultiSelectQuestionProperties;
42052
42333
  /**
42053
42334
  * The properties of the numeric question.
42054
42335
  */
@@ -42057,6 +42338,9 @@ export type ConnectEvaluationFormEvaluationFormQuestionTypeProperties = {
42057
42338
  * The properties of the numeric question.
42058
42339
  */
42059
42340
  SingleSelect?: ConnectEvaluationFormEvaluationFormSingleSelectQuestionProperties;
42341
+ /**
42342
+ * The properties of the text question.
42343
+ */
42060
42344
  Text?: ConnectEvaluationFormEvaluationFormTextQuestionProperties;
42061
42345
  };
42062
42346
  /**
@@ -42105,6 +42389,9 @@ export type ConnectEvaluationFormEvaluationFormSection = {
42105
42389
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html}
42106
42390
  */
42107
42391
  export type ConnectEvaluationFormEvaluationFormSingleSelectQuestionAutomation = {
42392
+ /**
42393
+ * Automation answer source.
42394
+ */
42108
42395
  AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
42109
42396
  /**
42110
42397
  * The identifier of the default answer option, when none of the automation options match the criteria.
@@ -42142,6 +42429,9 @@ export type ConnectEvaluationFormEvaluationFormSingleSelectQuestionOption = {
42142
42429
  * The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
42143
42430
  */
42144
42431
  AutomaticFail?: boolean;
42432
+ /**
42433
+ * Whether automatic fail is configured on a single select question.
42434
+ */
42145
42435
  AutomaticFailConfiguration?: ConnectEvaluationFormAutomaticFailConfiguration;
42146
42436
  /**
42147
42437
  * The identifier of the answer option. An identifier must be unique within the question.
@@ -42189,26 +42479,58 @@ export type ConnectEvaluationFormEvaluationFormSingleSelectQuestionProperties =
42189
42479
  */
42190
42480
  Options: ConnectEvaluationFormEvaluationFormSingleSelectQuestionOption[];
42191
42481
  };
42482
+ /**
42483
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTargetConfiguration`.
42484
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtargetconfiguration.html}
42485
+ */
42486
+ export type ConnectEvaluationFormEvaluationFormTargetConfiguration = {
42487
+ /**
42488
+ * The interaction type of a contact
42489
+ */
42490
+ ContactInteractionType: "AGENT" | "AUTOMATED";
42491
+ };
42192
42492
  /**
42193
42493
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionAutomation`.
42494
+ * Information about the automation configuration in text questions.
42194
42495
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html}
42195
42496
  */
42196
42497
  export type ConnectEvaluationFormEvaluationFormTextQuestionAutomation = {
42197
42498
  /**
42198
- * The source of automation answer of the question.
42499
+ * Automation answer source.
42199
42500
  */
42200
42501
  AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
42201
42502
  };
42202
42503
  /**
42203
42504
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionProperties`.
42505
+ * Information about properties for a text question in an evaluation form.
42204
42506
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionproperties.html}
42205
42507
  */
42206
42508
  export type ConnectEvaluationFormEvaluationFormTextQuestionProperties = {
42207
42509
  /**
42208
- * Specifies how the question can be automatically answered.
42510
+ * The automation properties of the text question.
42209
42511
  */
42210
42512
  Automation?: ConnectEvaluationFormEvaluationFormTextQuestionAutomation;
42211
42513
  };
42514
+ /**
42515
+ * Type definition for `AWS::Connect::EvaluationForm.MultiSelectQuestionRuleCategoryAutomation`.
42516
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html}
42517
+ */
42518
+ export type ConnectEvaluationFormMultiSelectQuestionRuleCategoryAutomation = {
42519
+ /**
42520
+ * The category name as defined in Rules.
42521
+ * @minLength `1`
42522
+ * @maxLength `50`
42523
+ */
42524
+ Category: string;
42525
+ /**
42526
+ * The automation condition applied on contact categories.
42527
+ */
42528
+ Condition: "PRESENT" | "NOT_PRESENT";
42529
+ /**
42530
+ * The option identifiers referencing the options to be selected when the automation option is triggered.
42531
+ */
42532
+ OptionRefIds: string[];
42533
+ };
42212
42534
  /**
42213
42535
  * Type definition for `AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation`.
42214
42536
  * Information about the property value used in automation of a numeric questions.
@@ -42218,7 +42540,7 @@ export type ConnectEvaluationFormNumericQuestionPropertyValueAutomation = {
42218
42540
  /**
42219
42541
  * The property label of the automation.
42220
42542
  */
42221
- Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT";
42543
+ Label: "OVERALL_CUSTOMER_SENTIMENT_SCORE" | "OVERALL_AGENT_SENTIMENT_SCORE" | "NON_TALK_TIME" | "NON_TALK_TIME_PERCENTAGE" | "NUMBER_OF_INTERRUPTIONS" | "CONTACT_DURATION" | "AGENT_INTERACTION_DURATION" | "CUSTOMER_HOLD_TIME" | "LONGEST_HOLD_DURATION" | "NUMBER_OF_HOLDS" | "AGENT_INTERACTION_AND_HOLD_DURATION" | "CUSTOMER_SENTIMENT_SCORE_WITHOUT_AGENT" | "CUSTOMER_SENTIMENT_SCORE_WITH_AGENT";
42222
42544
  };
42223
42545
  /**
42224
42546
  * Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
@@ -132702,6 +133024,263 @@ export type ObservabilityAdminOrganizationTelemetryRuleVPCFlowLogParameters = {
132702
133024
  */
132703
133025
  TrafficType?: string;
132704
133026
  };
133027
+ /**
133028
+ * Resource type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
133029
+ * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
133030
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
133031
+ */
133032
+ export type ObservabilityAdminS3TableIntegrationProps = {
133033
+ /**
133034
+ * Encryption configuration for the S3 Table Integration
133035
+ */
133036
+ Encryption: ObservabilityAdminS3TableIntegrationEncryptionConfig;
133037
+ /**
133038
+ * The CloudWatch Logs data sources to associate with the S3 Table Integration
133039
+ */
133040
+ LogSources?: ObservabilityAdminS3TableIntegrationLogSource[];
133041
+ /**
133042
+ * The ARN of the role used to access the S3 Table Integration
133043
+ * @minLength `1`
133044
+ * @maxLength `1011`
133045
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133046
+ */
133047
+ RoleArn: string;
133048
+ /**
133049
+ * An array of key-value pairs to apply to this resource
133050
+ */
133051
+ Tags?: ObservabilityAdminS3TableIntegrationTag[];
133052
+ };
133053
+ /**
133054
+ * Attribute type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
133055
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html#aws-resource-observabilityadmin-s3tableintegration-return-values}
133056
+ */
133057
+ export type ObservabilityAdminS3TableIntegrationAttributes = {
133058
+ /**
133059
+ * The ARN of the S3 Table Integration
133060
+ * @minLength `1`
133061
+ * @maxLength `1011`
133062
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133063
+ */
133064
+ Arn: string;
133065
+ /**
133066
+ * The CloudWatch Logs data sources to associate with the S3 Table Integration
133067
+ */
133068
+ LogSources: {
133069
+ /**
133070
+ * The ID of the CloudWatch Logs data source association
133071
+ * @minLength `1`
133072
+ * @maxLength `256`
133073
+ */
133074
+ Identifier: string;
133075
+ }[];
133076
+ };
133077
+ /**
133078
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.EncryptionConfig`.
133079
+ * Encryption configuration for the S3 Table Integration
133080
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html}
133081
+ */
133082
+ export type ObservabilityAdminS3TableIntegrationEncryptionConfig = {
133083
+ /**
133084
+ * The ARN of the KMS key used to encrypt the S3 Table Integration
133085
+ * @minLength `1`
133086
+ * @maxLength `1011`
133087
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133088
+ */
133089
+ KmsKeyArn?: string;
133090
+ /**
133091
+ * The server-side encryption algorithm used to encrypt the S3 Table(s) data
133092
+ */
133093
+ SseAlgorithm: "AES256" | "aws:kms";
133094
+ };
133095
+ /**
133096
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.LogSource`.
133097
+ * CloudWatch Logs data source to associate with the S3 Table Integration
133098
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html}
133099
+ */
133100
+ export type ObservabilityAdminS3TableIntegrationLogSource = {
133101
+ /**
133102
+ * The name of the CloudWatch Logs data source
133103
+ * @minLength `1`
133104
+ * @maxLength `256`
133105
+ */
133106
+ Name: string;
133107
+ /**
133108
+ * The type of the CloudWatch Logs data source
133109
+ * @minLength `1`
133110
+ * @maxLength `256`
133111
+ */
133112
+ Type: string;
133113
+ };
133114
+ /**
133115
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.Tag`.
133116
+ * A key-value pair to associate with a resource
133117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-tag.html}
133118
+ */
133119
+ export type ObservabilityAdminS3TableIntegrationTag = {
133120
+ /**
133121
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133122
+ * @minLength `1`
133123
+ * @maxLength `128`
133124
+ */
133125
+ Key: string;
133126
+ /**
133127
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133128
+ * @minLength `0`
133129
+ * @maxLength `256`
133130
+ */
133131
+ Value: string;
133132
+ };
133133
+ /**
133134
+ * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines
133135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
133136
+ */
133137
+ export type ObservabilityAdminTelemetryPipelinesProps = {
133138
+ Configuration: ObservabilityAdminTelemetryPipelinesTelemetryPipelineConfiguration;
133139
+ /**
133140
+ * @minLength `3`
133141
+ * @maxLength `28`
133142
+ * @pattern `[a-z][a-z0-9\-]+`
133143
+ */
133144
+ Name?: string;
133145
+ /**
133146
+ * An array of key-value pairs to apply to this resource
133147
+ */
133148
+ Tags?: ObservabilityAdminTelemetryPipelinesTag[];
133149
+ };
133150
+ /**
133151
+ * Attribute type definition for `AWS::ObservabilityAdmin::TelemetryPipelines`.
133152
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#aws-resource-observabilityadmin-telemetrypipelines-return-values}
133153
+ */
133154
+ export type ObservabilityAdminTelemetryPipelinesAttributes = {
133155
+ /**
133156
+ * @minLength `1`
133157
+ * @maxLength `1011`
133158
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133159
+ */
133160
+ Arn: string;
133161
+ Pipeline: {
133162
+ /**
133163
+ * @minLength `1`
133164
+ * @maxLength `1011`
133165
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133166
+ */
133167
+ Arn: string;
133168
+ Configuration: {
133169
+ /**
133170
+ * @minLength `1`
133171
+ * @maxLength `24000`
133172
+ */
133173
+ Body: string;
133174
+ };
133175
+ CreatedTimeStamp: number;
133176
+ LastUpdateTimeStamp: number;
133177
+ /**
133178
+ * @minLength `3`
133179
+ * @maxLength `28`
133180
+ * @pattern `[a-z][a-z0-9\-]+`
133181
+ */
133182
+ Name: string;
133183
+ Status: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus;
133184
+ StatusReason: {
133185
+ Description: string;
133186
+ };
133187
+ /**
133188
+ * An array of key-value pairs to apply to this resource
133189
+ */
133190
+ Tags: {
133191
+ /**
133192
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133193
+ * @minLength `1`
133194
+ * @maxLength `128`
133195
+ */
133196
+ Key: string;
133197
+ /**
133198
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133199
+ * @minLength `0`
133200
+ * @maxLength `256`
133201
+ */
133202
+ Value: string;
133203
+ }[];
133204
+ };
133205
+ /**
133206
+ * @minLength `1`
133207
+ * @maxLength `512`
133208
+ */
133209
+ PipelineIdentifier: string;
133210
+ Status: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus;
133211
+ StatusReason: {
133212
+ Description: string;
133213
+ };
133214
+ };
133215
+ /**
133216
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.Tag`.
133217
+ * A key-value pair to associate with a resource
133218
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-tag.html}
133219
+ */
133220
+ export type ObservabilityAdminTelemetryPipelinesTag = {
133221
+ /**
133222
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133223
+ * @minLength `1`
133224
+ * @maxLength `128`
133225
+ */
133226
+ Key: string;
133227
+ /**
133228
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
133229
+ * @minLength `0`
133230
+ * @maxLength `256`
133231
+ */
133232
+ Value: string;
133233
+ };
133234
+ /**
133235
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipeline`.
133236
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipeline.html}
133237
+ */
133238
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipeline = {
133239
+ /**
133240
+ * @minLength `1`
133241
+ * @maxLength `1011`
133242
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133243
+ */
133244
+ Arn?: string;
133245
+ Configuration?: ObservabilityAdminTelemetryPipelinesTelemetryPipelineConfiguration;
133246
+ CreatedTimeStamp?: number;
133247
+ LastUpdateTimeStamp?: number;
133248
+ /**
133249
+ * @minLength `3`
133250
+ * @maxLength `28`
133251
+ * @pattern `[a-z][a-z0-9\-]+`
133252
+ */
133253
+ Name?: string;
133254
+ Status?: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus;
133255
+ StatusReason?: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatusReason;
133256
+ /**
133257
+ * An array of key-value pairs to apply to this resource
133258
+ */
133259
+ Tags?: ObservabilityAdminTelemetryPipelinesTag[];
133260
+ };
133261
+ /**
133262
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineConfiguration`.
133263
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelineconfiguration.html}
133264
+ */
133265
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipelineConfiguration = {
133266
+ /**
133267
+ * @minLength `1`
133268
+ * @maxLength `24000`
133269
+ */
133270
+ Body: string;
133271
+ };
133272
+ /**
133273
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatus`.
133274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatus.html}
133275
+ */
133276
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED";
133277
+ /**
133278
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatusReason`.
133279
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatusreason.html}
133280
+ */
133281
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatusReason = {
133282
+ Description?: string;
133283
+ };
132705
133284
  /**
132706
133285
  * The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
132707
133286
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
@@ -197440,6 +198019,136 @@ export type SecurityHubConfigurationPolicySecurityHubPolicy = {
197440
198019
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-configurationpolicy-tags.html}
197441
198020
  */
197442
198021
  export type SecurityHubConfigurationPolicyTags = Record<string, string>;
198022
+ /**
198023
+ * Resource schema for AWS::SecurityHub::ConnectorV2
198024
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
198025
+ */
198026
+ export type SecurityHubConnectorV2Props = {
198027
+ /**
198028
+ * A description of the connector
198029
+ * @minLength `0`
198030
+ * @maxLength `256`
198031
+ * @pattern `.*\S.*`
198032
+ */
198033
+ Description?: string;
198034
+ /**
198035
+ * The ARN of KMS key used for the connector
198036
+ * @minLength `20`
198037
+ * @maxLength `2048`
198038
+ * @pattern `.*\S.*`
198039
+ */
198040
+ KmsKeyArn?: string;
198041
+ /**
198042
+ * The name of the connector
198043
+ * @minLength `1`
198044
+ * @maxLength `64`
198045
+ * @pattern `.*\S.*`
198046
+ */
198047
+ Name: string;
198048
+ /**
198049
+ * The provider configuration of the connector
198050
+ */
198051
+ Provider: SecurityHubConnectorV2Provider;
198052
+ /**
198053
+ * A key-value pair to associate with a resource.
198054
+ */
198055
+ Tags?: SecurityHubConnectorV2Tags;
198056
+ };
198057
+ /**
198058
+ * Attribute type definition for `AWS::SecurityHub::ConnectorV2`.
198059
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#aws-resource-securityhub-connectorv2-return-values}
198060
+ */
198061
+ export type SecurityHubConnectorV2Attributes = {
198062
+ /**
198063
+ * The ARN of the connector
198064
+ * @pattern `^arn:aws\S*:securityhub:[a-z0-9-]+:[0-9]{12}:connectorv2/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
198065
+ */
198066
+ ConnectorArn: string;
198067
+ /**
198068
+ * The ID of the connector
198069
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
198070
+ */
198071
+ ConnectorId: string;
198072
+ /**
198073
+ * The status of the connector
198074
+ */
198075
+ ConnectorStatus: "CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION";
198076
+ /**
198077
+ * The timestamp formatted in ISO8601
198078
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
198079
+ */
198080
+ CreatedAt: string;
198081
+ /**
198082
+ * The timestamp formatted in ISO8601
198083
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
198084
+ */
198085
+ LastCheckedAt: string;
198086
+ /**
198087
+ * The timestamp formatted in ISO8601
198088
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
198089
+ */
198090
+ LastUpdatedAt: string;
198091
+ /**
198092
+ * The message of the connector status change
198093
+ */
198094
+ Message: string;
198095
+ };
198096
+ /**
198097
+ * Type definition for `AWS::SecurityHub::ConnectorV2.AuthStatus`.
198098
+ * The auth status of the connector
198099
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-authstatus.html}
198100
+ */
198101
+ export type SecurityHubConnectorV2AuthStatus = "ACTIVE" | "FAILED";
198102
+ /**
198103
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Provider`.
198104
+ * The provider configuration of the connector
198105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-provider.html}
198106
+ */
198107
+ export type SecurityHubConnectorV2Provider = {
198108
+ JiraCloud: {
198109
+ /**
198110
+ * The auth status of the connector
198111
+ */
198112
+ AuthStatus?: SecurityHubConnectorV2AuthStatus;
198113
+ /**
198114
+ * The authUrl of the JiraCloud connector
198115
+ * @pattern `.*\S.*`
198116
+ */
198117
+ AuthUrl?: string;
198118
+ CloudId?: string;
198119
+ Domain?: string;
198120
+ /**
198121
+ * @minLength `2`
198122
+ * @maxLength `10`
198123
+ */
198124
+ ProjectKey: string;
198125
+ };
198126
+ } | {
198127
+ ServiceNow: {
198128
+ /**
198129
+ * The auth status of the connector
198130
+ */
198131
+ AuthStatus?: SecurityHubConnectorV2AuthStatus;
198132
+ /**
198133
+ * @minLength `1`
198134
+ * @maxLength `128`
198135
+ */
198136
+ InstanceName: string;
198137
+ /**
198138
+ * The ARN of secrets manager containing ClientId and ClientSecret
198139
+ * @minLength `20`
198140
+ * @maxLength `2048`
198141
+ * @pattern `.*\S.*`
198142
+ */
198143
+ SecretArn: string;
198144
+ };
198145
+ };
198146
+ /**
198147
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Tags`.
198148
+ * A key-value pair to associate with a resource.
198149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-tags.html}
198150
+ */
198151
+ export type SecurityHubConnectorV2Tags = Record<string, string>;
197443
198152
  /**
197444
198153
  * The ``AWS::SecurityHub::DelegatedAdmin`` resource designates the delegated ASHlong administrator account for an organization. You must enable the integration between ASH and AOlong before you can designate a delegated ASH administrator. Only the management account for an organization can designate the delegated ASH administrator account. For more information, see [Designating the delegated administrator](https://docs.aws.amazon.com/securityhub/latest/userguide/designate-orgs-admin-account.html#designate-admin-instructions) in the *User Guide*.
197445
198154
  To change the delegated administrator account, remove the current delegated administrator account, and then designate the new account.
@@ -217815,6 +218524,8 @@ export interface ResourceTypes {
217815
218524
  "AWS::Connect::ContactFlow": ConnectContactFlowProps;
217816
218525
  "AWS::Connect::ContactFlowModule": ConnectContactFlowModuleProps;
217817
218526
  "AWS::Connect::ContactFlowVersion": ConnectContactFlowVersionProps;
218527
+ "AWS::Connect::DataTable": ConnectDataTableProps;
218528
+ "AWS::Connect::DataTableAttribute": ConnectDataTableAttributeProps;
217818
218529
  "AWS::Connect::EmailAddress": ConnectEmailAddressProps;
217819
218530
  "AWS::Connect::EvaluationForm": ConnectEvaluationFormProps;
217820
218531
  "AWS::Connect::HoursOfOperation": ConnectHoursOfOperationProps;
@@ -218538,6 +219249,8 @@ export interface ResourceTypes {
218538
219249
  "AWS::Oam::Sink": OamSinkProps;
218539
219250
  "AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleProps;
218540
219251
  "AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleProps;
219252
+ "AWS::ObservabilityAdmin::S3TableIntegration": ObservabilityAdminS3TableIntegrationProps;
219253
+ "AWS::ObservabilityAdmin::TelemetryPipelines": ObservabilityAdminTelemetryPipelinesProps;
218541
219254
  "AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleProps;
218542
219255
  "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterProps;
218543
219256
  "AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureProps;
@@ -218802,6 +219515,7 @@ export interface ResourceTypes {
218802
219515
  "AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleProps;
218803
219516
  "AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Props;
218804
219517
  "AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyProps;
219518
+ "AWS::SecurityHub::ConnectorV2": SecurityHubConnectorV2Props;
218805
219519
  "AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminProps;
218806
219520
  "AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorProps;
218807
219521
  "AWS::SecurityHub::Hub": SecurityHubHubProps;
@@ -219277,6 +219991,8 @@ export interface AttributeTypes {
219277
219991
  "AWS::Connect::ContactFlow": ConnectContactFlowAttributes;
219278
219992
  "AWS::Connect::ContactFlowModule": ConnectContactFlowModuleAttributes;
219279
219993
  "AWS::Connect::ContactFlowVersion": ConnectContactFlowVersionAttributes;
219994
+ "AWS::Connect::DataTable": ConnectDataTableAttributes;
219995
+ "AWS::Connect::DataTableAttribute": ConnectDataTableAttributeAttributes;
219280
219996
  "AWS::Connect::EmailAddress": ConnectEmailAddressAttributes;
219281
219997
  "AWS::Connect::EvaluationForm": ConnectEvaluationFormAttributes;
219282
219998
  "AWS::Connect::HoursOfOperation": ConnectHoursOfOperationAttributes;
@@ -219918,6 +220634,8 @@ export interface AttributeTypes {
219918
220634
  "AWS::Oam::Sink": OamSinkAttributes;
219919
220635
  "AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleAttributes;
219920
220636
  "AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleAttributes;
220637
+ "AWS::ObservabilityAdmin::S3TableIntegration": ObservabilityAdminS3TableIntegrationAttributes;
220638
+ "AWS::ObservabilityAdmin::TelemetryPipelines": ObservabilityAdminTelemetryPipelinesAttributes;
219921
220639
  "AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleAttributes;
219922
220640
  "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterAttributes;
219923
220641
  "AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureAttributes;
@@ -220156,6 +220874,7 @@ export interface AttributeTypes {
220156
220874
  "AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleAttributes;
220157
220875
  "AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Attributes;
220158
220876
  "AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyAttributes;
220877
+ "AWS::SecurityHub::ConnectorV2": SecurityHubConnectorV2Attributes;
220159
220878
  "AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminAttributes;
220160
220879
  "AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorAttributes;
220161
220880
  "AWS::SecurityHub::Hub": SecurityHubHubAttributes;
@@ -220640,6 +221359,8 @@ export declare const ResourceType: {
220640
221359
  readonly ConnectContactFlow: "AWS::Connect::ContactFlow";
220641
221360
  readonly ConnectContactFlowModule: "AWS::Connect::ContactFlowModule";
220642
221361
  readonly ConnectContactFlowVersion: "AWS::Connect::ContactFlowVersion";
221362
+ readonly ConnectDataTable: "AWS::Connect::DataTable";
221363
+ readonly ConnectDataTableAttribute: "AWS::Connect::DataTableAttribute";
220643
221364
  readonly ConnectEmailAddress: "AWS::Connect::EmailAddress";
220644
221365
  readonly ConnectEvaluationForm: "AWS::Connect::EvaluationForm";
220645
221366
  readonly ConnectHoursOfOperation: "AWS::Connect::HoursOfOperation";
@@ -221363,6 +222084,8 @@ export declare const ResourceType: {
221363
222084
  readonly OamSink: "AWS::Oam::Sink";
221364
222085
  readonly ObservabilityAdminOrganizationCentralizationRule: "AWS::ObservabilityAdmin::OrganizationCentralizationRule";
221365
222086
  readonly ObservabilityAdminOrganizationTelemetryRule: "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
222087
+ readonly ObservabilityAdminS3TableIntegration: "AWS::ObservabilityAdmin::S3TableIntegration";
222088
+ readonly ObservabilityAdminTelemetryPipelines: "AWS::ObservabilityAdmin::TelemetryPipelines";
221366
222089
  readonly ObservabilityAdminTelemetryRule: "AWS::ObservabilityAdmin::TelemetryRule";
221367
222090
  readonly ODBCloudAutonomousVmCluster: "AWS::ODB::CloudAutonomousVmCluster";
221368
222091
  readonly ODBCloudExadataInfrastructure: "AWS::ODB::CloudExadataInfrastructure";
@@ -221627,6 +222350,7 @@ export declare const ResourceType: {
221627
222350
  readonly SecurityHubAutomationRule: "AWS::SecurityHub::AutomationRule";
221628
222351
  readonly SecurityHubAutomationRuleV2: "AWS::SecurityHub::AutomationRuleV2";
221629
222352
  readonly SecurityHubConfigurationPolicy: "AWS::SecurityHub::ConfigurationPolicy";
222353
+ readonly SecurityHubConnectorV2: "AWS::SecurityHub::ConnectorV2";
221630
222354
  readonly SecurityHubDelegatedAdmin: "AWS::SecurityHub::DelegatedAdmin";
221631
222355
  readonly SecurityHubFindingAggregator: "AWS::SecurityHub::FindingAggregator";
221632
222356
  readonly SecurityHubHub: "AWS::SecurityHub::Hub";