@awboost/cfntypes 0.100.215 → 0.100.217

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.
@@ -50,6 +50,10 @@ export type AccessAnalyzerAnalyzerProps = {
50
50
  * The configuration for the analyzer
51
51
  */
52
52
  AnalyzerConfiguration?: {
53
+ /**
54
+ * Specifies the configuration of an internal access analyzer for an AWS organization or account. This configuration determines how the analyzer evaluates internal access within your AWS environment.
55
+ */
56
+ InternalAccessConfiguration?: AccessAnalyzerAnalyzerInternalAccessConfiguration;
53
57
  /**
54
58
  * The Configuration for Unused Access Analyzer
55
59
  */
@@ -68,7 +72,7 @@ export type AccessAnalyzerAnalyzerProps = {
68
72
  */
69
73
  Tags?: AccessAnalyzerAnalyzerTag[];
70
74
  /**
71
- * The type of the analyzer, must be one of ACCOUNT, ORGANIZATION, ACCOUNT_UNUSED_ACCESS or ORGANIZATION_UNUSED_ACCESS
75
+ * The type of the analyzer, must be one of ACCOUNT, ORGANIZATION, ACCOUNT_INTERNAL_ACCESS, ORGANIZATION_INTERNAL_ACCESS, ACCOUNT_UNUSED_ACCESS and ORGANIZATION_UNUSED_ACCESS
72
76
  * @minLength `0`
73
77
  * @maxLength `1024`
74
78
  */
@@ -131,6 +135,41 @@ export type AccessAnalyzerAnalyzerFilter = {
131
135
  Neq?: string[];
132
136
  Property: string;
133
137
  };
138
+ /**
139
+ * Type definition for `AWS::AccessAnalyzer::Analyzer.InternalAccessAnalysisRuleCriteria`.
140
+ * The criteria for an analysis rule for an internal access analyzer.
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrulecriteria.html}
142
+ */
143
+ export type AccessAnalyzerAnalyzerInternalAccessAnalysisRuleCriteria = {
144
+ /**
145
+ * A list of AWS account IDs to apply to the internal access analysis rule criteria. Account IDs can only be applied to the analysis rule criteria for organization-level analyzers and cannot include the organization owner account.
146
+ */
147
+ AccountIds?: string[];
148
+ /**
149
+ * A list of resource ARNs to apply to the internal access analysis rule criteria. The analyzer will only generate findings for resources that match these ARNs.
150
+ */
151
+ ResourceArns?: string[];
152
+ /**
153
+ * A list of resource types to apply to the internal access analysis rule criteria. The analyzer will only generate findings for resources of these types.
154
+ */
155
+ ResourceTypes?: string[];
156
+ };
157
+ /**
158
+ * Type definition for `AWS::AccessAnalyzer::Analyzer.InternalAccessConfiguration`.
159
+ * Specifies the configuration of an internal access analyzer for an AWS organization or account. This configuration determines how the analyzer evaluates internal access within your AWS environment.
160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessconfiguration.html}
161
+ */
162
+ export type AccessAnalyzerAnalyzerInternalAccessConfiguration = {
163
+ /**
164
+ * Contains information about analysis rules for the internal access analyzer. Analysis rules determine which entities will generate findings based on the criteria you define when you create the rule.
165
+ */
166
+ InternalAccessAnalysisRule?: {
167
+ /**
168
+ * A list of rules for the internal access analyzer containing criteria to include in analysis. Only resources that meet the rule criteria will generate findings.
169
+ */
170
+ Inclusions?: AccessAnalyzerAnalyzerInternalAccessAnalysisRuleCriteria[];
171
+ };
172
+ };
134
173
  /**
135
174
  * Type definition for `AWS::AccessAnalyzer::Analyzer.Tag`.
136
175
  * A key-value pair to associate with a resource.
@@ -37519,6 +37558,7 @@ export type ConnectEmailAddressTag = {
37519
37558
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
37520
37559
  */
37521
37560
  export type ConnectEvaluationFormProps = {
37561
+ AutoEvaluationConfiguration?: ConnectEvaluationFormAutoEvaluationConfiguration;
37522
37562
  /**
37523
37563
  * The description of the evaluation form.
37524
37564
  *Length Constraints*: Minimum length of 0. Maximum length of 1024.
@@ -37569,6 +37609,16 @@ export type ConnectEvaluationFormAttributes = {
37569
37609
  */
37570
37610
  EvaluationFormArn: string;
37571
37611
  };
37612
+ /**
37613
+ * Type definition for `AWS::Connect::EvaluationForm.AutoEvaluationConfiguration`.
37614
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html}
37615
+ */
37616
+ export type ConnectEvaluationFormAutoEvaluationConfiguration = {
37617
+ /**
37618
+ * Auto Evaluation enablement status.
37619
+ */
37620
+ Enabled?: boolean;
37621
+ };
37572
37622
  /**
37573
37623
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormBaseItem`.
37574
37624
  * An item at the root level. All items must be sections.
@@ -37601,10 +37651,11 @@ export type ConnectEvaluationFormEvaluationFormItem = {
37601
37651
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
37602
37652
  */
37603
37653
  export type ConnectEvaluationFormEvaluationFormNumericQuestionAutomation = {
37654
+ AnswerSource?: any;
37604
37655
  /**
37605
37656
  * The property value of the automation.
37606
37657
  */
37607
- PropertyValue: ConnectEvaluationFormNumericQuestionPropertyValueAutomation;
37658
+ PropertyValue?: ConnectEvaluationFormNumericQuestionPropertyValueAutomation;
37608
37659
  };
37609
37660
  /**
37610
37661
  * Type definition for `AWS::Connect::EvaluationForm.EvaluationFormNumericQuestionOption`.
@@ -37857,7 +37908,7 @@ export type ConnectEvaluationFormNumericQuestionPropertyValueAutomation = {
37857
37908
  /**
37858
37909
  * The property label of the automation.
37859
37910
  */
37860
- 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";
37911
+ 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";
37861
37912
  };
37862
37913
  /**
37863
37914
  * Type definition for `AWS::Connect::EvaluationForm.ScoringStrategy`.
@@ -42989,6 +43040,10 @@ export type CustomerProfilesSegmentDefinitionProfileAttributes = {
42989
43040
  * Specifies profile based criteria for a segment.
42990
43041
  */
42991
43042
  PhoneNumber?: CustomerProfilesSegmentDefinitionProfileDimension;
43043
+ /**
43044
+ * Specifies profile type based criteria for a segment.
43045
+ */
43046
+ ProfileType?: CustomerProfilesSegmentDefinitionProfileTypeDimension;
42992
43047
  /**
42993
43048
  * The address based criteria for the segment.
42994
43049
  */
@@ -43010,6 +43065,34 @@ export type CustomerProfilesSegmentDefinitionProfileDimension = {
43010
43065
  */
43011
43066
  Values: string[];
43012
43067
  };
43068
+ /**
43069
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileType`.
43070
+ * The type of profile.
43071
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletype.html}
43072
+ */
43073
+ export type CustomerProfilesSegmentDefinitionProfileType = "ACCOUNT_PROFILE" | "PROFILE";
43074
+ /**
43075
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileTypeDimension`.
43076
+ * Specifies profile type based criteria for a segment.
43077
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html}
43078
+ */
43079
+ export type CustomerProfilesSegmentDefinitionProfileTypeDimension = {
43080
+ /**
43081
+ * The type of segment dimension to use for a profile type dimension.
43082
+ */
43083
+ DimensionType: CustomerProfilesSegmentDefinitionProfileTypeDimensionType;
43084
+ /**
43085
+ * @minLength `1`
43086
+ * @maxLength `1`
43087
+ */
43088
+ Values: CustomerProfilesSegmentDefinitionProfileType[];
43089
+ };
43090
+ /**
43091
+ * Type definition for `AWS::CustomerProfiles::SegmentDefinition.ProfileTypeDimensionType`.
43092
+ * The type of segment dimension to use for a profile type dimension.
43093
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimensiontype.html}
43094
+ */
43095
+ export type CustomerProfilesSegmentDefinitionProfileTypeDimensionType = "INCLUSIVE" | "EXCLUSIVE";
43013
43096
  /**
43014
43097
  * Type definition for `AWS::CustomerProfiles::SegmentDefinition.RangeOverride`.
43015
43098
  * Defines the range to be applied to the calculated attribute definition.
@@ -83851,6 +83934,7 @@ export type InspectorV2FilterProps = {
83851
83934
  * @maxLength `128`
83852
83935
  */
83853
83936
  Name: string;
83937
+ Tags?: InspectorV2FilterFilterTagMap;
83854
83938
  };
83855
83939
  /**
83856
83940
  * Attribute type definition for `AWS::InspectorV2::Filter`.
@@ -83887,6 +83971,21 @@ export type InspectorV2FilterFilterCriteria = {
83887
83971
  * @maxLength `10`
83888
83972
  */
83889
83973
  AwsAccountId?: InspectorV2FilterStringFilter[];
83974
+ /**
83975
+ * @minLength `1`
83976
+ * @maxLength `10`
83977
+ */
83978
+ CodeVulnerabilityDetectorName?: InspectorV2FilterStringFilter[];
83979
+ /**
83980
+ * @minLength `1`
83981
+ * @maxLength `10`
83982
+ */
83983
+ CodeVulnerabilityDetectorTags?: InspectorV2FilterStringFilter[];
83984
+ /**
83985
+ * @minLength `1`
83986
+ * @maxLength `10`
83987
+ */
83988
+ CodeVulnerabilityFilePath?: InspectorV2FilterStringFilter[];
83890
83989
  /**
83891
83990
  * @minLength `1`
83892
83991
  * @maxLength `10`
@@ -83942,6 +84041,16 @@ export type InspectorV2FilterFilterCriteria = {
83942
84041
  * @maxLength `10`
83943
84042
  */
83944
84043
  EcrImageTags?: InspectorV2FilterStringFilter[];
84044
+ /**
84045
+ * @minLength `1`
84046
+ * @maxLength `10`
84047
+ */
84048
+ EpssScore?: InspectorV2FilterNumberFilter[];
84049
+ /**
84050
+ * @minLength `1`
84051
+ * @maxLength `10`
84052
+ */
84053
+ ExploitAvailable?: InspectorV2FilterStringFilter[];
83945
84054
  /**
83946
84055
  * @minLength `1`
83947
84056
  * @maxLength `10`
@@ -83962,11 +84071,41 @@ export type InspectorV2FilterFilterCriteria = {
83962
84071
  * @maxLength `10`
83963
84072
  */
83964
84073
  FirstObservedAt?: InspectorV2FilterDateFilter[];
84074
+ /**
84075
+ * @minLength `1`
84076
+ * @maxLength `10`
84077
+ */
84078
+ FixAvailable?: InspectorV2FilterStringFilter[];
83965
84079
  /**
83966
84080
  * @minLength `1`
83967
84081
  * @maxLength `10`
83968
84082
  */
83969
84083
  InspectorScore?: InspectorV2FilterNumberFilter[];
84084
+ /**
84085
+ * @minLength `1`
84086
+ * @maxLength `10`
84087
+ */
84088
+ LambdaFunctionExecutionRoleArn?: InspectorV2FilterStringFilter[];
84089
+ /**
84090
+ * @minLength `1`
84091
+ * @maxLength `10`
84092
+ */
84093
+ LambdaFunctionLastModifiedAt?: InspectorV2FilterDateFilter[];
84094
+ /**
84095
+ * @minLength `1`
84096
+ * @maxLength `10`
84097
+ */
84098
+ LambdaFunctionLayers?: InspectorV2FilterStringFilter[];
84099
+ /**
84100
+ * @minLength `1`
84101
+ * @maxLength `10`
84102
+ */
84103
+ LambdaFunctionName?: InspectorV2FilterStringFilter[];
84104
+ /**
84105
+ * @minLength `1`
84106
+ * @maxLength `10`
84107
+ */
84108
+ LambdaFunctionRuntime?: InspectorV2FilterStringFilter[];
83970
84109
  /**
83971
84110
  * @minLength `1`
83972
84111
  * @maxLength `10`
@@ -84038,6 +84177,11 @@ export type InspectorV2FilterFilterCriteria = {
84038
84177
  */
84039
84178
  VulnerablePackages?: InspectorV2FilterPackageFilter[];
84040
84179
  };
