@awboost/cfntypes 0.100.345 → 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.
- package/lib/resources.generated.d.ts +1309 -18
- package/lib/resources.generated.js +44 -0
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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
|
-
*
|
|
42025
|
+
* Operands of the enablement condition.
|
|
41838
42026
|
* @minLength `1`
|
|
41839
42027
|
*/
|
|
41840
42028
|
Operands: ConnectEvaluationFormEvaluationFormItemEnablementConditionOperand[];
|
|
41841
42029
|
/**
|
|
41842
|
-
* The
|
|
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
|
-
*
|
|
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
|
-
*
|
|
42052
|
+
* An enablement action that if condition is satisfied.
|
|
41863
42053
|
*/
|
|
41864
42054
|
Action: "DISABLE" | "ENABLE";
|
|
41865
42055
|
/**
|
|
41866
|
-
*
|
|
42056
|
+
* A condition for item enablement configuration.
|
|
41867
42057
|
*/
|
|
41868
42058
|
Condition: ConnectEvaluationFormEvaluationFormItemEnablementCondition;
|
|
41869
42059
|
/**
|
|
41870
|
-
*
|
|
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
|
-
*
|
|
42071
|
+
* A comparator to be used against list of values.
|
|
41881
42072
|
*/
|
|
41882
42073
|
Comparator: "IN" | "NOT_IN" | "ALL_IN" | "EXACT";
|
|
41883
42074
|
/**
|
|
41884
|
-
*
|
|
42075
|
+
* A source item of enablement expression.
|
|
41885
42076
|
*/
|
|
41886
42077
|
Source: ConnectEvaluationFormEvaluationFormItemEnablementSource;
|
|
41887
42078
|
/**
|
|
41888
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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`.
|
|
@@ -54753,6 +55075,487 @@ export type DetectiveOrganizationAdminAttributes = {
|
|
|
54753
55075
|
*/
|
|
54754
55076
|
GraphArn: string;
|
|
54755
55077
|
};
|
|
55078
|
+
/**
|
|
55079
|
+
* Resource Type definition for AWS::DevOpsAgent::AgentSpace
|
|
55080
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html}
|
|
55081
|
+
*/
|
|
55082
|
+
export type DevOpsAgentAgentSpaceProps = {
|
|
55083
|
+
/**
|
|
55084
|
+
* The description of the AgentSpace.
|
|
55085
|
+
* @minLength `1`
|
|
55086
|
+
* @maxLength `1000`
|
|
55087
|
+
*/
|
|
55088
|
+
Description?: string;
|
|
55089
|
+
/**
|
|
55090
|
+
* The name of the AgentSpace.
|
|
55091
|
+
* @minLength `1`
|
|
55092
|
+
* @maxLength `255`
|
|
55093
|
+
*/
|
|
55094
|
+
Name: string;
|
|
55095
|
+
};
|
|
55096
|
+
/**
|
|
55097
|
+
* Attribute type definition for `AWS::DevOpsAgent::AgentSpace`.
|
|
55098
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-agentspace.html#aws-resource-devopsagent-agentspace-return-values}
|
|
55099
|
+
*/
|
|
55100
|
+
export type DevOpsAgentAgentSpaceAttributes = {
|
|
55101
|
+
/**
|
|
55102
|
+
* The unique identifier of the AgentSpace
|
|
55103
|
+
* @minLength `1`
|
|
55104
|
+
* @maxLength `255`
|
|
55105
|
+
*/
|
|
55106
|
+
AgentSpaceId: string;
|
|
55107
|
+
/**
|
|
55108
|
+
* The Amazon Resource Name (ARN) of the AgentSpace.
|
|
55109
|
+
*/
|
|
55110
|
+
Arn: string;
|
|
55111
|
+
/**
|
|
55112
|
+
* The timestamp when the resource was created.
|
|
55113
|
+
*/
|
|
55114
|
+
CreatedAt: string;
|
|
55115
|
+
/**
|
|
55116
|
+
* The timestamp when the resource was last updated.
|
|
55117
|
+
*/
|
|
55118
|
+
UpdatedAt: string;
|
|
55119
|
+
};
|
|
55120
|
+
/**
|
|
55121
|
+
* Resource Type definition for AWS::DevOpsAgent::Association defining how the AgentSpace interacts with external services like GitHub, Slack, AWS accounts, and others.
|
|
55122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html}
|
|
55123
|
+
*/
|
|
55124
|
+
export type DevOpsAgentAssociationProps = {
|
|
55125
|
+
/**
|
|
55126
|
+
* The unique identifier of the AgentSpace
|
|
55127
|
+
* @minLength `1`
|
|
55128
|
+
* @maxLength `255`
|
|
55129
|
+
*/
|
|
55130
|
+
AgentSpaceId: string;
|
|
55131
|
+
/**
|
|
55132
|
+
* The configuration that directs how AgentSpace interacts with the given service
|
|
55133
|
+
*/
|
|
55134
|
+
Configuration: DevOpsAgentAssociationServiceConfiguration;
|
|
55135
|
+
/**
|
|
55136
|
+
* The identifier for the associated service
|
|
55137
|
+
* @minLength `1`
|
|
55138
|
+
* @maxLength `255`
|
|
55139
|
+
*/
|
|
55140
|
+
ServiceId: string;
|
|
55141
|
+
};
|
|
55142
|
+
/**
|
|
55143
|
+
* Attribute type definition for `AWS::DevOpsAgent::Association`.
|
|
55144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-association.html#aws-resource-devopsagent-association-return-values}
|
|
55145
|
+
*/
|
|
55146
|
+
export type DevOpsAgentAssociationAttributes = {
|
|
55147
|
+
/**
|
|
55148
|
+
* The unique identifier of the association
|
|
55149
|
+
* @minLength `1`
|
|
55150
|
+
* @maxLength `255`
|
|
55151
|
+
*/
|
|
55152
|
+
AssociationId: string;
|
|
55153
|
+
/**
|
|
55154
|
+
* The timestamp when the association was created
|
|
55155
|
+
*/
|
|
55156
|
+
CreatedAt: string;
|
|
55157
|
+
/**
|
|
55158
|
+
* The timestamp when the association was last updated
|
|
55159
|
+
*/
|
|
55160
|
+
UpdatedAt: string;
|
|
55161
|
+
};
|
|
55162
|
+
/**
|
|
55163
|
+
* Type definition for `AWS::DevOpsAgent::Association.AWSConfiguration`.
|
|
55164
|
+
* AWS association for 'monitor' account
|
|
55165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsconfiguration.html}
|
|
55166
|
+
*/
|
|
55167
|
+
export type DevOpsAgentAssociationAWSConfiguration = {
|
|
55168
|
+
/**
|
|
55169
|
+
* AWS Account Id corresponding to provided resources
|
|
55170
|
+
* @pattern `\d{12}`
|
|
55171
|
+
*/
|
|
55172
|
+
AccountId: string;
|
|
55173
|
+
/**
|
|
55174
|
+
* Account Type 'monitor' for DevOpsAgent monitoring
|
|
55175
|
+
*/
|
|
55176
|
+
AccountType: "monitor";
|
|
55177
|
+
/**
|
|
55178
|
+
* Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
|
|
55179
|
+
*/
|
|
55180
|
+
AssumableRoleArn: string;
|
|
55181
|
+
/**
|
|
55182
|
+
* List of AWS resources
|
|
55183
|
+
*/
|
|
55184
|
+
Resources?: DevOpsAgentAssociationAWSResource[];
|
|
55185
|
+
/**
|
|
55186
|
+
* List of AWS tags as key-value pairs
|
|
55187
|
+
*/
|
|
55188
|
+
Tags?: DevOpsAgentAssociationKeyValuePair[];
|
|
55189
|
+
};
|
|
55190
|
+
/**
|
|
55191
|
+
* Type definition for `AWS::DevOpsAgent::Association.AWSResource`.
|
|
55192
|
+
* AWS resource definition
|
|
55193
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-awsresource.html}
|
|
55194
|
+
*/
|
|
55195
|
+
export type DevOpsAgentAssociationAWSResource = {
|
|
55196
|
+
/**
|
|
55197
|
+
* The Amazon Resource Name (ARN) of the resource
|
|
55198
|
+
*/
|
|
55199
|
+
ResourceArn: string;
|
|
55200
|
+
/**
|
|
55201
|
+
* Additional metadata for the resource
|
|
55202
|
+
*/
|
|
55203
|
+
ResourceMetadata?: Record<string, any>;
|
|
55204
|
+
/**
|
|
55205
|
+
* Resource type
|
|
55206
|
+
*/
|
|
55207
|
+
ResourceType?: "AWS::CloudFormation::Stack" | "AWS::ECR::Repository" | "AWS::S3::Bucket" | "AWS::S3::Object";
|
|
55208
|
+
};
|
|
55209
|
+
/**
|
|
55210
|
+
* Type definition for `AWS::DevOpsAgent::Association.DynatraceConfiguration`.
|
|
55211
|
+
* Dynatrace monitoring configuration
|
|
55212
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-dynatraceconfiguration.html}
|
|
55213
|
+
*/
|
|
55214
|
+
export type DevOpsAgentAssociationDynatraceConfiguration = {
|
|
55215
|
+
/**
|
|
55216
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55217
|
+
*/
|
|
55218
|
+
EnableWebhookUpdates?: boolean;
|
|
55219
|
+
/**
|
|
55220
|
+
* Dynatrace environment id
|
|
55221
|
+
*/
|
|
55222
|
+
EnvId: string;
|
|
55223
|
+
/**
|
|
55224
|
+
* List of Dynatrace resources to monitor
|
|
55225
|
+
*/
|
|
55226
|
+
Resources?: string[];
|
|
55227
|
+
};
|
|
55228
|
+
/**
|
|
55229
|
+
* Type definition for `AWS::DevOpsAgent::Association.EventChannelConfiguration`.
|
|
55230
|
+
* EventChannelconfiguration
|
|
55231
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-eventchannelconfiguration.html}
|
|
55232
|
+
*/
|
|
55233
|
+
export type DevOpsAgentAssociationEventChannelConfiguration = {
|
|
55234
|
+
/**
|
|
55235
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55236
|
+
*/
|
|
55237
|
+
EnableWebhookUpdates?: boolean;
|
|
55238
|
+
};
|
|
55239
|
+
/**
|
|
55240
|
+
* Type definition for `AWS::DevOpsAgent::Association.GitHubConfiguration`.
|
|
55241
|
+
* GitHub repository integration configuration
|
|
55242
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-githubconfiguration.html}
|
|
55243
|
+
*/
|
|
55244
|
+
export type DevOpsAgentAssociationGitHubConfiguration = {
|
|
55245
|
+
/**
|
|
55246
|
+
* Repository owner
|
|
55247
|
+
*/
|
|
55248
|
+
Owner: string;
|
|
55249
|
+
/**
|
|
55250
|
+
* Type of repository owner
|
|
55251
|
+
*/
|
|
55252
|
+
OwnerType: "organization" | "user";
|
|
55253
|
+
/**
|
|
55254
|
+
* Associated Github repo ID
|
|
55255
|
+
*/
|
|
55256
|
+
RepoId: string;
|
|
55257
|
+
/**
|
|
55258
|
+
* Associated Github repo name
|
|
55259
|
+
*/
|
|
55260
|
+
RepoName: string;
|
|
55261
|
+
};
|
|
55262
|
+
/**
|
|
55263
|
+
* Type definition for `AWS::DevOpsAgent::Association.GitLabConfiguration`.
|
|
55264
|
+
* GitLab project integration configuration
|
|
55265
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-gitlabconfiguration.html}
|
|
55266
|
+
*/
|
|
55267
|
+
export type DevOpsAgentAssociationGitLabConfiguration = {
|
|
55268
|
+
/**
|
|
55269
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55270
|
+
*/
|
|
55271
|
+
EnableWebhookUpdates?: boolean;
|
|
55272
|
+
/**
|
|
55273
|
+
* GitLab instance identifier
|
|
55274
|
+
*/
|
|
55275
|
+
InstanceIdentifier?: string;
|
|
55276
|
+
/**
|
|
55277
|
+
* GitLab numeric project ID
|
|
55278
|
+
*/
|
|
55279
|
+
ProjectId: string;
|
|
55280
|
+
/**
|
|
55281
|
+
* Full GitLab project path (e.g., namespace/project-name)
|
|
55282
|
+
*/
|
|
55283
|
+
ProjectPath: string;
|
|
55284
|
+
};
|
|
55285
|
+
/**
|
|
55286
|
+
* Type definition for `AWS::DevOpsAgent::Association.KeyValuePair`.
|
|
55287
|
+
* A key-value pair for tags
|
|
55288
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-keyvaluepair.html}
|
|
55289
|
+
*/
|
|
55290
|
+
export type DevOpsAgentAssociationKeyValuePair = {
|
|
55291
|
+
/**
|
|
55292
|
+
* @minLength `1`
|
|
55293
|
+
* @maxLength `512`
|
|
55294
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
55295
|
+
*/
|
|
55296
|
+
Key: string;
|
|
55297
|
+
/**
|
|
55298
|
+
* @minLength `1`
|
|
55299
|
+
* @maxLength `512`
|
|
55300
|
+
* @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
|
|
55301
|
+
*/
|
|
55302
|
+
Value: string;
|
|
55303
|
+
};
|
|
55304
|
+
/**
|
|
55305
|
+
* Type definition for `AWS::DevOpsAgent::Association.MCPServerConfiguration`.
|
|
55306
|
+
* MCP server configuration
|
|
55307
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html}
|
|
55308
|
+
*/
|
|
55309
|
+
export type DevOpsAgentAssociationMCPServerConfiguration = {
|
|
55310
|
+
/**
|
|
55311
|
+
* The description of the MCP server
|
|
55312
|
+
*/
|
|
55313
|
+
Description?: string;
|
|
55314
|
+
/**
|
|
55315
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55316
|
+
*/
|
|
55317
|
+
EnableWebhookUpdates?: boolean;
|
|
55318
|
+
/**
|
|
55319
|
+
* MCP server endpoint URL
|
|
55320
|
+
* @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
|
|
55321
|
+
*/
|
|
55322
|
+
Endpoint: string;
|
|
55323
|
+
/**
|
|
55324
|
+
* The name of the MCP server
|
|
55325
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
55326
|
+
*/
|
|
55327
|
+
Name: string;
|
|
55328
|
+
/**
|
|
55329
|
+
* List of MCP tools that can be used with the association
|
|
55330
|
+
*/
|
|
55331
|
+
Tools: string[];
|
|
55332
|
+
};
|
|
55333
|
+
/**
|
|
55334
|
+
* Type definition for `AWS::DevOpsAgent::Association.MCPServerDatadogConfiguration`.
|
|
55335
|
+
* Datadog MCP server configuration
|
|
55336
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverdatadogconfiguration.html}
|
|
55337
|
+
*/
|
|
55338
|
+
export type DevOpsAgentAssociationMCPServerDatadogConfiguration = {
|
|
55339
|
+
/**
|
|
55340
|
+
* The description of the MCP server
|
|
55341
|
+
*/
|
|
55342
|
+
Description?: string;
|
|
55343
|
+
/**
|
|
55344
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55345
|
+
*/
|
|
55346
|
+
EnableWebhookUpdates?: boolean;
|
|
55347
|
+
/**
|
|
55348
|
+
* MCP server endpoint URL
|
|
55349
|
+
* @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
|
|
55350
|
+
*/
|
|
55351
|
+
Endpoint: string;
|
|
55352
|
+
/**
|
|
55353
|
+
* The name of the MCP server
|
|
55354
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
55355
|
+
*/
|
|
55356
|
+
Name: string;
|
|
55357
|
+
};
|
|
55358
|
+
/**
|
|
55359
|
+
* Type definition for `AWS::DevOpsAgent::Association.MCPServerNewRelicConfiguration`.
|
|
55360
|
+
* NewRelic MCP server configuration
|
|
55361
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpservernewrelicconfiguration.html}
|
|
55362
|
+
*/
|
|
55363
|
+
export type DevOpsAgentAssociationMCPServerNewRelicConfiguration = {
|
|
55364
|
+
/**
|
|
55365
|
+
* New Relic Account ID
|
|
55366
|
+
* @minLength `6`
|
|
55367
|
+
* @pattern `^[0-9]+$`
|
|
55368
|
+
*/
|
|
55369
|
+
AccountId: string;
|
|
55370
|
+
/**
|
|
55371
|
+
* MCP server endpoint URL (e.g., https://mcp.newrelic.com/mcp/)
|
|
55372
|
+
* @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
|
|
55373
|
+
*/
|
|
55374
|
+
Endpoint: string;
|
|
55375
|
+
};
|
|
55376
|
+
/**
|
|
55377
|
+
* Type definition for `AWS::DevOpsAgent::Association.MCPServerSplunkConfiguration`.
|
|
55378
|
+
* Splunk MCP server configuration
|
|
55379
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserversplunkconfiguration.html}
|
|
55380
|
+
*/
|
|
55381
|
+
export type DevOpsAgentAssociationMCPServerSplunkConfiguration = {
|
|
55382
|
+
/**
|
|
55383
|
+
* The description of the MCP server
|
|
55384
|
+
*/
|
|
55385
|
+
Description?: string;
|
|
55386
|
+
/**
|
|
55387
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55388
|
+
*/
|
|
55389
|
+
EnableWebhookUpdates?: boolean;
|
|
55390
|
+
/**
|
|
55391
|
+
* MCP server endpoint URL
|
|
55392
|
+
* @pattern `^https://[a-zA-Z0-9.-]+(?::[0-9]+)?(?:/.*)?$`
|
|
55393
|
+
*/
|
|
55394
|
+
Endpoint: string;
|
|
55395
|
+
/**
|
|
55396
|
+
* The name of the MCP server
|
|
55397
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
|
55398
|
+
*/
|
|
55399
|
+
Name: string;
|
|
55400
|
+
};
|
|
55401
|
+
/**
|
|
55402
|
+
* Type definition for `AWS::DevOpsAgent::Association.ServiceConfiguration`.
|
|
55403
|
+
* The configuration that directs how AgentSpace interacts with the given service
|
|
55404
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-serviceconfiguration.html}
|
|
55405
|
+
*/
|
|
55406
|
+
export type DevOpsAgentAssociationServiceConfiguration = {
|
|
55407
|
+
/**
|
|
55408
|
+
* AWS association for 'source' account
|
|
55409
|
+
*/
|
|
55410
|
+
SourceAws: DevOpsAgentAssociationSourceAwsConfiguration;
|
|
55411
|
+
} | {
|
|
55412
|
+
/**
|
|
55413
|
+
* AWS association for 'monitor' account
|
|
55414
|
+
*/
|
|
55415
|
+
Aws: DevOpsAgentAssociationAWSConfiguration;
|
|
55416
|
+
} | {
|
|
55417
|
+
/**
|
|
55418
|
+
* GitHub repository integration configuration
|
|
55419
|
+
*/
|
|
55420
|
+
GitHub: DevOpsAgentAssociationGitHubConfiguration;
|
|
55421
|
+
} | {
|
|
55422
|
+
/**
|
|
55423
|
+
* Slack workspace integration configuration
|
|
55424
|
+
*/
|
|
55425
|
+
Slack: DevOpsAgentAssociationSlackConfiguration;
|
|
55426
|
+
} | {
|
|
55427
|
+
/**
|
|
55428
|
+
* Dynatrace monitoring configuration
|
|
55429
|
+
*/
|
|
55430
|
+
Dynatrace: DevOpsAgentAssociationDynatraceConfiguration;
|
|
55431
|
+
} | {
|
|
55432
|
+
/**
|
|
55433
|
+
* ServiceNow integration configuration
|
|
55434
|
+
*/
|
|
55435
|
+
ServiceNow: DevOpsAgentAssociationServiceNowConfiguration;
|
|
55436
|
+
} | {
|
|
55437
|
+
/**
|
|
55438
|
+
* MCP server configuration
|
|
55439
|
+
*/
|
|
55440
|
+
MCPServer: DevOpsAgentAssociationMCPServerConfiguration;
|
|
55441
|
+
} | {
|
|
55442
|
+
/**
|
|
55443
|
+
* GitLab project integration configuration
|
|
55444
|
+
*/
|
|
55445
|
+
GitLab: DevOpsAgentAssociationGitLabConfiguration;
|
|
55446
|
+
} | {
|
|
55447
|
+
/**
|
|
55448
|
+
* Datadog MCP server configuration
|
|
55449
|
+
*/
|
|
55450
|
+
MCPServerDatadog: DevOpsAgentAssociationMCPServerDatadogConfiguration;
|
|
55451
|
+
} | {
|
|
55452
|
+
/**
|
|
55453
|
+
* Splunk MCP server configuration
|
|
55454
|
+
*/
|
|
55455
|
+
MCPServerSplunk: DevOpsAgentAssociationMCPServerSplunkConfiguration;
|
|
55456
|
+
} | {
|
|
55457
|
+
/**
|
|
55458
|
+
* NewRelic MCP server configuration
|
|
55459
|
+
*/
|
|
55460
|
+
MCPServerNewRelic: DevOpsAgentAssociationMCPServerNewRelicConfiguration;
|
|
55461
|
+
} | {
|
|
55462
|
+
/**
|
|
55463
|
+
* EventChannelconfiguration
|
|
55464
|
+
*/
|
|
55465
|
+
EventChannel: DevOpsAgentAssociationEventChannelConfiguration;
|
|
55466
|
+
};
|
|
55467
|
+
/**
|
|
55468
|
+
* Type definition for `AWS::DevOpsAgent::Association.ServiceNowConfiguration`.
|
|
55469
|
+
* ServiceNow integration configuration
|
|
55470
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-servicenowconfiguration.html}
|
|
55471
|
+
*/
|
|
55472
|
+
export type DevOpsAgentAssociationServiceNowConfiguration = {
|
|
55473
|
+
/**
|
|
55474
|
+
* When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service
|
|
55475
|
+
*/
|
|
55476
|
+
EnableWebhookUpdates?: boolean;
|
|
55477
|
+
/**
|
|
55478
|
+
* ServiceNow instance ID
|
|
55479
|
+
*/
|
|
55480
|
+
InstanceId?: string;
|
|
55481
|
+
};
|
|
55482
|
+
/**
|
|
55483
|
+
* Type definition for `AWS::DevOpsAgent::Association.SlackChannel`.
|
|
55484
|
+
* Slack channel configuration
|
|
55485
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackchannel.html}
|
|
55486
|
+
*/
|
|
55487
|
+
export type DevOpsAgentAssociationSlackChannel = {
|
|
55488
|
+
/**
|
|
55489
|
+
* Slack channel ID
|
|
55490
|
+
* @minLength `8`
|
|
55491
|
+
* @maxLength `16`
|
|
55492
|
+
* @pattern `^[CGD][A-Z0-9]+$`
|
|
55493
|
+
*/
|
|
55494
|
+
ChannelId: string;
|
|
55495
|
+
/**
|
|
55496
|
+
* Slack channel name
|
|
55497
|
+
*/
|
|
55498
|
+
ChannelName?: string;
|
|
55499
|
+
};
|
|
55500
|
+
/**
|
|
55501
|
+
* Type definition for `AWS::DevOpsAgent::Association.SlackConfiguration`.
|
|
55502
|
+
* Slack workspace integration configuration
|
|
55503
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slackconfiguration.html}
|
|
55504
|
+
*/
|
|
55505
|
+
export type DevOpsAgentAssociationSlackConfiguration = {
|
|
55506
|
+
/**
|
|
55507
|
+
* Transmission targets for agent notifications
|
|
55508
|
+
*/
|
|
55509
|
+
TransmissionTarget: DevOpsAgentAssociationSlackTransmissionTarget;
|
|
55510
|
+
/**
|
|
55511
|
+
* Associated Slack workspace ID
|
|
55512
|
+
* @pattern `^[TE][A-Z0-9]+$`
|
|
55513
|
+
*/
|
|
55514
|
+
WorkspaceId: string;
|
|
55515
|
+
/**
|
|
55516
|
+
* Associated Slack workspace name
|
|
55517
|
+
*/
|
|
55518
|
+
WorkspaceName: string;
|
|
55519
|
+
};
|
|
55520
|
+
/**
|
|
55521
|
+
* Type definition for `AWS::DevOpsAgent::Association.SlackTransmissionTarget`.
|
|
55522
|
+
* Transmission targets for agent notifications
|
|
55523
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-slacktransmissiontarget.html}
|
|
55524
|
+
*/
|
|
55525
|
+
export type DevOpsAgentAssociationSlackTransmissionTarget = {
|
|
55526
|
+
/**
|
|
55527
|
+
* Destination for IncidentResponse agent.
|
|
55528
|
+
*/
|
|
55529
|
+
IncidentResponseTarget: DevOpsAgentAssociationSlackChannel;
|
|
55530
|
+
};
|
|
55531
|
+
/**
|
|
55532
|
+
* Type definition for `AWS::DevOpsAgent::Association.SourceAwsConfiguration`.
|
|
55533
|
+
* AWS association for 'source' account
|
|
55534
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-sourceawsconfiguration.html}
|
|
55535
|
+
*/
|
|
55536
|
+
export type DevOpsAgentAssociationSourceAwsConfiguration = {
|
|
55537
|
+
/**
|
|
55538
|
+
* AWS Account Id corresponding to provided resources
|
|
55539
|
+
* @pattern `\d{12}`
|
|
55540
|
+
*/
|
|
55541
|
+
AccountId: string;
|
|
55542
|
+
/**
|
|
55543
|
+
* Account Type 'source' for DevOpsAgent monitoring
|
|
55544
|
+
*/
|
|
55545
|
+
AccountType: "source";
|
|
55546
|
+
/**
|
|
55547
|
+
* Role ARN to be assumed by DevOpsAgent to operate on behalf of customer
|
|
55548
|
+
*/
|
|
55549
|
+
AssumableRoleArn: string;
|
|
55550
|
+
/**
|
|
55551
|
+
* List of AWS resources
|
|
55552
|
+
*/
|
|
55553
|
+
Resources?: DevOpsAgentAssociationAWSResource[];
|
|
55554
|
+
/**
|
|
55555
|
+
* List of AWS tags as key-value pairs
|
|
55556
|
+
*/
|
|
55557
|
+
Tags?: DevOpsAgentAssociationKeyValuePair[];
|
|
55558
|
+
};
|
|
54756
55559
|
/**
|
|
54757
55560
|
* Resource type definition for `AWS::DevOpsGuru::LogAnomalyDetectionIntegration`.
|
|
54758
55561
|
* This resource schema represents the LogAnomalyDetectionIntegration resource in the Amazon DevOps Guru.
|
|
@@ -110164,6 +110967,7 @@ export type LambdaFunctionProps = {
|
|
|
110164
110967
|
* @maxLength `256`
|
|
110165
110968
|
*/
|
|
110166
110969
|
Description?: string;
|
|
110970
|
+
DurableConfig?: LambdaFunctionDurableConfig;
|
|
110167
110971
|
/**
|
|
110168
110972
|
* Environment variables that are accessible from function code during execution.
|
|
110169
110973
|
*/
|
|
@@ -110356,6 +111160,24 @@ export type LambdaFunctionDeadLetterConfig = {
|
|
|
110356
111160
|
*/
|
|
110357
111161
|
TargetArn?: string;
|
|
110358
111162
|
};
|
|
111163
|
+
/**
|
|
111164
|
+
* Type definition for `AWS::Lambda::Function.DurableConfig`.
|
|
111165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-durableconfig.html}
|
|
111166
|
+
*/
|
|
111167
|
+
export type LambdaFunctionDurableConfig = {
|
|
111168
|
+
/**
|
|
111169
|
+
* The amount of time (in seconds) that Lambda allows a durable function to run before stopping it. The maximum is one 366-day year or 31,622,400 seconds.
|
|
111170
|
+
* @min `1`
|
|
111171
|
+
* @max `31622400`
|
|
111172
|
+
*/
|
|
111173
|
+
ExecutionTimeout: number;
|
|
111174
|
+
/**
|
|
111175
|
+
* The number of days after a durable execution is closed that Lambda retains its history, from one to 90 days. The default is 14 days.
|
|
111176
|
+
* @min `1`
|
|
111177
|
+
* @max `90`
|
|
111178
|
+
*/
|
|
111179
|
+
RetentionPeriodInDays?: number;
|
|
111180
|
+
};
|
|
110359
111181
|
/**
|
|
110360
111182
|
* Type definition for `AWS::Lambda::Function.Environment`.
|
|
110361
111183
|
* A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.
|
|
@@ -132202,6 +133024,263 @@ export type ObservabilityAdminOrganizationTelemetryRuleVPCFlowLogParameters = {
|
|
|
132202
133024
|
*/
|
|
132203
133025
|
TrafficType?: string;
|
|
132204
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
|
+
};
|
|
132205
133284
|
/**
|
|
132206
133285
|
* The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
|
|
132207
133286
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
|
|
@@ -183399,6 +184478,10 @@ export type S3StorageLensAccountLevel = {
|
|
|
183399
184478
|
* Enables advanced data protection metrics.
|
|
183400
184479
|
*/
|
|
183401
184480
|
AdvancedDataProtectionMetrics?: S3StorageLensAdvancedDataProtectionMetrics;
|
|
184481
|
+
/**
|
|
184482
|
+
* Advanced Performance Metrics.
|
|
184483
|
+
*/
|
|
184484
|
+
AdvancedPerformanceMetrics?: S3StorageLensAdvancedPerformanceMetrics;
|
|
183402
184485
|
/**
|
|
183403
184486
|
* Bucket-level metrics configurations.
|
|
183404
184487
|
*/
|
|
@@ -183445,6 +184528,17 @@ export type S3StorageLensAdvancedDataProtectionMetrics = {
|
|
|
183445
184528
|
*/
|
|
183446
184529
|
IsEnabled?: boolean;
|
|
183447
184530
|
};
|
|
184531
|
+
/**
|
|
184532
|
+
* Type definition for `AWS::S3::StorageLens.AdvancedPerformanceMetrics`.
|
|
184533
|
+
* Advanced Performance Metrics.
|
|
184534
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-advancedperformancemetrics.html}
|
|
184535
|
+
*/
|
|
184536
|
+
export type S3StorageLensAdvancedPerformanceMetrics = {
|
|
184537
|
+
/**
|
|
184538
|
+
* Specifies whether the Advanced Performance Metrics is enabled or disabled.
|
|
184539
|
+
*/
|
|
184540
|
+
IsEnabled?: boolean;
|
|
184541
|
+
};
|
|
183448
184542
|
/**
|
|
183449
184543
|
* Type definition for `AWS::S3::StorageLens.AwsOrg`.
|
|
183450
184544
|
* The AWS Organizations ARN to use in the Amazon S3 Storage Lens configuration.
|
|
@@ -183474,6 +184568,10 @@ export type S3StorageLensBucketLevel = {
|
|
|
183474
184568
|
* Enables advanced data protection metrics.
|
|
183475
184569
|
*/
|
|
183476
184570
|
AdvancedDataProtectionMetrics?: S3StorageLensAdvancedDataProtectionMetrics;
|
|
184571
|
+
/**
|
|
184572
|
+
* Advanced Performance Metrics.
|
|
184573
|
+
*/
|
|
184574
|
+
AdvancedPerformanceMetrics?: S3StorageLensAdvancedPerformanceMetrics;
|
|
183477
184575
|
/**
|
|
183478
184576
|
* Enables detailed status codes metrics.
|
|
183479
184577
|
*/
|
|
@@ -183517,6 +184615,10 @@ export type S3StorageLensDataExport = {
|
|
|
183517
184615
|
* S3 bucket destination settings for the Amazon S3 Storage Lens metrics export.
|
|
183518
184616
|
*/
|
|
183519
184617
|
S3BucketDestination?: S3StorageLensS3BucketDestination;
|
|
184618
|
+
/**
|
|
184619
|
+
* S3 Tables destination settings for the Amazon S3 Storage Lens metrics export.
|
|
184620
|
+
*/
|
|
184621
|
+
StorageLensTableDestination?: S3StorageLensStorageLensTableDestination;
|
|
183520
184622
|
};
|
|
183521
184623
|
/**
|
|
183522
184624
|
* Type definition for `AWS::S3::StorageLens.DetailedStatusCodesMetrics`.
|
|
@@ -183650,6 +184752,10 @@ export type S3StorageLensStorageLensConfiguration = {
|
|
|
183650
184752
|
* S3 buckets and Regions to include/exclude in the Amazon S3 Storage Lens configuration.
|
|
183651
184753
|
*/
|
|
183652
184754
|
Exclude?: S3StorageLensBucketsAndRegions;
|
|
184755
|
+
/**
|
|
184756
|
+
* Expanded Prefixes Data Export.
|
|
184757
|
+
*/
|
|
184758
|
+
ExpandedPrefixesDataExport?: S3StorageLensStorageLensExpandedPrefixesDataExport;
|
|
183653
184759
|
/**
|
|
183654
184760
|
* The ID that identifies the Amazon S3 Storage Lens configuration.
|
|
183655
184761
|
* @minLength `1`
|
|
@@ -183665,6 +184771,25 @@ export type S3StorageLensStorageLensConfiguration = {
|
|
|
183665
184771
|
* Specifies whether the Amazon S3 Storage Lens configuration is enabled or disabled.
|
|
183666
184772
|
*/
|
|
183667
184773
|
IsEnabled: boolean;
|
|
184774
|
+
/**
|
|
184775
|
+
* The delimiter to divide S3 key into hierarchy of prefixes.
|
|
184776
|
+
*/
|
|
184777
|
+
PrefixDelimiter?: string;
|
|
184778
|
+
};
|
|
184779
|
+
/**
|
|
184780
|
+
* Type definition for `AWS::S3::StorageLens.StorageLensExpandedPrefixesDataExport`.
|
|
184781
|
+
* Expanded Prefixes Data Export.
|
|
184782
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelensexpandedprefixesdataexport.html}
|
|
184783
|
+
*/
|
|
184784
|
+
export type S3StorageLensStorageLensExpandedPrefixesDataExport = {
|
|
184785
|
+
/**
|
|
184786
|
+
* S3 bucket destination settings for the Amazon S3 Storage Lens metrics export.
|
|
184787
|
+
*/
|
|
184788
|
+
S3BucketDestination?: S3StorageLensS3BucketDestination;
|
|
184789
|
+
/**
|
|
184790
|
+
* S3 Tables destination settings for the Amazon S3 Storage Lens metrics export.
|
|
184791
|
+
*/
|
|
184792
|
+
StorageLensTableDestination?: S3StorageLensStorageLensTableDestination;
|
|
183668
184793
|
};
|
|
183669
184794
|
/**
|
|
183670
184795
|
* Type definition for `AWS::S3::StorageLens.StorageLensGroupLevel`.
|
|
@@ -183686,6 +184811,21 @@ export type S3StorageLensStorageLensGroupSelectionCriteria = {
|
|
|
183686
184811
|
Exclude?: string[];
|
|
183687
184812
|
Include?: string[];
|
|
183688
184813
|
};
|
|
184814
|
+
/**
|
|
184815
|
+
* Type definition for `AWS::S3::StorageLens.StorageLensTableDestination`.
|
|
184816
|
+
* S3 Tables destination settings for the Amazon S3 Storage Lens metrics export.
|
|
184817
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelenstabledestination.html}
|
|
184818
|
+
*/
|
|
184819
|
+
export type S3StorageLensStorageLensTableDestination = {
|
|
184820
|
+
/**
|
|
184821
|
+
* Configures the server-side encryption for Amazon S3 Storage Lens report files with either S3-managed keys (SSE-S3) or KMS-managed keys (SSE-KMS).
|
|
184822
|
+
*/
|
|
184823
|
+
Encryption?: S3StorageLensEncryption;
|
|
184824
|
+
/**
|
|
184825
|
+
* Specifies whether the export to S3 Tables is enabled or disabled.
|
|
184826
|
+
*/
|
|
184827
|
+
IsEnabled: boolean;
|
|
184828
|
+
};
|
|
183689
184829
|
/**
|
|
183690
184830
|
* Type definition for `AWS::S3::StorageLens.Tag`.
|
|
183691
184831
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-tag.html}
|
|
@@ -196879,6 +198019,136 @@ export type SecurityHubConfigurationPolicySecurityHubPolicy = {
|
|
|
196879
198019
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-configurationpolicy-tags.html}
|
|
196880
198020
|
*/
|
|
196881
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>;
|
|
196882
198152
|
/**
|
|
196883
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*.
|
|
196884
198154
|
To change the delegated administrator account, remove the current delegated administrator account, and then designate the new account.
|
|
@@ -217254,6 +218524,8 @@ export interface ResourceTypes {
|
|
|
217254
218524
|
"AWS::Connect::ContactFlow": ConnectContactFlowProps;
|
|
217255
218525
|
"AWS::Connect::ContactFlowModule": ConnectContactFlowModuleProps;
|
|
217256
218526
|
"AWS::Connect::ContactFlowVersion": ConnectContactFlowVersionProps;
|
|
218527
|
+
"AWS::Connect::DataTable": ConnectDataTableProps;
|
|
218528
|
+
"AWS::Connect::DataTableAttribute": ConnectDataTableAttributeProps;
|
|
217257
218529
|
"AWS::Connect::EmailAddress": ConnectEmailAddressProps;
|
|
217258
218530
|
"AWS::Connect::EvaluationForm": ConnectEvaluationFormProps;
|
|
217259
218531
|
"AWS::Connect::HoursOfOperation": ConnectHoursOfOperationProps;
|
|
@@ -217343,6 +218615,8 @@ export interface ResourceTypes {
|
|
|
217343
218615
|
"AWS::Detective::Graph": DetectiveGraphProps;
|
|
217344
218616
|
"AWS::Detective::MemberInvitation": DetectiveMemberInvitationProps;
|
|
217345
218617
|
"AWS::Detective::OrganizationAdmin": DetectiveOrganizationAdminProps;
|
|
218618
|
+
"AWS::DevOpsAgent::AgentSpace": DevOpsAgentAgentSpaceProps;
|
|
218619
|
+
"AWS::DevOpsAgent::Association": DevOpsAgentAssociationProps;
|
|
217346
218620
|
"AWS::DevOpsGuru::LogAnomalyDetectionIntegration": DevOpsGuruLogAnomalyDetectionIntegrationProps;
|
|
217347
218621
|
"AWS::DevOpsGuru::NotificationChannel": DevOpsGuruNotificationChannelProps;
|
|
217348
218622
|
"AWS::DevOpsGuru::ResourceCollection": DevOpsGuruResourceCollectionProps;
|
|
@@ -217975,6 +219249,8 @@ export interface ResourceTypes {
|
|
|
217975
219249
|
"AWS::Oam::Sink": OamSinkProps;
|
|
217976
219250
|
"AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleProps;
|
|
217977
219251
|
"AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleProps;
|
|
219252
|
+
"AWS::ObservabilityAdmin::S3TableIntegration": ObservabilityAdminS3TableIntegrationProps;
|
|
219253
|
+
"AWS::ObservabilityAdmin::TelemetryPipelines": ObservabilityAdminTelemetryPipelinesProps;
|
|
217978
219254
|
"AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleProps;
|
|
217979
219255
|
"AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterProps;
|
|
217980
219256
|
"AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureProps;
|
|
@@ -218239,6 +219515,7 @@ export interface ResourceTypes {
|
|
|
218239
219515
|
"AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleProps;
|
|
218240
219516
|
"AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Props;
|
|
218241
219517
|
"AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyProps;
|
|
219518
|
+
"AWS::SecurityHub::ConnectorV2": SecurityHubConnectorV2Props;
|
|
218242
219519
|
"AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminProps;
|
|
218243
219520
|
"AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorProps;
|
|
218244
219521
|
"AWS::SecurityHub::Hub": SecurityHubHubProps;
|
|
@@ -218714,6 +219991,8 @@ export interface AttributeTypes {
|
|
|
218714
219991
|
"AWS::Connect::ContactFlow": ConnectContactFlowAttributes;
|
|
218715
219992
|
"AWS::Connect::ContactFlowModule": ConnectContactFlowModuleAttributes;
|
|
218716
219993
|
"AWS::Connect::ContactFlowVersion": ConnectContactFlowVersionAttributes;
|
|
219994
|
+
"AWS::Connect::DataTable": ConnectDataTableAttributes;
|
|
219995
|
+
"AWS::Connect::DataTableAttribute": ConnectDataTableAttributeAttributes;
|
|
218717
219996
|
"AWS::Connect::EmailAddress": ConnectEmailAddressAttributes;
|
|
218718
219997
|
"AWS::Connect::EvaluationForm": ConnectEvaluationFormAttributes;
|
|
218719
219998
|
"AWS::Connect::HoursOfOperation": ConnectHoursOfOperationAttributes;
|
|
@@ -218792,6 +220071,8 @@ export interface AttributeTypes {
|
|
|
218792
220071
|
"AWS::Deadline::StorageProfile": DeadlineStorageProfileAttributes;
|
|
218793
220072
|
"AWS::Detective::Graph": DetectiveGraphAttributes;
|
|
218794
220073
|
"AWS::Detective::OrganizationAdmin": DetectiveOrganizationAdminAttributes;
|
|
220074
|
+
"AWS::DevOpsAgent::AgentSpace": DevOpsAgentAgentSpaceAttributes;
|
|
220075
|
+
"AWS::DevOpsAgent::Association": DevOpsAgentAssociationAttributes;
|
|
218795
220076
|
"AWS::DevOpsGuru::LogAnomalyDetectionIntegration": DevOpsGuruLogAnomalyDetectionIntegrationAttributes;
|
|
218796
220077
|
"AWS::DevOpsGuru::NotificationChannel": DevOpsGuruNotificationChannelAttributes;
|
|
218797
220078
|
"AWS::DevOpsGuru::ResourceCollection": DevOpsGuruResourceCollectionAttributes;
|
|
@@ -219353,6 +220634,8 @@ export interface AttributeTypes {
|
|
|
219353
220634
|
"AWS::Oam::Sink": OamSinkAttributes;
|
|
219354
220635
|
"AWS::ObservabilityAdmin::OrganizationCentralizationRule": ObservabilityAdminOrganizationCentralizationRuleAttributes;
|
|
219355
220636
|
"AWS::ObservabilityAdmin::OrganizationTelemetryRule": ObservabilityAdminOrganizationTelemetryRuleAttributes;
|
|
220637
|
+
"AWS::ObservabilityAdmin::S3TableIntegration": ObservabilityAdminS3TableIntegrationAttributes;
|
|
220638
|
+
"AWS::ObservabilityAdmin::TelemetryPipelines": ObservabilityAdminTelemetryPipelinesAttributes;
|
|
219356
220639
|
"AWS::ObservabilityAdmin::TelemetryRule": ObservabilityAdminTelemetryRuleAttributes;
|
|
219357
220640
|
"AWS::ODB::CloudAutonomousVmCluster": ODBCloudAutonomousVmClusterAttributes;
|
|
219358
220641
|
"AWS::ODB::CloudExadataInfrastructure": ODBCloudExadataInfrastructureAttributes;
|
|
@@ -219591,6 +220874,7 @@ export interface AttributeTypes {
|
|
|
219591
220874
|
"AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleAttributes;
|
|
219592
220875
|
"AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Attributes;
|
|
219593
220876
|
"AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyAttributes;
|
|
220877
|
+
"AWS::SecurityHub::ConnectorV2": SecurityHubConnectorV2Attributes;
|
|
219594
220878
|
"AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminAttributes;
|
|
219595
220879
|
"AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorAttributes;
|
|
219596
220880
|
"AWS::SecurityHub::Hub": SecurityHubHubAttributes;
|
|
@@ -220075,6 +221359,8 @@ export declare const ResourceType: {
|
|
|
220075
221359
|
readonly ConnectContactFlow: "AWS::Connect::ContactFlow";
|
|
220076
221360
|
readonly ConnectContactFlowModule: "AWS::Connect::ContactFlowModule";
|
|
220077
221361
|
readonly ConnectContactFlowVersion: "AWS::Connect::ContactFlowVersion";
|
|
221362
|
+
readonly ConnectDataTable: "AWS::Connect::DataTable";
|
|
221363
|
+
readonly ConnectDataTableAttribute: "AWS::Connect::DataTableAttribute";
|
|
220078
221364
|
readonly ConnectEmailAddress: "AWS::Connect::EmailAddress";
|
|
220079
221365
|
readonly ConnectEvaluationForm: "AWS::Connect::EvaluationForm";
|
|
220080
221366
|
readonly ConnectHoursOfOperation: "AWS::Connect::HoursOfOperation";
|
|
@@ -220164,6 +221450,8 @@ export declare const ResourceType: {
|
|
|
220164
221450
|
readonly DetectiveGraph: "AWS::Detective::Graph";
|
|
220165
221451
|
readonly DetectiveMemberInvitation: "AWS::Detective::MemberInvitation";
|
|
220166
221452
|
readonly DetectiveOrganizationAdmin: "AWS::Detective::OrganizationAdmin";
|
|
221453
|
+
readonly DevOpsAgentAgentSpace: "AWS::DevOpsAgent::AgentSpace";
|
|
221454
|
+
readonly DevOpsAgentAssociation: "AWS::DevOpsAgent::Association";
|
|
220167
221455
|
readonly DevOpsGuruLogAnomalyDetectionIntegration: "AWS::DevOpsGuru::LogAnomalyDetectionIntegration";
|
|
220168
221456
|
readonly DevOpsGuruNotificationChannel: "AWS::DevOpsGuru::NotificationChannel";
|
|
220169
221457
|
readonly DevOpsGuruResourceCollection: "AWS::DevOpsGuru::ResourceCollection";
|
|
@@ -220796,6 +222084,8 @@ export declare const ResourceType: {
|
|
|
220796
222084
|
readonly OamSink: "AWS::Oam::Sink";
|
|
220797
222085
|
readonly ObservabilityAdminOrganizationCentralizationRule: "AWS::ObservabilityAdmin::OrganizationCentralizationRule";
|
|
220798
222086
|
readonly ObservabilityAdminOrganizationTelemetryRule: "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
|
|
222087
|
+
readonly ObservabilityAdminS3TableIntegration: "AWS::ObservabilityAdmin::S3TableIntegration";
|
|
222088
|
+
readonly ObservabilityAdminTelemetryPipelines: "AWS::ObservabilityAdmin::TelemetryPipelines";
|
|
220799
222089
|
readonly ObservabilityAdminTelemetryRule: "AWS::ObservabilityAdmin::TelemetryRule";
|
|
220800
222090
|
readonly ODBCloudAutonomousVmCluster: "AWS::ODB::CloudAutonomousVmCluster";
|
|
220801
222091
|
readonly ODBCloudExadataInfrastructure: "AWS::ODB::CloudExadataInfrastructure";
|
|
@@ -221060,6 +222350,7 @@ export declare const ResourceType: {
|
|
|
221060
222350
|
readonly SecurityHubAutomationRule: "AWS::SecurityHub::AutomationRule";
|
|
221061
222351
|
readonly SecurityHubAutomationRuleV2: "AWS::SecurityHub::AutomationRuleV2";
|
|
221062
222352
|
readonly SecurityHubConfigurationPolicy: "AWS::SecurityHub::ConfigurationPolicy";
|
|
222353
|
+
readonly SecurityHubConnectorV2: "AWS::SecurityHub::ConnectorV2";
|
|
221063
222354
|
readonly SecurityHubDelegatedAdmin: "AWS::SecurityHub::DelegatedAdmin";
|
|
221064
222355
|
readonly SecurityHubFindingAggregator: "AWS::SecurityHub::FindingAggregator";
|
|
221065
222356
|
readonly SecurityHubHub: "AWS::SecurityHub::Hub";
|