@awboost/cfntypes 0.100.346 → 0.100.348

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,230 @@ 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
+ };
41825
+ /**
41826
+ * Resource Type definition for AWS::Connect::DataTableRecord
41827
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
41828
+ */
41829
+ export type ConnectDataTableRecordProps = {
41830
+ /**
41831
+ * @minLength `1`
41832
+ * @maxLength `2048`
41833
+ */
41834
+ DataTableArn?: string;
41835
+ DataTableRecord?: {
41836
+ PrimaryValues?: ConnectDataTableRecordValue[];
41837
+ Values: ConnectDataTableRecordValue[];
41838
+ };
41839
+ /**
41840
+ * @minLength `1`
41841
+ * @maxLength `100`
41842
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
41843
+ */
41844
+ InstanceArn?: string;
41845
+ };
41846
+ /**
41847
+ * Attribute type definition for `AWS::Connect::DataTableRecord`.
41848
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#aws-resource-connect-datatablerecord-return-values}
41849
+ */
41850
+ export type ConnectDataTableRecordAttributes = {
41851
+ /**
41852
+ * @minLength `1`
41853
+ * @maxLength `256`
41854
+ */
41855
+ RecordId: string;
41856
+ };
41857
+ /**
41858
+ * Type definition for `AWS::Connect::DataTableRecord.Value`.
41859
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatablerecord-value.html}
41860
+ */
41861
+ export type ConnectDataTableRecordValue = {
41862
+ /**
41863
+ * @minLength `1`
41864
+ * @maxLength `256`
41865
+ */
41866
+ AttributeId?: string;
41867
+ AttributeValue?: string;
41868
+ };
41645
41869
  /**
41646
41870
  * Resource Type definition for AWS::Connect::EmailAddress
41647
41871
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html}
@@ -41733,6 +41957,9 @@ export type ConnectEmailAddressTag = {
41733
41957
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
41734
41958
  */