84180
+ /**
84181
+ * Type definition for `AWS::InspectorV2::Filter.FilterTagMap`.
84182
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtertagmap.html}
84183
+ */
84184
+ export type InspectorV2FilterFilterTagMap = Record<string, string>;
84041
84185
  /**
84042
84186
  * Type definition for `AWS::InspectorV2::Filter.MapComparison`.
84043
84187
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-mapcomparison.html}
@@ -84075,8 +84219,10 @@ export type InspectorV2FilterNumberFilter = {
84075
84219
  export type InspectorV2FilterPackageFilter = {
84076
84220
  Architecture?: InspectorV2FilterStringFilter;
84077
84221
  Epoch?: InspectorV2FilterNumberFilter;
84222
+ FilePath?: InspectorV2FilterStringFilter;
84078
84223
  Name?: InspectorV2FilterStringFilter;
84079
84224
  Release?: InspectorV2FilterStringFilter;
84225
+ SourceLambdaLayerArn?: InspectorV2FilterStringFilter;
84080
84226
  SourceLayerHash?: InspectorV2FilterStringFilter;
84081
84227
  Version?: InspectorV2FilterStringFilter;
84082
84228
  };
@@ -116367,6 +116513,147 @@ export type MemoryDBUserTag = {
116367
116513
  */
116368
116514
  Value?: string;
116369
116515
  };
116516
+ /**
116517
+ * Resource Type definition for AWS::MPA::ApprovalTeam.
116518
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html}
116519
+ */
116520
+ export type MPAApprovalTeamProps = {
116521
+ ApprovalStrategy: MPAApprovalTeamApprovalStrategy;
116522
+ /**
116523
+ * @minLength `1`
116524
+ */
116525
+ Approvers: MPAApprovalTeamApprover[];
116526
+ Description: string;
116527
+ Name: string;
116528
+ /**
116529
+ * @minLength `1`
116530
+ */
116531
+ Policies: MPAApprovalTeamPolicy[];
116532
+ Tags?: MPAApprovalTeamTag[];
116533
+ };
116534
+ /**
116535
+ * Attribute type definition for `AWS::MPA::ApprovalTeam`.
116536
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html#aws-resource-mpa-approvalteam-return-values}
116537
+ */
116538
+ export type MPAApprovalTeamAttributes = {
116539
+ /**
116540
+ * @minLength `1`
116541
+ */
116542
+ Approvers: {
116543
+ ApproverId: string;
116544
+ PrimaryIdentityStatus: string;
116545
+ ResponseTime: string;
116546
+ }[];
116547
+ Arn: string;
116548
+ CreationTime: string;
116549
+ LastUpdateTime: string;
116550
+ NumberOfApprovers: number;
116551
+ Status: string;
116552
+ StatusCode: string;
116553
+ StatusMessage: string;
116554
+ UpdateSessionArn: string;
116555
+ VersionId: string;
116556
+ };
116557
+ /**
116558
+ * Type definition for `AWS::MPA::ApprovalTeam.ApprovalStrategy`.
116559
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-approvalstrategy.html}
116560
+ */
116561
+ export type MPAApprovalTeamApprovalStrategy = {
116562
+ MofN: MPAApprovalTeamMofNApprovalStrategy;
116563
+ };
116564
+ /**
116565
+ * Type definition for `AWS::MPA::ApprovalTeam.Approver`.
116566
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-approver.html}
116567
+ */
116568
+ export type MPAApprovalTeamApprover = {
116569
+ PrimaryIdentityId: string;
116570
+ PrimaryIdentitySourceArn: string;
116571
+ };
116572
+ /**
116573
+ * Type definition for `AWS::MPA::ApprovalTeam.MofNApprovalStrategy`.
116574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-mofnapprovalstrategy.html}
116575
+ */
116576
+ export type MPAApprovalTeamMofNApprovalStrategy = {
116577
+ MinApprovalsRequired: number;
116578
+ };
116579
+ /**
116580
+ * Type definition for `AWS::MPA::ApprovalTeam.Policy`.
116581
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-policy.html}
116582
+ */
116583
+ export type MPAApprovalTeamPolicy = {
116584
+ PolicyArn: string;
116585
+ };
116586
+ /**
116587
+ * Type definition for `AWS::MPA::ApprovalTeam.Tag`.
116588
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-tag.html}
116589
+ */
116590
+ export type MPAApprovalTeamTag = {
116591
+ /**
116592
+ * 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 -.
116593
+ */
116594
+ Key: string;
116595
+ /**
116596
+ * 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 -.
116597
+ */
116598
+ Value: string;
116599
+ };
116600
+ /**
116601
+ * Resource Type definition for AWS::MPA::IdentitySource.
116602
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html}
116603
+ */
116604
+ export type MPAIdentitySourceProps = {
116605
+ IdentitySourceParameters: MPAIdentitySourceIdentitySourceParameters;
116606
+ Tags?: MPAIdentitySourceTag[];
116607
+ };
116608
+ /**
116609
+ * Attribute type definition for `AWS::MPA::IdentitySource`.
116610
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html#aws-resource-mpa-identitysource-return-values}
116611
+ */
116612
+ export type MPAIdentitySourceAttributes = {
116613
+ CreationTime: string;
116614
+ IdentitySourceArn: string;
116615
+ IdentitySourceParameters: {
116616
+ IamIdentityCenter: {
116617
+ ApprovalPortalUrl: string;
116618
+ };
116619
+ };
116620
+ IdentitySourceType: string;
116621
+ Status: string;
116622
+ StatusCode: string;
116623
+ StatusMessage: string;
116624
+ };
116625
+ /**
116626
+ * Type definition for `AWS::MPA::IdentitySource.IamIdentityCenter`.
116627
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-iamidentitycenter.html}
116628
+ */
116629
+ export type MPAIdentitySourceIamIdentityCenter = {
116630
+ /**
116631
+ * @pattern `^arn:.+:sso:::instance/(?:sso)?ins-[a-zA-Z0-9-.]{16}$`
116632
+ */
116633
+ InstanceArn: string;
116634
+ Region: string;
116635
+ };
116636
+ /**
116637
+ * Type definition for `AWS::MPA::IdentitySource.IdentitySourceParameters`.
116638
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-identitysourceparameters.html}
116639
+ */
116640
+ export type MPAIdentitySourceIdentitySourceParameters = {
116641
+ IamIdentityCenter: MPAIdentitySourceIamIdentityCenter;
116642
+ };
116643
+ /**
116644
+ * Type definition for `AWS::MPA::IdentitySource.Tag`.
116645
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-tag.html}
116646
+ */
116647
+ export type MPAIdentitySourceTag = {
116648
+ /**
116649
+ * 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 -.
116650
+ */
116651
+ Key: string;
116652
+ /**
116653
+ * 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 -.
116654
+ */
116655
+ Value: string;
116656
+ };
116370
116657
  /**
116371
116658
  * Resource Type definition for AWS::MSK::BatchScramSecret
116372
116659
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-batchscramsecret.html}
@@ -178928,6 +179215,48 @@ export type SecretsManagerSecretTargetAttachmentProps = {
178928
179215
  export type SecretsManagerSecretTargetAttachmentAttributes = {
178929
179216
  Id: string;
178930
179217
  };
179218
+ /**
179219
+ * The AWS::SecurityHub::AggregatorV2 resource represents the AWS Security Hub AggregatorV2 in your account. One aggregatorv2 resource is created for each account in non opt-in region in which you configure region linking mode.
179220
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-aggregatorv2.html}
179221
+ */
179222
+ export type SecurityHubAggregatorV2Props = {
179223
+ /**
179224
+ * The list of included Regions
179225
+ * @minLength `1`
179226
+ * @maxLength `50`
179227
+ */
179228
+ LinkedRegions: string[];
179229
+ /**
179230
+ * Indicates to link a list of included Regions
179231
+ */
179232
+ RegionLinkingMode: "SPECIFIED_REGIONS";
179233
+ /**
179234
+ * A key-value pair to associate with the Security Hub V2 resource.
179235
+ */
179236
+ Tags?: SecurityHubAggregatorV2Tags;
179237
+ };
179238
+ /**
179239
+ * Attribute type definition for `AWS::SecurityHub::AggregatorV2`.
179240
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-aggregatorv2.html#aws-resource-securityhub-aggregatorv2-return-values}
179241
+ */
179242
+ export type SecurityHubAggregatorV2Attributes = {
179243
+ /**
179244
+ * The aggregation Region of the AggregatorV2
179245
+ * @pattern `^[a-zA-Z0-9-]{1,32}$`
179246
+ */
179247
+ AggregationRegion: string;
179248
+ /**
179249
+ * The ARN of the AggregatorV2 being created and assigned as the unique identifier
179250
+ * @pattern `arn:aws\S*:securityhub:\S*`
179251
+ */
179252
+ AggregatorV2Arn: string;
179253
+ };
179254
+ /**
179255
+ * Type definition for `AWS::SecurityHub::AggregatorV2.Tags`.
179256
+ * A key-value pair to associate with the Security Hub V2 resource.
179257
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-aggregatorv2-tags.html}
179258
+ */
179259
+ export type SecurityHubAggregatorV2Tags = Record<string, string>;
178931
179260
  /**
178932
179261
  * The ``AWS::SecurityHub::AutomationRule`` resource specifies an automation rule based on input parameters. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
178933
179262
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-automationrule.html}
@@ -179523,6 +179852,393 @@ export type SecurityHubAutomationRuleWorkflowUpdate = {
179523
179852
  */