41735
41959
  export type ConnectEvaluationFormProps = {
41960
+ /**
41961
+ * The automatic evaluation configuration of an evaluation form.
41962
+ */
41736
41963
  AutoEvaluationConfiguration?: ConnectEvaluationFormAutoEvaluationConfiguration;
41737
41964
  /**
41738
41965
  * The description of the evaluation form.
@@ -41753,6 +41980,7 @@ export type ConnectEvaluationFormProps = {
41753
41980
  * @maxLength `200`
41754
41981
  */
41755
41982
  Items: ConnectEvaluationFormEvaluationFormBaseItem[];
41983
+ LanguageConfiguration?: ConnectEvaluationFormEvaluationFormLanguageConfiguration;
41756
41984
  /**
41757
41985
  * A scoring strategy of the evaluation form.
41758
41986
  */
@@ -41767,6 +41995,7 @@ export type ConnectEvaluationFormProps = {
41767
41995
  * @maxLength `50`
41768
41996
  */
41769
41997
  Tags?: ConnectEvaluationFormTag[];
41998
+ TargetConfiguration?: ConnectEvaluationFormEvaluationFormTargetConfiguration;
41770
41999
  /**
41771
42000
  * A title of the evaluation form.
41772
42001
  * @minLength `1`
@@ -41786,6 +42015,7 @@ export type ConnectEvaluationFormAttributes = {
41786
42015
  };
41787
42016
  /**
41788
42017
  * Type definition for `AWS::Connect::EvaluationForm.AutoEvaluationConfiguration`.
42018
+ * Configuration information about automated evaluations.
41789
42019
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html}
41790
42020
  */
41791
42021
  export type ConnectEvaluationFormAutoEvaluationConfiguration = {
@@ -41793,11 +42023,12 @@ export type ConnectEvaluationFormAutoEvaluationConfiguration = {
41793
42023
  };
41794
42024
  /**
41795
42025
  * Type definition for `AWS::Connect::EvaluationForm.AutomaticFailConfiguration`.
42026
+ * Information about automatic fail configuration for an evaluation form.
41796
42027
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-automaticfailconfiguration.html}
41797
42028
  */
41798
42029
  export type ConnectEvaluationFormAutomaticFailConfiguration = {
41799
42030
  /**
41800
- * The target section refId to control failure propagation boundary.
42031
+ * The referenceId of the target section for auto failure.
41801
42032
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
41802
42033
  */
41803
42034
  TargetSection?: string;
@@ -41830,102 +42061,188 @@ export type ConnectEvaluationFormEvaluationFormItem = {
41830
42061
  };
41831
42062
  /**
41832
42063
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementCondition`.
42064
+ * A condition for item enablement.
41833
42065
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementcondition.html}
41834
42066
  */
41835
42067
  export type ConnectEvaluationFormEvaluationFormItemEnablementCondition = {
41836
42068
  /**
41837
- * The list of operands that compose the condition. Each operand represents a specific criteria to be evaluated.
42069
+ * Operands of the enablement condition.
41838
42070
  * @minLength `1`
41839
42071
  */
41840
42072
  Operands: ConnectEvaluationFormEvaluationFormItemEnablementConditionOperand[];
41841
42073
  /**
41842
- * The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
42074
+ * The operator to be used to be applied to operands if more than one provided.
41843
42075
  */
41844
42076
  Operator?: "OR" | "AND";
41845
42077
  };
41846
42078
  /**
41847
42079
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConditionOperand`.
42080
+ * An operand of the enablement condition.
41848
42081
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconditionoperand.html}
41849
42082
  */
41850
42083
  export type ConnectEvaluationFormEvaluationFormItemEnablementConditionOperand = {
41851
42084
  /**
41852
- * A direct comparison expression that evaluates a form item's value against specified criteria.
42085
+ * An expression of the enablement condition.
41853
42086
  */
41854
42087
  Expression?: ConnectEvaluationFormEvaluationFormItemEnablementExpression;
41855
42088
  };
41856
42089
  /**
41857
42090
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementConfiguration`.
42091
+ * An item enablement configuration.
41858
42092
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementconfiguration.html}
41859
42093
  */
41860
42094
  export type ConnectEvaluationFormEvaluationFormItemEnablementConfiguration = {
41861
42095
  /**
41862
- * Defines the enablement status to be applied when the specified condition is met.
42096
+ * An enablement action that if condition is satisfied.
41863
42097
  */
41864
42098
  Action: "DISABLE" | "ENABLE";
41865
42099
  /**
41866
- * Specifies the logical condition that determines when to apply the enablement rules.
42100
+ * A condition for item enablement configuration.
41867
42101
  */
41868
42102
  Condition: ConnectEvaluationFormEvaluationFormItemEnablementCondition;
41869
42103
  /**
41870
- * Specifies the default enablement status to be applied when the condition is not satisfied.
42104
+ * An enablement action that if condition is not satisfied.
41871
42105
  */
41872
42106
  DefaultAction?: "DISABLE" | "ENABLE";
41873
42107
  };
41874
42108
  /**
41875
42109
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementExpression`.
42110
+ * An expression that defines a basic building block of conditional enablement.
41876
42111
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementexpression.html}
41877
42112
  */
41878
42113
  export type ConnectEvaluationFormEvaluationFormItemEnablementExpression = {
41879
42114
  /**
41880
- * Specifies the comparison method to determine if the source value matches any of the specified values.
42115
+ * A comparator to be used against list of values.
41881
42116
  */
41882
42117
  Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
41883
42118
  /**
41884
- * Identifies the form item whose value will be evaluated in the expression.
42119
+ * A source item of enablement expression.
41885
42120
  */
41886
42121
  Source: ConnectEvaluationFormEvaluationFormItemEnablementSource;
41887
42122
  /**
41888
- * The list of possible values to compare against the source form item's value.
42123
+ * A list of values from source item.
41889
42124
  * @minLength `1`
41890
42125
  */
41891
42126
  Values: ConnectEvaluationFormEvaluationFormItemEnablementSourceValue[];
41892
42127
  };
41893
42128
  /**
41894
42129
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSource`.
42130
+ * An enablement expression source item.
41895
42131
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsource.html}
41896
42132
  */
41897
42133
  export type ConnectEvaluationFormEvaluationFormItemEnablementSource = {
41898
42134
  /**
41899
- * The identifier to reference the item.
42135
+ * A referenceId of the source item.
41900
42136
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
41901
42137
  */
41902
42138
  RefId?: string;
41903
42139
  /**
41904
- * The type of the source entity.
42140
+ * A type of source item.
41905
42141
  */
41906
42142
  Type: "QUESTION_REF_ID";
41907
42143
  };
41908
42144
  /**
41909
42145
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormItemEnablementSourceValue`.
42146
+ * An enablement expression source value.
41910
42147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformitemenablementsourcevalue.html}
41911
42148
  */
41912
42149
  export type ConnectEvaluationFormEvaluationFormItemEnablementSourceValue = {
41913
42150
  /**
41914
- * The reference id of the source entity value.
42151
+ * A referenceId of the source value.
41915
42152
  * @pattern `^[a-zA-Z0-9._-]{1,40}$`
41916
42153
  */
41917
42154
  RefId?: string;
41918
42155
  /**
41919
- * Type of the source entity value.
42156
+ * A type of source item value.
41920
42157
  */
41921
42158
  Type?: "OPTION_REF_ID";
41922
42159
  };
42160
+ /**
42161
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormLanguageConfiguration`.
42162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformlanguageconfiguration.html}
42163
+ */
42164
+ export type ConnectEvaluationFormEvaluationFormLanguageConfiguration = {
42165
+ /**
42166
+ * The language of the form
42167
+ */
42168
+ FormLanguage?: "de-DE" | "en-US" | "es-ES" | "fr-FR" | "it-IT" | "pt-BR";
42169
+ };
42170
+ /**
42171
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomation`.
42172
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomation.html}
42173
+ */
42174
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomation = {
42175
+ /**
42176
+ * The source of automation answer of the question.
42177
+ */
42178
+ AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
42179
+ /**
42180
+ * The option reference identifiers of the default answers.
42181
+ */
42182
+ DefaultOptionRefIds?: string[];
42183
+ /**
42184
+ * The answer options for the automation.
42185
+ * @minLength `1`
42186
+ * @maxLength `20`
42187
+ */
42188
+ Options: ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomationOption[];
42189
+ };
42190
+ /**
42191
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionAutomationOption`.
42192
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionautomationoption.html}
42193
+ */
42194
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomationOption = {
42195
+ /**
42196
+ * The automation option based on Rules categories.
42197
+ */
42198
+ RuleCategory: ConnectEvaluationFormMultiSelectQuestionRuleCategoryAutomation;
42199
+ };
42200
+ /**
42201
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionOption`.
42202
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionoption.html}
42203
+ */
42204
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionOption = {
42205
+ /**
42206
+ * The identifier used to reference the option.
42207
+ * @pattern `^[a-zA-Z0-9._-]{1,40}$`
42208
+ */
42209
+ RefId: string;
42210
+ /**
42211
+ * The title of the option.
42212
+ * @minLength `1`
42213
+ * @maxLength `128`
42214
+ */
42215
+ Text: string;
42216
+ };
42217
+ /**
42218
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormMultiSelectQuestionProperties`.
42219
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformmultiselectquestionproperties.html}
42220
+ */
42221
+ export type ConnectEvaluationFormEvaluationFormMultiSelectQuestionProperties = {
42222
+ /**
42223
+ * The automation properties for the multi-select question.
42224
+ */
42225
+ Automation?: ConnectEvaluationFormEvaluationFormMultiSelectQuestionAutomation;
42226
+ /**
42227
+ * The display mode of the multi-select question.
42228
+ */
42229
+ DisplayAs?: "DROPDOWN" | "CHECKBOX";
42230
+ /**
42231
+ * The list of options for the question.
42232
+ * @minLength `2`
42233
+ * @maxLength `256`
42234
+ */
42235
+ Options: ConnectEvaluationFormEvaluationFormMultiSelectQuestionOption[];
42236
+ };
41923
42237
  /**
41924
42238
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionAutomation`.
41925
42239
  * Information about the automation configuration in numeric questions.
41926
42240
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
41927
42241
  */
41928
42242
  export type ConnectEvaluationFormEvaluationFormNumericQuestionAutomation = {
42243
+ /**
42244
+ * A source of automation answer for numeric question.
42245
+ */
41929
42246
  AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
41930
42247
  /**
41931
42248
  * The property value of the automation.
@@ -41942,6 +42259,9 @@ export type ConnectEvaluationFormEvaluationFormNumericQuestionOption = {
41942
42259
  * 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
42260
  */
41944
42261
  AutomaticFail?: boolean;
42262
+ /**
42263
+ * A configuration for automatic fail.
42264
+ */
41945
42265
  AutomaticFailConfiguration?: ConnectEvaluationFormAutomaticFailConfiguration;
41946
42266
  /**
41947
42267
  * The maximum answer value of the range option.
@@ -41991,6 +42311,9 @@ export type ConnectEvaluationFormEvaluationFormNumericQuestionProperties = {
41991
42311
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestion.html}
41992
42312
  */
41993
42313
  export type ConnectEvaluationFormEvaluationFormQuestion = {
42314
+ /**
42315
+ * A question conditional enablement.
42316
+ */
41994
42317
  Enablement?: ConnectEvaluationFormEvaluationFormItemEnablementConfiguration;
41995
42318
  /**
41996
42319
  * The instructions of the section.
@@ -42035,11 +42358,12 @@ export type ConnectEvaluationFormEvaluationFormQuestion = {
42035
42358
  };
42036
42359
  /**
42037
42360
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormQuestionAutomationAnswerSource`.
42361
+ * A question automation answer.
42038
42362
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestionautomationanswersource.html}
42039
42363
  */
42040
42364
  export type ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource = {
42041
42365
  /**
42042
- * The type of the answer source
42366
+ * The automation answer source type.
42043
42367
  */
42044
42368
  SourceType: "CONTACT_LENS_DATA" | "GEN_AI";
42045
42369
  };
@@ -42049,6 +42373,7 @@ export type ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource =
42049
42373
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformquestiontypeproperties.html}
42050
42374
  */
42051
42375
  export type ConnectEvaluationFormEvaluationFormQuestionTypeProperties = {
42376
+ MultiSelect?: ConnectEvaluationFormEvaluationFormMultiSelectQuestionProperties;
42052
42377
  /**
42053
42378
  * The properties of the numeric question.
42054
42379
  */
@@ -42057,6 +42382,9 @@ export type ConnectEvaluationFormEvaluationFormQuestionTypeProperties = {
42057
42382
  * The properties of the numeric question.
42058
42383
  */
42059
42384
  SingleSelect?: ConnectEvaluationFormEvaluationFormSingleSelectQuestionProperties;
42385
+ /**
42386
+ * The properties of the text question.
42387
+ */
42060
42388
  Text?: ConnectEvaluationFormEvaluationFormTextQuestionProperties;
42061
42389
  };
42062
42390
  /**
@@ -42105,6 +42433,9 @@ export type ConnectEvaluationFormEvaluationFormSection = {
42105
42433
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformsingleselectquestionautomation.html}
42106
42434
  */
42107
42435
  export type ConnectEvaluationFormEvaluationFormSingleSelectQuestionAutomation = {
42436
+ /**
42437
+ * Automation answer source.
42438
+ */
42108
42439
  AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
42109
42440
  /**
42110
42441
  * The identifier of the default answer option, when none of the automation options match the criteria.
@@ -42142,6 +42473,9 @@ export type ConnectEvaluationFormEvaluationFormSingleSelectQuestionOption = {
42142
42473
  * 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
42474
  */
42144
42475
  AutomaticFail?: boolean;
42476
+ /**
42477
+ * Whether automatic fail is configured on a single select question.
42478
+ */
42145
42479
  AutomaticFailConfiguration?: ConnectEvaluationFormAutomaticFailConfiguration;
42146
42480
  /**
42147
42481
  * The identifier of the answer option. An identifier must be unique within the question.
@@ -42189,26 +42523,58 @@ export type ConnectEvaluationFormEvaluationFormSingleSelectQuestionProperties =
42189
42523
  */
42190
42524
  Options: ConnectEvaluationFormEvaluationFormSingleSelectQuestionOption[];
42191
42525
  };
42526
+ /**
42527
+ * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTargetConfiguration`.
42528
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtargetconfiguration.html}
42529
+ */
42530
+ export type ConnectEvaluationFormEvaluationFormTargetConfiguration = {
42531
+ /**
42532
+ * The interaction type of a contact
42533
+ */
42534
+ ContactInteractionType: "AGENT" | "AUTOMATED";
42535
+ };
42192
42536
  /**
42193
42537
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionAutomation`.
42538
+ * Information about the automation configuration in text questions.
42194
42539
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionautomation.html}
42195
42540
  */
42196
42541
  export type ConnectEvaluationFormEvaluationFormTextQuestionAutomation = {
42197
42542
  /**
42198
- * The source of automation answer of the question.
42543
+ * Automation answer source.
42199
42544
  */
42200
42545
  AnswerSource?: ConnectEvaluationFormEvaluationFormQuestionAutomationAnswerSource;
42201
42546
  };
42202
42547
  /**
42203
42548
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormTextQuestionProperties`.
42549
+ * Information about properties for a text question in an evaluation form.
42204
42550
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformtextquestionproperties.html}
42205
42551
  */
42206
42552
  export type ConnectEvaluationFormEvaluationFormTextQuestionProperties = {
42207
42553
  /**
42208
- * Specifies how the question can be automatically answered.
42554
+ * The automation properties of the text question.
42209
42555
  */
42210
42556
  Automation?: ConnectEvaluationFormEvaluationFormTextQuestionAutomation;
42211
42557
  };
42558
+ /**
42559
+ * Type definition for `AWS::Connect::EvaluationForm.MultiSelectQuestionRuleCategoryAutomation`.
42560
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-multiselectquestionrulecategoryautomation.html}
42561
+ */
42562
+ export type ConnectEvaluationFormMultiSelectQuestionRuleCategoryAutomation = {
42563
+ /**
42564
+ * The category name as defined in Rules.
42565
+ * @minLength `1`
42566
+ * @maxLength `50`
42567
+ */
42568
+ Category: string;
42569
+ /**
42570
+ * The automation condition applied on contact categories.
42571
+ */
42572
+ Condition: "PRESENT" | "NOT_PRESENT";
42573
+ /**
42574
+ * The option identifiers referencing the options to be selected when the automation option is triggered.
42575
+ */
42576
+ OptionRefIds: string[];
42577
+ };
42212
42578
  /**
42213
42579
  * Type definition for `AWS::Connect::EvaluationForm.NumericQuestionPropertyValueAutomation`.
42214
42580
  * Information about the property value used in automation of a numeric questions.
@@ -42218,7 +42584,7 @@ export type ConnectEvaluationFormNumericQuestionPropertyValueAutomation = {
42218
42584
  /**
42219
42585
  * The property label of the automation.
42220
42586
  */
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";
42587
+ 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
42588
  };
42223
42589
  /**
42224
42590
  * Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
@@ -84570,7 +84936,7 @@ export type GameLiftScriptAttributes = {
84570
84936
  Id: string;
84571
84937
  /**
84572
84938
  * The file size of the uploaded Realtime script, expressed in bytes. When files are uploaded from an S3 location, this value remains at "0".
84573
- * @min `1`
84939
+ * @min `0`
84574
84940
  */
84575
84941
  SizeOnDisk: number;
84576
84942
  };
@@ -85619,6 +85985,44 @@ export type GlueDevEndpointProps = {
85619
85985
  export type GlueDevEndpointAttributes = {
85620
85986
  Id: string;
85621
85987
  };
85988
+ /**
85989
+ * Resource Type definition for AWS::Glue::IdentityCenterConfiguration
85990
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
85991
+ */
85992
+ export type GlueIdentityCenterConfigurationProps = {
85993
+ /**
85994
+ * The IAM identity center instance arn
85995
+ * @minLength `10`
85996
+ * @maxLength `1224`
85997
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
85998
+ */
85999
+ InstanceArn: string;
86000
+ /**
86001
+ * The downstream scopes that Glue identity center configuration can access
86002
+ */
86003
+ Scopes?: string[];
86004
+ /**
86005
+ * Enable or disable user background sessions for Glue Identity Center
86006
+ */
86007
+ UserBackgroundSessionsEnabled?: boolean;
86008
+ };
86009
+ /**
86010
+ * Attribute type definition for `AWS::Glue::IdentityCenterConfiguration`.
86011
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#aws-resource-glue-identitycenterconfiguration-return-values}
86012
+ */
86013
+ export type GlueIdentityCenterConfigurationAttributes = {
86014
+ /**
86015
+ * The identifier for the specified AWS account.
86016
+ */
86017
+ AccountId: string;
86018
+ /**
86019
+ * The Glue IAM identity center application arn
86020
+ * @minLength `10`
86021
+ * @maxLength `1224`
86022
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::\d{12}:application/(sso)?ins-[a-zA-Z0-9-.]{16}/apl-[a-zA-Z0-9]{16}$`
86023
+ */
86024
+ ApplicationArn: string;
86025
+ };
85622
86026
  /**
85623
86027
  * Resource Type definition for AWS::Glue::Integration
85624
86028
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html}
@@ -121440,6 +121844,8 @@ export type MediaLiveChannelAv1Settings = {
121440
121844
  QvbrQualityLevel?: number;
121441
121845
  RateControlMode?: string;
121442
121846
  SceneChangeDetect?: string;
121847
+ SpatialAq?: string;
121848
+ TemporalAq?: string;
121443
121849
  TimecodeBurninSettings?: MediaLiveChannelTimecodeBurninSettings;
121444
121850
  };
121445
121851
  /**
@@ -122004,6 +122410,7 @@ export type MediaLiveChannelH265ColorSpaceSettings = {
122004
122410
  ColorSpacePassthroughSettings?: MediaLiveChannelColorSpacePassthroughSettings;
122005
122411
  DolbyVision81Settings?: MediaLiveChannelDolbyVision81Settings;
122006
122412
  Hdr10Settings?: MediaLiveChannelHdr10Settings;
122413
+ Hlg2020Settings?: MediaLiveChannelHlg2020Settings;
122007
122414
  Rec601Settings?: MediaLiveChannelRec601Settings;
122008
122415
  Rec709Settings?: MediaLiveChannelRec709Settings;
122009
122416
  };
@@ -122071,6 +122478,11 @@ export type MediaLiveChannelHdr10Settings = {
122071
122478
  MaxCll?: number;
122072
122479
  MaxFall?: number;
122073
122480
  };
122481
+ /**
122482
+ * Type definition for `AWS::MediaLive::Channel.Hlg2020Settings`.
122483
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlg2020settings.html}
122484
+ */
122485
+ export type MediaLiveChannelHlg2020Settings = Record<string, any>;
122074
122486
  /**
122075
122487
  * Type definition for `AWS::MediaLive::Channel.HlsAkamaiSettings`.
122076
122488
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlsakamaisettings.html}
@@ -123539,6 +123951,7 @@ export type MediaLiveInputProps = {
123539
123951
  MulticastSettings?: MediaLiveInputMulticastSettingsCreateRequest;
123540
123952
  Name?: string;
123541
123953
  RoleArn?: string;
123954
+ RouterSettings?: MediaLiveInputRouterSettings;
123542
123955
  SdiSources?: string[];
123543
123956
  Smpte2110ReceiverGroupSettings?: MediaLiveInputSmpte2110ReceiverGroupSettings;
123544
123957
  Sources?: MediaLiveInputInputSourceRequest[];
@@ -123627,6 +124040,22 @@ export type MediaLiveInputMulticastSourceCreateRequest = {
123627
124040
  SourceIp?: string;
123628
124041
  Url?: string;
123629
124042
  };
124043
+ /**
124044
+ * Type definition for `AWS::MediaLive::Input.RouterDestinationSettings`.
124045
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-routerdestinationsettings.html}
124046
+ */
124047
+ export type MediaLiveInputRouterDestinationSettings = {
124048
+ AvailabilityZoneName?: string;
124049
+ };
124050
+ /**
124051
+ * Type definition for `AWS::MediaLive::Input.RouterSettings`.
124052
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-routersettings.html}
124053
+ */
124054
+ export type MediaLiveInputRouterSettings = {
124055
+ Destinations?: MediaLiveInputRouterDestinationSettings[];
124056
+ EncryptionType?: string;
124057
+ SecretArn?: string;
124058
+ };
123630
124059
  /**
123631
124060
  * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroup`.
123632
124061
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html}
@@ -132702,6 +133131,263 @@ export type ObservabilityAdminOrganizationTelemetryRuleVPCFlowLogParameters = {
132702
133131
  */
132703
133132
  TrafficType?: string;
132704
133133
  };
133134
+ /**
133135
+ * Resource type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
133136
+ * Resource Type definition for a CloudWatch Observability Admin S3 Table Integration.
133137
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html}
133138
+ */
133139
+ export type ObservabilityAdminS3TableIntegrationProps = {
133140
+ /**
133141
+ * Encryption configuration for the S3 Table Integration
133142
+ */
133143
+ Encryption: ObservabilityAdminS3TableIntegrationEncryptionConfig;
133144
+ /**
133145
+ * The CloudWatch Logs data sources to associate with the S3 Table Integration
133146
+ */
133147
+ LogSources?: ObservabilityAdminS3TableIntegrationLogSource[];
133148
+ /**
133149
+ * The ARN of the role used to access the S3 Table Integration
133150
+ * @minLength `1`
133151
+ * @maxLength `1011`
133152
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133153
+ */
133154
+ RoleArn: string;
133155
+ /**
133156
+ * An array of key-value pairs to apply to this resource
133157
+ */
133158
+ Tags?: ObservabilityAdminS3TableIntegrationTag[];
133159
+ };
133160
+ /**
133161
+ * Attribute type definition for `AWS::ObservabilityAdmin::S3TableIntegration`.
133162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html#aws-resource-observabilityadmin-s3tableintegration-return-values}
133163
+ */
133164
+ export type ObservabilityAdminS3TableIntegrationAttributes = {
133165
+ /**
133166
+ * The ARN of the S3 Table Integration
133167
+ * @minLength `1`
133168
+ * @maxLength `1011`
133169
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133170
+ */
133171
+ Arn: string;
133172
+ /**
133173
+ * The CloudWatch Logs data sources to associate with the S3 Table Integration
133174
+ */
133175
+ LogSources: {
133176
+ /**
133177
+ * The ID of the CloudWatch Logs data source association
133178
+ * @minLength `1`
133179
+ * @maxLength `256`
133180
+ */
133181
+ Identifier: string;
133182
+ }[];
133183
+ };
133184
+ /**
133185
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.EncryptionConfig`.
133186
+ * Encryption configuration for the S3 Table Integration
133187
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html}
133188
+ */
133189
+ export type ObservabilityAdminS3TableIntegrationEncryptionConfig = {
133190
+ /**
133191
+ * The ARN of the KMS key used to encrypt the S3 Table Integration
133192
+ * @minLength `1`
133193
+ * @maxLength `1011`
133194
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133195
+ */
133196
+ KmsKeyArn?: string;
133197
+ /**
133198
+ * The server-side encryption algorithm used to encrypt the S3 Table(s) data
133199
+ */
133200
+ SseAlgorithm: "AES256" | "aws:kms";
133201
+ };
133202
+ /**
133203
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.LogSource`.
133204
+ * CloudWatch Logs data source to associate with the S3 Table Integration
133205
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html}
133206
+ */
133207
+ export type ObservabilityAdminS3TableIntegrationLogSource = {
133208
+ /**
133209
+ * The name of the CloudWatch Logs data source
133210
+ * @minLength `1`
133211
+ * @maxLength `256`
133212
+ */
133213
+ Name: string;
133214
+ /**
133215
+ * The type of the CloudWatch Logs data source
133216
+ * @minLength `1`
133217
+ * @maxLength `256`
133218
+ */
133219
+ Type: string;
133220
+ };
133221
+ /**
133222
+ * Type definition for `AWS::ObservabilityAdmin::S3TableIntegration.Tag`.
133223
+ * A key-value pair to associate with a resource
133224
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-tag.html}
133225
+ */
133226
+ export type ObservabilityAdminS3TableIntegrationTag = {
133227
+ /**
133228
+ * 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 -.
133229
+ * @minLength `1`
133230
+ * @maxLength `128`
133231
+ */
133232
+ Key: string;
133233
+ /**
133234
+ * 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 -.
133235
+ * @minLength `0`
133236
+ * @maxLength `256`
133237
+ */
133238
+ Value: string;
133239
+ };
133240
+ /**
133241
+ * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines
133242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
133243
+ */
133244
+ export type ObservabilityAdminTelemetryPipelinesProps = {
133245
+ Configuration: ObservabilityAdminTelemetryPipelinesTelemetryPipelineConfiguration;
133246
+ /**
133247
+ * @minLength `3`
133248
+ * @maxLength `28`
133249
+ * @pattern `[a-z][a-z0-9\-]+`
133250
+ */
133251
+ Name?: string;
133252
+ /**
133253
+ * An array of key-value pairs to apply to this resource
133254
+ */
133255
+ Tags?: ObservabilityAdminTelemetryPipelinesTag[];
133256
+ };
133257
+ /**
133258
+ * Attribute type definition for `AWS::ObservabilityAdmin::TelemetryPipelines`.
133259
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#aws-resource-observabilityadmin-telemetrypipelines-return-values}
133260
+ */
133261
+ export type ObservabilityAdminTelemetryPipelinesAttributes = {
133262
+ /**
133263
+ * @minLength `1`
133264
+ * @maxLength `1011`
133265
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133266
+ */
133267
+ Arn: string;
133268
+ Pipeline: {
133269
+ /**
133270
+ * @minLength `1`
133271
+ * @maxLength `1011`
133272
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133273
+ */
133274
+ Arn: string;
133275
+ Configuration: {
133276
+ /**
133277
+ * @minLength `1`
133278
+ * @maxLength `24000`
133279
+ */
133280
+ Body: string;
133281
+ };
133282
+ CreatedTimeStamp: number;
133283
+ LastUpdateTimeStamp: number;
133284
+ /**
133285
+ * @minLength `3`
133286
+ * @maxLength `28`
133287
+ * @pattern `[a-z][a-z0-9\-]+`
133288
+ */
133289
+ Name: string;
133290
+ Status: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus;
133291
+ StatusReason: {
133292
+ Description: string;
133293
+ };
133294
+ /**
133295
+ * An array of key-value pairs to apply to this resource
133296
+ */
133297
+ Tags: {
133298
+ /**
133299
+ * 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 -.
133300
+ * @minLength `1`
133301
+ * @maxLength `128`
133302
+ */
133303
+ Key: string;
133304
+ /**
133305
+ * 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 -.
133306
+ * @minLength `0`
133307
+ * @maxLength `256`
133308
+ */
133309
+ Value: string;
133310
+ }[];
133311
+ };
133312
+ /**
133313
+ * @minLength `1`
133314
+ * @maxLength `512`
133315
+ */
133316
+ PipelineIdentifier: string;
133317
+ Status: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus;
133318
+ StatusReason: {
133319
+ Description: string;
133320
+ };
133321
+ };
133322
+ /**
133323
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.Tag`.
133324
+ * A key-value pair to associate with a resource
133325
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-tag.html}
133326
+ */
133327
+ export type ObservabilityAdminTelemetryPipelinesTag = {
133328
+ /**
133329
+ * 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 -.
133330
+ * @minLength `1`
133331
+ * @maxLength `128`
133332
+ */
133333
+ Key: string;
133334
+ /**
133335
+ * 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 -.
133336
+ * @minLength `0`
133337
+ * @maxLength `256`
133338
+ */
133339
+ Value: string;
133340
+ };
133341
+ /**
133342
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipeline`.
133343
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipeline.html}
133344
+ */
133345
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipeline = {
133346
+ /**
133347
+ * @minLength `1`
133348
+ * @maxLength `1011`
133349
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
133350
+ */
133351
+ Arn?: string;
133352
+ Configuration?: ObservabilityAdminTelemetryPipelinesTelemetryPipelineConfiguration;
133353
+ CreatedTimeStamp?: number;
133354
+ LastUpdateTimeStamp?: number;
133355
+ /**
133356
+ * @minLength `3`
133357
+ * @maxLength `28`
133358
+ * @pattern `[a-z][a-z0-9\-]+`
133359
+ */
133360
+ Name?: string;
133361
+ Status?: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus;
133362
+ StatusReason?: ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatusReason;
133363
+ /**
133364
+ * An array of key-value pairs to apply to this resource
133365
+ */
133366
+ Tags?: ObservabilityAdminTelemetryPipelinesTag[];
133367
+ };
133368
+ /**
133369
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineConfiguration`.
133370
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelineconfiguration.html}
133371
+ */
133372
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipelineConfiguration = {
133373
+ /**
133374
+ * @minLength `1`
133375
+ * @maxLength `24000`
133376
+ */
133377
+ Body: string;
133378
+ };
133379
+ /**
133380
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatus`.
133381
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatus.html}
133382
+ */
133383
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED";
133384
+ /**
133385
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatusReason`.
133386
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatusreason.html}
133387
+ */
133388
+ export type ObservabilityAdminTelemetryPipelinesTelemetryPipelineStatusReason = {
133389
+ Description?: string;
133390
+ };
132705
133391
  /**
132706
133392
  * The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
132707
133393
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
@@ -185258,6 +185944,10 @@ export type S3TablesTableProps = {
185258
185944
  * Contains details about the snapshot management settings for an Iceberg table. A snapshot is expired when it exceeds MinSnapshotsToKeep and MaxSnapshotAgeHours.
185259
185945
  */
185260
185946
  SnapshotManagement?: S3TablesTableSnapshotManagement;
185947
+ /**
185948
+ * Specifies storage class settings for the table
185949
+ */
185950
+ StorageClassConfiguration?: S3TablesTableStorageClassConfiguration;
185261
185951
  /**
185262
185952
  * The Amazon Resource Name (ARN) of the specified table bucket.
185263
185953
  */
@@ -185377,6 +186067,17 @@ export type S3TablesTableSnapshotManagement = {
185377
186067
  */
185378
186068
  Status?: "enabled" | "disabled";
185379
186069
  };
186070
+ /**
186071
+ * Type definition for `AWS::S3Tables::Table.StorageClassConfiguration`.
186072
+ * Specifies storage class settings for the table
186073
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-storageclassconfiguration.html}
186074
+ */
186075
+ export type S3TablesTableStorageClassConfiguration = {
186076
+ /**
186077
+ * The storage class for the table
186078
+ */
186079
+ StorageClass?: "STANDARD" | "INTELLIGENT_TIERING";
186080
+ };
185380
186081
  /**
185381
186082
  * Type definition for `AWS::S3Tables::Table.Tag`.
185382
186083
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-tag.html}
@@ -185414,6 +186115,10 @@ export type S3TablesTableBucketProps = {
185414
186115
  * Settings governing the Metric configuration for the table bucket.
185415
186116
  */
185416
186117
  MetricsConfiguration?: S3TablesTableBucketMetricsConfiguration;
186118
+ /**
186119
+ * Specifies storage class settings for the table bucket
186120
+ */
186121
+ StorageClassConfiguration?: S3TablesTableBucketStorageClassConfiguration;
185417
186122
  /**
185418
186123
  * A name for the table bucket.
185419
186124
  * @minLength `3`
@@ -185465,6 +186170,17 @@ export type S3TablesTableBucketMetricsConfiguration = {
185465
186170
  */
185466
186171
  Status?: "Enabled" | "Disabled";
185467
186172
  };
186173
+ /**
186174
+ * Type definition for `AWS::S3Tables::TableBucket.StorageClassConfiguration`.
186175
+ * Specifies storage class settings for the table bucket
186176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-storageclassconfiguration.html}
186177
+ */
186178
+ export type S3TablesTableBucketStorageClassConfiguration = {
186179
+ /**
186180
+ * The storage class for the table bucket
186181
+ */
186182
+ StorageClass?: "STANDARD" | "INTELLIGENT_TIERING";
186183
+ };
185468
186184
  /**
185469
186185
  * Type definition for `AWS::S3Tables::TableBucket.Tag`.
185470
186186
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-tag.html}
@@ -197440,6 +198156,136 @@ export type SecurityHubConfigurationPolicySecurityHubPolicy = {
197440
198156
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-configurationpolicy-tags.html}
197441
198157
  */
197442
198158
  export type SecurityHubConfigurationPolicyTags = Record<string, string>;
198159
+ /**
198160
+ * Resource schema for AWS::SecurityHub::ConnectorV2
198161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
198162
+ */
198163
+ export type SecurityHubConnectorV2Props = {
198164
+ /**
198165
+ * A description of the connector
198166
+ * @minLength `0`
198167
+ * @maxLength `256`
198168
+ * @pattern `.*\S.*`
198169
+ */
198170
+ Description?: string;
198171
+ /**
198172
+ * The ARN of KMS key used for the connector
198173
+ * @minLength `20`
198174
+ * @maxLength `2048`
198175
+ * @pattern `.*\S.*`
198176
+ */
198177
+ KmsKeyArn?: string;
198178
+ /**
198179
+ * The name of the connector
198180
+ * @minLength `1`
198181
+ * @maxLength `64`
198182
+ * @pattern `.*\S.*`
198183
+ */
198184
+ Name: string;
198185
+ /**
198186
+ * The provider configuration of the connector
198187
+ */
198188
+ Provider: SecurityHubConnectorV2Provider;
198189
+ /**
198190
+ * A key-value pair to associate with a resource.
198191
+ */
198192
+ Tags?: SecurityHubConnectorV2Tags;
198193
+ };
198194
+ /**
198195
+ * Attribute type definition for `AWS::SecurityHub::ConnectorV2`.
198196
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#aws-resource-securityhub-connectorv2-return-values}
198197
+ */
198198
+ export type SecurityHubConnectorV2Attributes = {
198199
+ /**
198200
+ * The ARN of the connector
198201
+ * @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}$`
198202
+ */
198203
+ ConnectorArn: string;
198204
+ /**
198205
+ * The ID of the connector
198206
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
198207
+ */
198208
+ ConnectorId: string;
198209
+ /**
198210
+ * The status of the connector
198211
+ */
198212
+ ConnectorStatus: "CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION";
198213
+ /**
198214
+ * The timestamp formatted in ISO8601
198215
+ * @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))?)$`
198216
+ */
198217
+ CreatedAt: string;
198218
+ /**
198219
+ * The timestamp formatted in ISO8601
198220
+ * @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))?)$`
198221
+ */
198222
+ LastCheckedAt: string;
198223
+ /**
198224
+ * The timestamp formatted in ISO8601
198225
+ * @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))?)$`
198226
+ */
198227
+ LastUpdatedAt: string;
198228
+ /**
198229
+ * The message of the connector status change
198230
+ */
198231
+ Message: string;
198232
+ };
198233
+ /**
198234
+ * Type definition for `AWS::SecurityHub::ConnectorV2.AuthStatus`.
198235
+ * The auth status of the connector
198236
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-authstatus.html}
198237
+ */
198238
+ export type SecurityHubConnectorV2AuthStatus = "ACTIVE" | "FAILED";
198239
+ /**
198240
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Provider`.
198241
+ * The provider configuration of the connector
198242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-provider.html}
198243
+ */
198244
+ export type SecurityHubConnectorV2Provider = {
198245
+ JiraCloud: {
198246
+ /**
198247
+ * The auth status of the connector
198248
+ */
198249
+ AuthStatus?: SecurityHubConnectorV2AuthStatus;
198250
+ /**
198251
+ * The authUrl of the JiraCloud connector
198252
+ * @pattern `.*\S.*`
198253
+ */
198254
+ AuthUrl?: string;
198255
+ CloudId?: string;
198256
+ Domain?: string;
198257
+ /**
198258
+ * @minLength `2`
198259
+ * @maxLength `10`
198260
+ */
198261
+ ProjectKey: string;
198262
+ };
198263
+ } | {
198264
+ ServiceNow: {
198265
+ /**
198266
+ * The auth status of the connector
198267
+ */
198268
+ AuthStatus?: SecurityHubConnectorV2AuthStatus;
198269
+ /**
198270
+ * @minLength `1`
198271
+ * @maxLength `128`
198272
+ */
198273
+ InstanceName: string;
198274
+ /**
198275
+ * The ARN of secrets manager containing ClientId and ClientSecret
198276
+ * @minLength `20`
198277
+ * @maxLength `2048`
198278
+ * @pattern `.*\S.*`
198279
+ */
198280
+ SecretArn: string;
198281
+ };
198282
+ };
198283
+ /**
198284
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Tags`.
198285
+ * A key-value pair to associate with a resource.
198286
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-tags.html}
198287
+ */
198288
+ export type SecurityHubConnectorV2Tags = Record<string, string>;
197443
198289
  /**
197444
198290
  * 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
198291
  To change the delegated administrator account, remove the current delegated administrator account, and then designate the new account.
@@ -217815,6 +218661,9 @@ export interface ResourceTypes {
217815
218661
  "AWS::Connect::ContactFlow": ConnectContactFlowProps;
217816
218662
  "AWS::Connect::ContactFlowModule": ConnectContactFlowModuleProps;
217817
218663
  "AWS::Connect::ContactFlowVersion": ConnectContactFlowVersionProps;
218664
+ "AWS::Connect::DataTable": ConnectDataTableProps;
218665
+ "AWS::Connect::DataTableAttribute": ConnectDataTableAttributeProps;
218666
+ "AWS::Connect::DataTableRecord": ConnectDataTableRecordProps;
217818
218667
  "AWS::Connect::EmailAddress": ConnectEmailAddressProps;
217819
218668
  "AWS::Connect::EvaluationForm": ConnectEvaluationFormProps;
217820
218669
  "AWS::Connect::HoursOfOperation": ConnectHoursOfOperationProps;
@@ -218169,6 +219018,7 @@ export interface ResourceTypes {
218169
219018
  "AWS::Glue::DataCatalogEncryptionSettings": GlueDataCatalogEncryptionSettingsProps;
218170
219019
  "AWS::Glue::DataQualityRuleset": GlueDataQualityRulesetProps;
218171
219020
  "AWS::Glue::DevEndpoint": GlueDevEndpointProps;
219021
+ "AWS::Glue::IdentityCenterConfiguration": GlueIdentityCenterConfigurationProps;
218172
219022
  "AWS::Glue::Integration": GlueIntegrationProps;
218173
219023
  "AWS::Glue::IntegrationResourceProperty": GlueIntegrationResourcePropertyProps;
218174
219024
  "AWS::Glue::Job": GlueJobProps;
@@ -218538,6 +219388,8 @@ export interface ResourceTypes {
218538
219388
  "AWS::Oam::Sink": OamSinkProps;
218539
219389
  "AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleProps;
218540
219390
  "AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleProps;
219391
+ "AWS::ObservabilityAdmin::S3TableIntegration": ObservabilityAdminS3TableIntegrationProps;
219392
+ "AWS::ObservabilityAdmin::TelemetryPipelines": ObservabilityAdminTelemetryPipelinesProps;
218541
219393
  "AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleProps;
218542
219394
  "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterProps;
218543
219395
  "AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureProps;
@@ -218802,6 +219654,7 @@ export interface ResourceTypes {
218802
219654
  "AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleProps;
218803
219655
  "AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Props;
218804
219656
  "AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyProps;
219657
+ "AWS::SecurityHub::ConnectorV2": SecurityHubConnectorV2Props;
218805
219658
  "AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminProps;
218806
219659
  "AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorProps;
218807
219660
  "AWS::SecurityHub::Hub": SecurityHubHubProps;
@@ -219277,6 +220130,9 @@ export interface AttributeTypes {
219277
220130
  "AWS::Connect::ContactFlow": ConnectContactFlowAttributes;
219278
220131
  "AWS::Connect::ContactFlowModule": ConnectContactFlowModuleAttributes;
219279
220132
  "AWS::Connect::ContactFlowVersion": ConnectContactFlowVersionAttributes;
220133
+ "AWS::Connect::DataTable": ConnectDataTableAttributes;
220134
+ "AWS::Connect::DataTableAttribute": ConnectDataTableAttributeAttributes;
220135
+ "AWS::Connect::DataTableRecord": ConnectDataTableRecordAttributes;
219280
220136
  "AWS::Connect::EmailAddress": ConnectEmailAddressAttributes;
219281
220137
  "AWS::Connect::EvaluationForm": ConnectEvaluationFormAttributes;
219282
220138
  "AWS::Connect::HoursOfOperation": ConnectHoursOfOperationAttributes;
@@ -219593,6 +220449,7 @@ export interface AttributeTypes {
219593
220449
  "AWS::Glue::DataCatalogEncryptionSettings": GlueDataCatalogEncryptionSettingsAttributes;
219594
220450
  "AWS::Glue::DataQualityRuleset": GlueDataQualityRulesetAttributes;
219595
220451
  "AWS::Glue::DevEndpoint": GlueDevEndpointAttributes;
220452
+ "AWS::Glue::IdentityCenterConfiguration": GlueIdentityCenterConfigurationAttributes;
219596
220453
  "AWS::Glue::Integration": GlueIntegrationAttributes;
219597
220454
  "AWS::Glue::IntegrationResourceProperty": GlueIntegrationResourcePropertyAttributes;
219598
220455
  "AWS::Glue::MLTransform": GlueMLTransformAttributes;
@@ -219918,6 +220775,8 @@ export interface AttributeTypes {
219918
220775
  "AWS::Oam::Sink": OamSinkAttributes;
219919
220776
  "AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleAttributes;
219920
220777
  "AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleAttributes;
220778
+ "AWS::ObservabilityAdmin::S3TableIntegration": ObservabilityAdminS3TableIntegrationAttributes;
220779
+ "AWS::ObservabilityAdmin::TelemetryPipelines": ObservabilityAdminTelemetryPipelinesAttributes;
219921
220780
  "AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleAttributes;
219922
220781
  "AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterAttributes;
219923
220782
  "AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureAttributes;
@@ -220156,6 +221015,7 @@ export interface AttributeTypes {
220156
221015
  "AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleAttributes;
220157
221016
  "AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Attributes;
220158
221017
  "AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyAttributes;
221018
+ "AWS::SecurityHub::ConnectorV2": SecurityHubConnectorV2Attributes;
220159
221019
  "AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminAttributes;
220160
221020
  "AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorAttributes;
220161
221021
  "AWS::SecurityHub::Hub": SecurityHubHubAttributes;
@@ -220640,6 +221500,9 @@ export declare const ResourceType: {
220640
221500
  readonly ConnectContactFlow: "AWS::Connect::ContactFlow";
220641
221501
  readonly ConnectContactFlowModule: "AWS::Connect::ContactFlowModule";
220642
221502
  readonly ConnectContactFlowVersion: "AWS::Connect::ContactFlowVersion";
221503
+ readonly ConnectDataTable: "AWS::Connect::DataTable";
221504
+ readonly ConnectDataTableAttribute: "AWS::Connect::DataTableAttribute";
221505
+ readonly ConnectDataTableRecord: "AWS::Connect::DataTableRecord";
220643
221506
  readonly ConnectEmailAddress: "AWS::Connect::EmailAddress";
220644
221507
  readonly ConnectEvaluationForm: "AWS::Connect::EvaluationForm";
220645
221508
  readonly ConnectHoursOfOperation: "AWS::Connect::HoursOfOperation";
@@ -220994,6 +221857,7 @@ export declare const ResourceType: {
220994
221857
  readonly GlueDataCatalogEncryptionSettings: "AWS::Glue::DataCatalogEncryptionSettings";
220995
221858
  readonly GlueDataQualityRuleset: "AWS::Glue::DataQualityRuleset";
220996
221859
  readonly GlueDevEndpoint: "AWS::Glue::DevEndpoint";
221860
+ readonly GlueIdentityCenterConfiguration: "AWS::Glue::IdentityCenterConfiguration";
220997
221861
  readonly GlueIntegration: "AWS::Glue::Integration";
220998
221862
  readonly GlueIntegrationResourceProperty: "AWS::Glue::IntegrationResourceProperty";
220999
221863
  readonly GlueJob: "AWS::Glue::Job";
@@ -221363,6 +222227,8 @@ export declare const ResourceType: {
221363
222227
  readonly OamSink: "AWS::Oam::Sink";
221364
222228
  readonly ObservabilityAdminOrganizationCentralizationRule: "AWS::ObservabilityAdmin::OrganizationCentralizationRule";
221365
222229
  readonly ObservabilityAdminOrganizationTelemetryRule: "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
222230
+ readonly ObservabilityAdminS3TableIntegration: "AWS::ObservabilityAdmin::S3TableIntegration";
222231
+ readonly ObservabilityAdminTelemetryPipelines: "AWS::ObservabilityAdmin::TelemetryPipelines";
221366
222232
  readonly ObservabilityAdminTelemetryRule: "AWS::ObservabilityAdmin::TelemetryRule";
221367
222233
  readonly ODBCloudAutonomousVmCluster: "AWS::ODB::CloudAutonomousVmCluster";
221368
222234
  readonly ODBCloudExadataInfrastructure: "AWS::ODB::CloudExadataInfrastructure";
@@ -221627,6 +222493,7 @@ export declare const ResourceType: {
221627
222493
  readonly SecurityHubAutomationRule: "AWS::SecurityHub::AutomationRule";
221628
222494
  readonly SecurityHubAutomationRuleV2: "AWS::SecurityHub::AutomationRuleV2";
221629
222495
  readonly SecurityHubConfigurationPolicy: "AWS::SecurityHub::ConfigurationPolicy";
222496
+ readonly SecurityHubConnectorV2: "AWS::SecurityHub::ConnectorV2";
221630
222497
  readonly SecurityHubDelegatedAdmin: "AWS::SecurityHub::DelegatedAdmin";
221631
222498
  readonly SecurityHubFindingAggregator: "AWS::SecurityHub::FindingAggregator";
221632
222499
  readonly SecurityHubHub: "AWS::SecurityHub::Hub";