179524
179853
  Status: "NEW" | "NOTIFIED" | "RESOLVED" | "SUPPRESSED";
179525
179854
  };
179855
+ /**
179856
+ * Resource schema for AWS::SecurityHub::AutomationRuleV2
179857
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-automationrulev2.html}
179858
+ */
179859
+ export type SecurityHubAutomationRuleV2Props = {
179860
+ /**
179861
+ * A list of actions to be performed when the rule criteria is met
179862
+ * @minLength `1`
179863
+ * @maxLength `1`
179864
+ */
179865
+ Actions: SecurityHubAutomationRuleV2AutomationRulesActionV2[];
179866
+ /**
179867
+ * Defines the parameters and conditions used to evaluate and filter security findings
179868
+ */
179869
+ Criteria: SecurityHubAutomationRuleV2Criteria;
179870
+ /**
179871
+ * A description of the automation rule
179872
+ * @minLength `1`
179873
+ * @maxLength `256`
179874
+ * @pattern `.*\S.*`
179875
+ */
179876
+ Description: string;
179877
+ /**
179878
+ * The name of the automation rule
179879
+ * @minLength `1`
179880
+ * @maxLength `256`
179881
+ * @pattern `.*\S.*`
179882
+ */
179883
+ RuleName: string;
179884
+ /**
179885
+ * The value for the rule priority
179886
+ * @min `1`
179887
+ * @max `1000`
179888
+ */
179889
+ RuleOrder: number;
179890
+ /**
179891
+ * The status of the automation rule
179892
+ */
179893
+ RuleStatus?: "ENABLED" | "DISABLED";
179894
+ /**
179895
+ * A key-value pair to associate with a resource.
179896
+ */
179897
+ Tags?: SecurityHubAutomationRuleV2Tags;
179898
+ };
179899
+ /**
179900
+ * Attribute type definition for `AWS::SecurityHub::AutomationRuleV2`.
179901
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-automationrulev2.html#aws-resource-securityhub-automationrulev2-return-values}
179902
+ */
179903
+ export type SecurityHubAutomationRuleV2Attributes = {
179904
+ /**
179905
+ * The timestamp formatted in ISO8601
179906
+ * @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))?)$`
179907
+ */
179908
+ CreatedAt: string;
179909
+ /**
179910
+ * The ARN of the automation rule
179911
+ * @pattern `^arn:aws\S*:securityhub:[a-z0-9-]+:[0-9]{12}:automation-rulev2/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
179912
+ */
179913
+ RuleArn: string;
179914
+ /**
179915
+ * The ID of the automation rule
179916
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
179917
+ */
179918
+ RuleId: string;
179919
+ /**
179920
+ * The timestamp formatted in ISO8601
179921
+ * @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))?)$`
179922
+ */
179923
+ UpdatedAt: string;
179924
+ };
179925
+ /**
179926
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.AllowedOperators`.
179927
+ * The logical operator used to combine multiple conditions
179928
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-allowedoperators.html}
179929
+ */
179930
+ export type SecurityHubAutomationRuleV2AllowedOperators = "AND" | "OR";
179931
+ /**
179932
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.AutomationRulesActionV2`.
179933
+ * Allows you to configure automated responses
179934
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-automationrulesactionv2.html}
179935
+ */
179936
+ export type SecurityHubAutomationRuleV2AutomationRulesActionV2 = {
179937
+ /**
179938
+ * The settings for integrating automation rule actions with external systems or service
179939
+ */
179940
+ ExternalIntegrationConfiguration?: SecurityHubAutomationRuleV2ExternalIntegrationConfiguration;
179941
+ /**
179942
+ * The changes to be applied to fields in a security finding when an automation rule is triggered
179943
+ */
179944
+ FindingFieldsUpdate?: SecurityHubAutomationRuleV2AutomationRulesFindingFieldsUpdateV2;
179945
+ /**
179946
+ * The category of action to be executed by the automation rule
179947
+ */
179948
+ Type: "FINDING_FIELDS_UPDATE" | "EXTERNAL_INTEGRATION";
179949
+ };
179950
+ /**
179951
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.AutomationRulesFindingFieldsUpdateV2`.
179952
+ * The changes to be applied to fields in a security finding when an automation rule is triggered
179953
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-automationrulesfindingfieldsupdatev2.html}
179954
+ */
179955
+ export type SecurityHubAutomationRuleV2AutomationRulesFindingFieldsUpdateV2 = {
179956
+ /**
179957
+ * Notes or contextual information for findings that are modified by the automation rule
179958
+ * @pattern `.*\S.*`
179959
+ */
179960
+ Comment?: string;
179961
+ /**
179962
+ * The severity level to be assigned to findings that match the automation rule criteria
179963
+ */
179964
+ SeverityId?: number;
179965
+ /**
179966
+ * The status to be applied to findings that match automation rule criteria
179967
+ */
179968
+ StatusId?: number;
179969
+ };
179970
+ /**
179971
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.BooleanFilter`.
179972
+ * Boolean filter for querying findings
179973
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-booleanfilter.html}
179974
+ */
179975
+ export type SecurityHubAutomationRuleV2BooleanFilter = {
179976
+ /**
179977
+ * The value of the boolean
179978
+ */
179979
+ Value: boolean;
179980
+ };
179981
+ /**
179982
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.CompositeFilter`.
179983
+ * Enables the creation of filtering criteria for security findings
179984
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-compositefilter.html}
179985
+ */
179986
+ export type SecurityHubAutomationRuleV2CompositeFilter = {
179987
+ /**
179988
+ * Enables filtering based on boolean field values
179989
+ * @minLength `1`
179990
+ * @maxLength `20`
179991
+ */
179992
+ BooleanFilters?: SecurityHubAutomationRuleV2OcsfBooleanFilter[];
179993
+ /**
179994
+ * Enables filtering based on date and timestamp fields
179995
+ * @minLength `1`
179996
+ * @maxLength `20`
179997
+ */
179998
+ DateFilters?: SecurityHubAutomationRuleV2OcsfDateFilter[];
179999
+ /**
180000
+ * Enables filtering based on map field value
180001
+ * @minLength `1`
180002
+ * @maxLength `20`
180003
+ */
180004
+ MapFilters?: SecurityHubAutomationRuleV2OcsfMapFilter[];
180005
+ /**
180006
+ * Enables filtering based on numerical field values
180007
+ * @minLength `1`
180008
+ * @maxLength `20`
180009
+ */
180010
+ NumberFilters?: SecurityHubAutomationRuleV2OcsfNumberFilter[];
180011
+ /**
180012
+ * The logical operator used to combine multiple conditions
180013
+ */
180014
+ Operator?: SecurityHubAutomationRuleV2AllowedOperators;
180015
+ /**
180016
+ * Enables filtering based on string field values
180017
+ * @minLength `1`
180018
+ * @maxLength `20`
180019
+ */
180020
+ StringFilters?: SecurityHubAutomationRuleV2OcsfStringFilter[];
180021
+ };
180022
+ /**
180023
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.Criteria`.
180024
+ * Defines the parameters and conditions used to evaluate and filter security findings
180025
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-criteria.html}
180026
+ */
180027
+ export type SecurityHubAutomationRuleV2Criteria = {
180028
+ /**
180029
+ * The filtering conditions that align with OCSF standards
180030
+ */
180031
+ OcsfFindingCriteria?: SecurityHubAutomationRuleV2OcsfFindingFilters;
180032
+ };
180033
+ /**
180034
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.DateFilter`.
180035
+ * A date filter for querying findings
180036
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-datefilter.html}
180037
+ */
180038
+ export type SecurityHubAutomationRuleV2DateFilter = {
180039
+ /**
180040
+ * A date range for the date filter
180041
+ */
180042
+ DateRange?: SecurityHubAutomationRuleV2DateRange;
180043
+ /**
180044
+ * The timestamp formatted in ISO8601
180045
+ * @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))?)$`
180046
+ */
180047
+ End?: string;
180048
+ /**
180049
+ * The timestamp formatted in ISO8601
180050
+ * @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))?)$`
180051
+ */
180052
+ Start?: string;
180053
+ };
180054
+ /**
180055
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.DateRange`.
180056
+ * A date range for the date filter
180057
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-daterange.html}
180058
+ */
180059
+ export type SecurityHubAutomationRuleV2DateRange = {
180060
+ /**
180061
+ * A date range unit for the date filter
180062
+ */
180063
+ Unit: "DAYS";
180064
+ /**
180065
+ * A date range value for the date filter
180066
+ */
180067
+ Value: number;
180068
+ };
180069
+ /**
180070
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.ExternalIntegrationConfiguration`.
180071
+ * The settings for integrating automation rule actions with external systems or service
180072
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-externalintegrationconfiguration.html}
180073
+ */
180074
+ export type SecurityHubAutomationRuleV2ExternalIntegrationConfiguration = {
180075
+ /**
180076
+ * The ARN of the connector that establishes the integration
180077
+ * @pattern `.*\S.*`
180078
+ */
180079
+ ConnectorArn?: string;
180080
+ };
180081
+ /**
180082
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.MapFilter`.
180083
+ * A map filter for filtering findings
180084
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-mapfilter.html}
180085
+ */
180086
+ export type SecurityHubAutomationRuleV2MapFilter = {
180087
+ /**
180088
+ * The condition to apply to the key value when filtering findings with a map filter
180089
+ */
180090
+ Comparison: "EQUALS" | "NOT_EQUALS";
180091
+ /**
180092
+ * The key of the map filter
180093
+ * @minLength `1`
180094
+ * @maxLength `4096`
180095
+ */
180096
+ Key: string;
180097
+ /**
180098
+ * The value for the key in the map filter
180099
+ * @minLength `1`
180100
+ * @maxLength `4096`
180101
+ */
180102
+ Value: string;
180103
+ };
180104
+ /**
180105
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.NumberFilter`.
180106
+ * A number filter for querying findings
180107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-numberfilter.html}
180108
+ */
180109
+ export type SecurityHubAutomationRuleV2NumberFilter = {
180110
+ /**
180111
+ * The equal-to condition to be applied to a single field when querying for findings
180112
+ */
180113
+ Eq?: number;
180114
+ /**
180115
+ * The greater-than-equal condition to be applied to a single field when querying for findings
180116
+ */
180117
+ Gte?: number;
180118
+ /**
180119
+ * The less-than-equal condition to be applied to a single field when querying for findings
180120
+ */
180121
+ Lte?: number;
180122
+ };
180123
+ /**
180124
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfBooleanFilter`.
180125
+ * Enables filtering of security findings based on boolean field values in OCSF
180126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsfbooleanfilter.html}
180127
+ */
180128
+ export type SecurityHubAutomationRuleV2OcsfBooleanFilter = {
180129
+ /**
180130
+ * The name of the field
180131
+ */
180132
+ FieldName: "compliance.assessments.meets_criteria" | "vulnerabilities.is_exploit_available" | "vulnerabilities.is_fix_available";
180133
+ /**
180134
+ * Boolean filter for querying findings
180135
+ */
180136
+ Filter: SecurityHubAutomationRuleV2BooleanFilter;
180137
+ };
180138
+ /**
180139
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfDateFilter`.
180140
+ * Enables filtering of security findings based on date and timestamp fields in OCSF
180141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsfdatefilter.html}
180142
+ */
180143
+ export type SecurityHubAutomationRuleV2OcsfDateFilter = {
180144
+ /**
180145
+ * The name of the field
180146
+ */
180147
+ FieldName: "finding_info.created_time_dt" | "finding_info.first_seen_time_dt" | "finding_info.last_seen_time_dt" | "finding_info.modified_time_dt";
180148
+ /**
180149
+ * A date filter for querying findings
180150
+ */
180151
+ Filter: SecurityHubAutomationRuleV2DateFilter;
180152
+ };
180153
+ /**
180154
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfFindingFilters`.
180155
+ * The filtering conditions that align with OCSF standards
180156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsffindingfilters.html}
180157
+ */
180158
+ export type SecurityHubAutomationRuleV2OcsfFindingFilters = {
180159
+ /**
180160
+ * Enables the creation of complex filtering conditions by combining filter
180161
+ */
180162
+ CompositeFilters?: SecurityHubAutomationRuleV2CompositeFilter[];
180163
+ /**
180164
+ * The logical operator used to combine multiple conditions
180165
+ */
180166
+ CompositeOperator?: SecurityHubAutomationRuleV2AllowedOperators;
180167
+ };
180168
+ /**
180169
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfMapFilter`.
180170
+ * Enables filtering of security findings based on map field values in OCSF
180171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsfmapfilter.html}
180172
+ */
180173
+ export type SecurityHubAutomationRuleV2OcsfMapFilter = {
180174
+ /**
180175
+ * The name of the field
180176
+ */
180177
+ FieldName: "resources.tags";
180178
+ /**
180179
+ * A map filter for filtering findings
180180
+ */
180181
+ Filter: SecurityHubAutomationRuleV2MapFilter;
180182
+ };
180183
+ /**
180184
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfNumberFilter`.
180185
+ * Enables filtering of security findings based on numerical field values in OCSF
180186
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsfnumberfilter.html}
180187
+ */
180188
+ export type SecurityHubAutomationRuleV2OcsfNumberFilter = {
180189
+ /**
180190
+ * The name of the field
180191
+ */
180192
+ FieldName: "activity_id" | "compliance.status_id" | "confidence_score" | "severity_id" | "status_id" | "finding_info.related_events_count";
180193
+ /**
180194
+ * A number filter for querying findings
180195
+ */
180196
+ Filter: SecurityHubAutomationRuleV2NumberFilter;
180197
+ };
180198
+ /**
180199
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfStringField`.
180200
+ * The name of the field
180201
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsfstringfield.html}
180202
+ */
180203
+ export type SecurityHubAutomationRuleV2OcsfStringField = "metadata.uid" | "activity_name" | "cloud.account.name" | "cloud.account.uid" | "cloud.provider" | "cloud.region" | "compliance.assessments.category" | "compliance.assessments.name" | "compliance.control" | "compliance.status" | "compliance.standards" | "finding_info.desc" | "finding_info.src_url" | "finding_info.title" | "finding_info.types" | "finding_info.uid" | "finding_info.related_events.uid" | "finding_info.related_events.product.uid" | "finding_info.related_events.title" | "metadata.product.feature.uid" | "metadata.product.name" | "metadata.product.uid" | "metadata.product.vendor_name" | "remediation.desc" | "remediation.references" | "resources.cloud_partition" | "resources.name" | "resources.region" | "resources.type" | "resources.uid" | "severity" | "status" | "comment" | "vulnerabilities.fix_coverage" | "class_name";
180204
+ /**
180205
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.OcsfStringFilter`.
180206
+ * Enables filtering of security findings based on string field values in OCSF
180207
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-ocsfstringfilter.html}
180208
+ */
180209
+ export type SecurityHubAutomationRuleV2OcsfStringFilter = {
180210
+ /**
180211
+ * The name of the field
180212
+ */
180213
+ FieldName: SecurityHubAutomationRuleV2OcsfStringField;
180214
+ /**
180215
+ * A string filter for filtering findings
180216
+ */
180217
+ Filter: SecurityHubAutomationRuleV2StringFilter;
180218
+ };
180219
+ /**
180220
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.StringFilter`.
180221
+ * A string filter for filtering findings
180222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-stringfilter.html}
180223
+ */
180224
+ export type SecurityHubAutomationRuleV2StringFilter = {
180225
+ /**
180226
+ * The condition to apply to a string value when filtering findings
180227
+ */
180228
+ Comparison: "EQUALS" | "PREFIX" | "NOT_EQUALS" | "PREFIX_NOT_EQUALS" | "CONTAINS";
180229
+ /**
180230
+ * The string filter value
180231
+ * @minLength `1`
180232
+ * @maxLength `4096`
180233
+ */
180234
+ Value: string;
180235
+ };
180236
+ /**
180237
+ * Type definition for `AWS::SecurityHub::AutomationRuleV2.Tags`.
180238
+ * A key-value pair to associate with a resource.
180239
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-automationrulev2-tags.html}
180240
+ */
180241
+ export type SecurityHubAutomationRuleV2Tags = Record<string, string>;
179526
180242
  /**
179527
180243
  * The AWS::SecurityHub::ConfigurationPolicy resource represents the Central Configuration Policy in your account.
179528
180244
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-configurationpolicy.html}
@@ -179820,6 +180536,37 @@ export type SecurityHubHubAttributes = {
179820
180536
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-hub-tags.html}
179821
180537
  */
179822
180538
  export type SecurityHubHubTags = Record<string, string>;
180539
+ /**
180540
+ * The AWS::SecurityHub::HubV2 resource represents the implementation of the AWS Security Hub V2 service in your account. Only one hubv2 resource can created in each region in which you enable Security Hub V2.
180541
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hubv2.html}
180542
+ */
180543
+ export type SecurityHubHubV2Props = {
180544
+ /**
180545
+ * A key-value pair to associate with the Security Hub V2 resource. You can specify a key 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 -.
180546
+ */
180547
+ Tags?: SecurityHubHubV2Tags;
180548
+ };
180549
+ /**
180550
+ * Attribute type definition for `AWS::SecurityHub::HubV2`.
180551
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-hubv2.html#aws-resource-securityhub-hubv2-return-values}
180552
+ */
180553
+ export type SecurityHubHubV2Attributes = {
180554
+ /**
180555
+ * The Amazon Resource Name of the Security Hub V2 resource.
180556
+ * @pattern `arn:aws(?:-[a-z]+)*:securityhub:[a-z0-9-]+:\d{12}:hubv2/[^/](.{0,1022}[^/:])?$`
180557
+ */
180558
+ HubV2Arn: string;
180559
+ /**
180560
+ * @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))?)$`
180561
+ */
180562
+ SubscribedAt: string;
180563
+ };
180564
+ /**
180565
+ * Type definition for `AWS::SecurityHub::HubV2.Tags`.
180566
+ * A key-value pair to associate with the Security Hub V2 resource. You can specify a key 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 -.
180567
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-hubv2-tags.html}
180568
+ */
180569
+ export type SecurityHubHubV2Tags = Record<string, string>;
179823
180570
  /**
179824
180571
  * The AWS::SecurityHub::Insight resource represents the AWS Security Hub Insight in your account. An AWS Security Hub insight is a collection of related findings.
179825
180572
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-insight.html}
@@ -198717,6 +199464,8 @@ export interface ResourceTypes {
198717
199464
  "AWS::MemoryDB::ParameterGroup": MemoryDBParameterGroupProps;
198718
199465
  "AWS::MemoryDB::SubnetGroup": MemoryDBSubnetGroupProps;
198719
199466
  "AWS::MemoryDB::User": MemoryDBUserProps;
199467
+ "AWS::MPA::ApprovalTeam": MPAApprovalTeamProps;
199468
+ "AWS::MPA::IdentitySource": MPAIdentitySourceProps;
198720
199469
  "AWS::MSK::BatchScramSecret": MSKBatchScramSecretProps;
198721
199470
  "AWS::MSK::Cluster": MSKClusterProps;
198722
199471
  "AWS::MSK::ClusterPolicy": MSKClusterPolicyProps;
@@ -199005,11 +199754,14 @@ export interface ResourceTypes {
199005
199754
  "AWS::SecretsManager::RotationSchedule": SecretsManagerRotationScheduleProps;
199006
199755
  "AWS::SecretsManager::Secret": SecretsManagerSecretProps;
199007
199756
  "AWS::SecretsManager::SecretTargetAttachment": SecretsManagerSecretTargetAttachmentProps;
199757
+ "AWS::SecurityHub::AggregatorV2": SecurityHubAggregatorV2Props;
199008
199758
  "AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleProps;
199759
+ "AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Props;
199009
199760
  "AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyProps;
199010
199761
  "AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminProps;
199011
199762
  "AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorProps;
199012
199763
  "AWS::SecurityHub::Hub": SecurityHubHubProps;
199764
+ "AWS::SecurityHub::HubV2": SecurityHubHubV2Props;
199013
199765
  "AWS::SecurityHub::Insight": SecurityHubInsightProps;
199014
199766
  "AWS::SecurityHub::OrganizationConfiguration": SecurityHubOrganizationConfigurationProps;
199015
199767
  "AWS::SecurityHub::PolicyAssociation": SecurityHubPolicyAssociationProps;
@@ -200019,6 +200771,8 @@ export interface AttributeTypes {
200019
200771
  "AWS::MemoryDB::ParameterGroup": MemoryDBParameterGroupAttributes;
200020
200772
  "AWS::MemoryDB::SubnetGroup": MemoryDBSubnetGroupAttributes;
200021
200773
  "AWS::MemoryDB::User": MemoryDBUserAttributes;
200774
+ "AWS::MPA::ApprovalTeam": MPAApprovalTeamAttributes;
200775
+ "AWS::MPA::IdentitySource": MPAIdentitySourceAttributes;
200022
200776
  "AWS::MSK::Cluster": MSKClusterAttributes;
200023
200777
  "AWS::MSK::ClusterPolicy": MSKClusterPolicyAttributes;
200024
200778
  "AWS::MSK::Configuration": MSKConfigurationAttributes;
@@ -200272,11 +201026,14 @@ export interface AttributeTypes {
200272
201026
  "AWS::SecretsManager::RotationSchedule": SecretsManagerRotationScheduleAttributes;
200273
201027
  "AWS::SecretsManager::Secret": SecretsManagerSecretAttributes;
200274
201028
  "AWS::SecretsManager::SecretTargetAttachment": SecretsManagerSecretTargetAttachmentAttributes;
201029
+ "AWS::SecurityHub::AggregatorV2": SecurityHubAggregatorV2Attributes;
200275
201030
  "AWS::SecurityHub::AutomationRule": SecurityHubAutomationRuleAttributes;
201031
+ "AWS::SecurityHub::AutomationRuleV2": SecurityHubAutomationRuleV2Attributes;
200276
201032
  "AWS::SecurityHub::ConfigurationPolicy": SecurityHubConfigurationPolicyAttributes;
200277
201033
  "AWS::SecurityHub::DelegatedAdmin": SecurityHubDelegatedAdminAttributes;
200278
201034
  "AWS::SecurityHub::FindingAggregator": SecurityHubFindingAggregatorAttributes;
200279
201035
  "AWS::SecurityHub::Hub": SecurityHubHubAttributes;
201036
+ "AWS::SecurityHub::HubV2": SecurityHubHubV2Attributes;
200280
201037
  "AWS::SecurityHub::Insight": SecurityHubInsightAttributes;
200281
201038
  "AWS::SecurityHub::OrganizationConfiguration": SecurityHubOrganizationConfigurationAttributes;
200282
201039
  "AWS::SecurityHub::PolicyAssociation": SecurityHubPolicyAssociationAttributes;
@@ -201369,6 +202126,8 @@ export declare const ResourceType: {
201369
202126
  readonly MemoryDBParameterGroup: "AWS::MemoryDB::ParameterGroup";
201370
202127
  readonly MemoryDBSubnetGroup: "AWS::MemoryDB::SubnetGroup";
201371
202128
  readonly MemoryDBUser: "AWS::MemoryDB::User";
202129
+ readonly MPAApprovalTeam: "AWS::MPA::ApprovalTeam";
202130
+ readonly MPAIdentitySource: "AWS::MPA::IdentitySource";
201372
202131
  readonly MSKBatchScramSecret: "AWS::MSK::BatchScramSecret";
201373
202132
  readonly MSKCluster: "AWS::MSK::Cluster";
201374
202133
  readonly MSKClusterPolicy: "AWS::MSK::ClusterPolicy";
@@ -201657,11 +202416,14 @@ export declare const ResourceType: {
201657
202416
  readonly SecretsManagerRotationSchedule: "AWS::SecretsManager::RotationSchedule";
201658
202417
  readonly SecretsManagerSecret: "AWS::SecretsManager::Secret";
201659
202418
  readonly SecretsManagerSecretTargetAttachment: "AWS::SecretsManager::SecretTargetAttachment";
202419
+ readonly SecurityHubAggregatorV2: "AWS::SecurityHub::AggregatorV2";
201660
202420
  readonly SecurityHubAutomationRule: "AWS::SecurityHub::AutomationRule";
202421
+ readonly SecurityHubAutomationRuleV2: "AWS::SecurityHub::AutomationRuleV2";
201661
202422
  readonly SecurityHubConfigurationPolicy: "AWS::SecurityHub::ConfigurationPolicy";
201662
202423
  readonly SecurityHubDelegatedAdmin: "AWS::SecurityHub::DelegatedAdmin";
201663
202424
  readonly SecurityHubFindingAggregator: "AWS::SecurityHub::FindingAggregator";
201664
202425
  readonly SecurityHubHub: "AWS::SecurityHub::Hub";
202426
+ readonly SecurityHubHubV2: "AWS::SecurityHub::HubV2";
201665
202427
  readonly SecurityHubInsight: "AWS::SecurityHub::Insight";
201666
202428
  readonly SecurityHubOrganizationConfiguration: "AWS::SecurityHub::OrganizationConfiguration";
201667
202429
  readonly SecurityHubPolicyAssociation: "AWS::SecurityHub::PolicyAssociation";