@propulsionworks/cloudformation 0.1.12 → 0.1.13

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.
Files changed (33) hide show
  1. package/out/exports/resources.generated/aws-accessanalyzer-analyzer.d.ts +38 -0
  2. package/out/exports/resources.generated/aws-amplify-app.d.ts +30 -0
  3. package/out/exports/resources.generated/aws-cleanrooms-collaboration.d.ts +3 -3
  4. package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +20 -2
  5. package/out/exports/resources.generated/aws-customerprofiles-segmentdefinition.d.ts +30 -0
  6. package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +101 -0
  7. package/out/exports/resources.generated/aws-deadline-fleet.d.ts +2 -1
  8. package/out/exports/resources.generated/aws-ec2-trafficmirrorfilter.d.ts +7 -1
  9. package/out/exports/resources.generated/aws-ecr-repositorycreationtemplate.d.ts +1 -1
  10. package/out/exports/resources.generated/aws-ecs-service.d.ts +60 -2
  11. package/out/exports/resources.generated/aws-inspectorv2-filter.d.ts +56 -0
  12. package/out/exports/resources.generated/aws-kendra-datasource.d.ts +113 -1
  13. package/out/exports/resources.generated/aws-kms-key.d.ts +9 -2
  14. package/out/exports/resources.generated/aws-lambda-eventsourcemapping.d.ts +0 -7
  15. package/out/exports/resources.generated/aws-mediatailor-playbackconfiguration.d.ts +66 -0
  16. package/out/exports/resources.generated/aws-mpa-approvalteam.d.ts +2 -0
  17. package/out/exports/resources.generated/aws-mpa-identitysource.d.ts +2 -0
  18. package/out/exports/resources.generated/aws-networkfirewall-rulegroup.d.ts +1 -1
  19. package/out/exports/resources.generated/aws-networkfirewall-tlsinspectionconfiguration.d.ts +1 -1
  20. package/out/exports/resources.generated/aws-opsworkscm-server.d.ts +1 -0
  21. package/out/exports/resources.generated/aws-organizations-policy.d.ts +1 -1
  22. package/out/exports/resources.generated/aws-rum-appmonitor.d.ts +1 -1
  23. package/out/exports/resources.generated/aws-sagemaker-model.d.ts +2 -0
  24. package/out/exports/resources.generated/aws-sagemaker-modelpackage.d.ts +2 -0
  25. package/out/exports/resources.generated/aws-securityhub-aggregatorv2.d.ts +44 -0
  26. package/out/exports/resources.generated/aws-securityhub-automationrule.d.ts +1 -1
  27. package/out/exports/resources.generated/aws-securityhub-automationrulev2.d.ts +403 -0
  28. package/out/exports/resources.generated/aws-securityhub-hubv2.d.ts +30 -0
  29. package/out/exports/resources.generated/aws-securityhub-insight.d.ts +1 -1
  30. package/out/exports/resources.generated/aws-synthetics-canary.d.ts +5 -0
  31. package/out/exports/resources.generated/aws-wafv2-rulegroup.d.ts +9 -1
  32. package/out/exports/resources.generated/aws-wafv2-webacl.d.ts +73 -9
  33. package/package.json +1 -1
@@ -14,6 +14,7 @@ export type AccessAnalyzerAnalyzerProps = {
14
14
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accessanalyzer-analyzer.html#cfn-accessanalyzer-analyzer-analyzerconfiguration}
15
15
  */
16
16
  AnalyzerConfiguration?: {
17
+ InternalAccessConfiguration?: InternalAccessConfiguration | undefined;
17
18
  UnusedAccessConfiguration?: UnusedAccessConfiguration | undefined;
18
19
  } | undefined;
19
20
  /**
@@ -128,6 +129,43 @@ export type Filter = {
128
129
  */
129
130
  Property: string;
130
131
  };
132
+ /**
133
+ * The criteria for an analysis rule for an internal access analyzer.
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrulecriteria.html}
135
+ */
136
+ export type InternalAccessAnalysisRuleCriteria = {
137
+ /**
138
+ * 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.
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrulecriteria.html#cfn-accessanalyzer-analyzer-internalaccessanalysisrulecriteria-accountids}
140
+ */
141
+ AccountIds?: string[] | undefined;
142
+ /**
143
+ * 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.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrulecriteria.html#cfn-accessanalyzer-analyzer-internalaccessanalysisrulecriteria-resourcearns}
145
+ */
146
+ ResourceArns?: string[] | undefined;
147
+ /**
148
+ * 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.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessanalysisrulecriteria.html#cfn-accessanalyzer-analyzer-internalaccessanalysisrulecriteria-resourcetypes}
150
+ */
151
+ ResourceTypes?: string[] | undefined;
152
+ };
153
+ /**
154
+ * 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.
155
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessconfiguration.html}
156
+ */
157
+ export type InternalAccessConfiguration = {
158
+ /**
159
+ * 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.
160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-internalaccessconfiguration.html#cfn-accessanalyzer-analyzer-internalaccessconfiguration-internalaccessanalysisrule}
161
+ */
162
+ InternalAccessAnalysisRule?: {
163
+ /**
164
+ * 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.
165
+ */
166
+ Inclusions?: InternalAccessAnalysisRuleCriteria[] | undefined;
167
+ } | undefined;
168
+ };
131
169
  /**
132
170
  * Contains information about an unused access analyzer.
133
171
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-unusedaccessconfiguration.html}
@@ -93,6 +93,11 @@ export type AmplifyAppProps = {
93
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-iamservicerole}
94
94
  */
95
95
  IAMServiceRole?: string | undefined;
96
+ /**
97
+ * The configuration details that apply to the jobs for an Amplify app.
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-app.html#cfn-amplify-app-jobconfig}
99
+ */
100
+ JobConfig?: JobConfig | undefined;
96
101
  /**
97
102
  * The name of the Amplify app.
98
103
  * @minLength 1
@@ -353,4 +358,29 @@ export type EnvironmentVariable = {
353
358
  */
354
359
  Value: string;
355
360
  };
361
+ /**
362
+ * Describes the configuration details that apply to the jobs for an Amplify app.
363
+ *
364
+ * Use `JobConfig` to apply configuration to jobs, such as customizing the build instance size when you create or update an Amplify app. For more information about customizable build instances, see [Custom build instances](https://docs.aws.amazon.com/amplify/latest/userguide/custom-build-instance.html) in the *Amplify User Guide* .
365
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-jobconfig.html}
366
+ */
367
+ export type JobConfig = {
368
+ /**
369
+ * Specifies the size of the build instance. Amplify supports three instance sizes: `STANDARD_8GB` , `LARGE_16GB` , and `XLARGE_72GB` . If you don't specify a value, Amplify uses the `STANDARD_8GB` default.
370
+ *
371
+ * The following list describes the CPU, memory, and storage capacity for each build instance type:
372
+ *
373
+ * - **STANDARD_8GB** - - vCPUs: 4
374
+ * - Memory: 8 GiB
375
+ * - Disk space: 128 GB
376
+ * - **LARGE_16GB** - - vCPUs: 8
377
+ * - Memory: 16 GiB
378
+ * - Disk space: 128 GB
379
+ * - **XLARGE_72GB** - - vCPUs: 36
380
+ * - Memory: 72 GiB
381
+ * - Disk space: 256 GB
382
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-app-jobconfig.html#cfn-amplify-app-jobconfig-buildcomputetype}
383
+ */
384
+ BuildComputeType: "STANDARD_8GB" | "LARGE_16GB" | "XLARGE_72GB";
385
+ };
356
386
  //# sourceMappingURL=aws-amplify-app.d.ts.map
@@ -30,7 +30,7 @@ export type CleanRoomsCollaborationProps = {
30
30
  * *Allowed values* `CAN_QUERY` | `CAN_RECEIVE_RESULTS` | `CAN_RUN_JOB`
31
31
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatormemberabilities}
32
32
  */
33
- CreatorMemberAbilities: MemberAbility[];
33
+ CreatorMemberAbilities?: MemberAbility[] | undefined;
34
34
  /**
35
35
  * An object representing the collaboration member's payment responsibilities set by the collaboration creator.
36
36
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-creatorpaymentconfiguration}
@@ -60,7 +60,7 @@ export type CleanRoomsCollaborationProps = {
60
60
  * A list of initial members, not including the creator. This list is immutable.
61
61
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-members}
62
62
  */
63
- Members: MemberSpecification[];
63
+ Members?: MemberSpecification[] | undefined;
64
64
  /**
65
65
  * A human-readable identifier provided by the collaboration owner. Display names are not unique.
66
66
  * @minLength 1
@@ -222,7 +222,7 @@ export type MemberSpecification = {
222
222
  * *Allowed Values* : `CAN_QUERY` | `CAN_RECEIVE_RESULTS`
223
223
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-memberspecification.html#cfn-cleanrooms-collaboration-memberspecification-memberabilities}
224
224
  */
225
- MemberAbilities: MemberAbility[];
225
+ MemberAbilities?: MemberAbility[] | undefined;
226
226
  /**
227
227
  * The collaboration member's payment responsibilities set by the collaboration creator.
228
228
  *
@@ -9,6 +9,10 @@ export type ConnectEvaluationForm = ResourceDefinitionWithAttributes<"AWS::Conne
9
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html}
10
10
  */
11
11
  export type ConnectEvaluationFormProps = {
12
+ /**
13
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-evaluationform.html#cfn-connect-evaluationform-autoevaluationconfiguration}
14
+ */
15
+ AutoEvaluationConfiguration?: AutoEvaluationConfiguration | undefined;
12
16
  /**
13
17
  * The description of the evaluation form.
14
18
  *
@@ -69,6 +73,16 @@ export type ConnectEvaluationFormAttribs = {
69
73
  */
70
74
  EvaluationFormArn: string;
71
75
  };
76
+ /**
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html}
78
+ */
79
+ export type AutoEvaluationConfiguration = {
80
+ /**
81
+ * Auto Evaluation enablement status.
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html#cfn-connect-evaluationform-autoevaluationconfiguration-enabled}
83
+ */
84
+ Enabled?: boolean | undefined;
85
+ };
72
86
  /**
73
87
  * An item at the root level. All items must be sections.
74
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformbaseitem.html}
@@ -101,11 +115,15 @@ export type EvaluationFormItem = {
101
115
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
102
116
  */
103
117
  export type EvaluationFormNumericQuestionAutomation = {
118
+ /**
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html#cfn-connect-evaluationform-evaluationformnumericquestionautomation-answersource}
120
+ */
121
+ AnswerSource?: unknown;
104
122
  /**
105
123
  * The property value of the automation.
106
124
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html#cfn-connect-evaluationform-evaluationformnumericquestionautomation-propertyvalue}
107
125
  */
108
- PropertyValue: NumericQuestionPropertyValueAutomation;
126
+ PropertyValue?: NumericQuestionPropertyValueAutomation | undefined;
109
127
  };
110
128
  /**
111
129
  * Information about the option range used for scoring in numeric questions.
@@ -384,7 +402,7 @@ export type NumericQuestionPropertyValueAutomation = {
384
402
  * The property label of the automation.
385
403
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-numericquestionpropertyvalueautomation.html#cfn-connect-evaluationform-numericquestionpropertyvalueautomation-label}
386
404
  */
387
- 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";
405
+ 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";
388
406
  };
389
407
  /**
390
408
  * A scoring strategy of the evaluation form.
@@ -339,6 +339,11 @@ export type ProfileAttributes = {
339
339
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html#cfn-customerprofiles-segmentdefinition-profileattributes-phonenumber}
340
340
  */
341
341
  PhoneNumber?: ProfileDimension | undefined;
342
+ /**
343
+ * Specifies profile type based criteria for a segment.
344
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html#cfn-customerprofiles-segmentdefinition-profileattributes-profiletype}
345
+ */
346
+ ProfileType?: ProfileTypeDimension | undefined;
342
347
  /**
343
348
  * A field to describe values to segment on within shipping address.
344
349
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html#cfn-customerprofiles-segmentdefinition-profileattributes-shippingaddress}
@@ -360,6 +365,31 @@ export type ProfileDimension = {
360
365
  */
361
366
  Values: string[];
362
367
  };
368
+ /**
369
+ * The type of profile.
370
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletype.html}
371
+ */
372
+ export type ProfileType = "ACCOUNT_PROFILE" | "PROFILE";
373
+ /**
374
+ * Specifies profile type based criteria for a segment.
375
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html}
376
+ */
377
+ export type ProfileTypeDimension = {
378
+ /**
379
+ * The type of segment dimension to use for a profile type dimension.
380
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html#cfn-customerprofiles-segmentdefinition-profiletypedimension-dimensiontype}
381
+ */
382
+ DimensionType: ProfileTypeDimensionType;
383
+ /**
384
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html#cfn-customerprofiles-segmentdefinition-profiletypedimension-values}
385
+ */
386
+ Values: ProfileType[];
387
+ };
388
+ /**
389
+ * The type of segment dimension to use for a profile type dimension.
390
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimensiontype.html}
391
+ */
392
+ export type ProfileTypeDimensionType = "INCLUSIVE" | "EXCLUSIVE";
363
393
  /**
364
394
  * Overrides the original range on a calculated attribute definition.
365
395
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-rangeoverride.html}
@@ -27,6 +27,10 @@ export type DataZoneProjectProfileProps = {
27
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainunitidentifier}
28
28
  */
29
29
  DomainUnitIdentifier?: string | undefined;
30
+ /**
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-environmentconfigurations}
32
+ */
33
+ EnvironmentConfigurations?: EnvironmentConfiguration[] | undefined;
30
34
  /**
31
35
  * The name of a project profile.
32
36
  * @minLength 1
@@ -88,6 +92,103 @@ export type DataZoneProjectProfileAttribs = {
88
92
  */
89
93
  LastUpdatedAt: string;
90
94
  };
95
+ /**
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html}
97
+ */
98
+ export type AwsAccount = {
99
+ /**
100
+ * @pattern ^\d{12}$
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html#cfn-datazone-projectprofile-awsaccount-awsaccountid}
102
+ */
103
+ AwsAccountId: string;
104
+ };
105
+ /**
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-deploymentmode.html}
107
+ */
108
+ export type DeploymentMode = "ON_CREATE" | "ON_DEMAND";
109
+ /**
110
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html}
111
+ */
112
+ export type EnvironmentConfiguration = {
113
+ /**
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-awsaccount}
115
+ */
116
+ AwsAccount?: AwsAccount | undefined;
117
+ /**
118
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-awsregion}
119
+ */
120
+ AwsRegion: Region;
121
+ /**
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-configurationparameters}
123
+ */
124
+ ConfigurationParameters?: EnvironmentConfigurationParametersDetails | undefined;
125
+ /**
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-deploymentmode}
127
+ */
128
+ DeploymentMode?: DeploymentMode | undefined;
129
+ /**
130
+ * @min 0
131
+ * @max 16
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-deploymentorder}
133
+ */
134
+ DeploymentOrder?: number | undefined;
135
+ /**
136
+ * @maxLength 2048
137
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-description}
138
+ */
139
+ Description?: string | undefined;
140
+ /**
141
+ * @pattern ^[a-zA-Z0-9_-]{1,36}$
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-environmentblueprintid}
143
+ */
144
+ EnvironmentBlueprintId: string;
145
+ /**
146
+ * @minLength 1
147
+ * @maxLength 64
148
+ * @pattern ^[\w -]+$
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-name}
150
+ */
151
+ Name: string;
152
+ };
153
+ /**
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html}
155
+ */
156
+ export type EnvironmentConfigurationParameter = {
157
+ /**
158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-iseditable}
159
+ */
160
+ IsEditable?: boolean | undefined;
161
+ /**
162
+ * @pattern ^[a-zA-Z_][a-zA-Z0-9_]*$
163
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-name}
164
+ */
165
+ Name?: string | undefined;
166
+ /**
167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-value}
168
+ */
169
+ Value?: string | undefined;
170
+ };
171
+ /**
172
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html}
173
+ */
174
+ export type EnvironmentConfigurationParametersDetails = {
175
+ /**
176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-parameteroverrides}
177
+ */
178
+ ParameterOverrides?: EnvironmentConfigurationParameter[] | undefined;
179
+ };
180
+ /**
181
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html}
182
+ */
183
+ export type Region = {
184
+ /**
185
+ * @minLength 4
186
+ * @maxLength 16
187
+ * @pattern ^[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]$
188
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html#cfn-datazone-projectprofile-region-regionname}
189
+ */
190
+ RegionName: string;
191
+ };
91
192
  /**
92
193
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-status.html}
93
194
  */
@@ -144,7 +144,7 @@ export type AcceleratorSelection = {
144
144
  /**
145
145
  * The name of the chip used by the GPU accelerator.
146
146
  *
147
- * If you specify `l4` as the name of the accelerator, you must specify `latest` or `grid:r550` as the runtime.
147
+ * If you specify `l4` as the name of the accelerator, you must specify `latest` or `grid:r570` as the runtime.
148
148
  *
149
149
  * The available GPU accelerators are:
150
150
  *
@@ -161,6 +161,7 @@ export type AcceleratorSelection = {
161
161
  * You can choose from the following runtimes:
162
162
  *
163
163
  * - `latest` - Use the latest runtime available for the chip. If you specify `latest` and a new version of the runtime is released, the new version of the runtime is used.
164
+ * - `grid:r570` - [NVIDIA vGPU software 18](https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/18.0/index.html)
164
165
  * - `grid:r550` - [NVIDIA vGPU software 17](https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/17.0/index.html)
165
166
  * - `grid:r535` - [NVIDIA vGPU software 16](https://docs.aws.amazon.com/https://docs.nvidia.com/vgpu/16.0/index.html)
166
167
  *
@@ -28,7 +28,7 @@ export type EC2TrafficMirrorFilterProps = {
28
28
  * Valid values are `amazon-dns` .
29
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-networkservices}
30
30
  */
31
- NetworkServices?: string[] | undefined;
31
+ NetworkServices?: TrafficMirrorNetworkService[] | undefined;
32
32
  /**
33
33
  * The tags to assign to a Traffic Mirror filter.
34
34
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-tags}
@@ -40,8 +40,14 @@ export type EC2TrafficMirrorFilterProps = {
40
40
  */
41
41
  export type EC2TrafficMirrorFilterAttribs = {
42
42
  /**
43
+ * The ID of a traffic mirror filter.
43
44
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-id}
44
45
  */
45
46
  Id: string;
46
47
  };
48
+ /**
49
+ * The network service traffic that is associated with the traffic mirror filter.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilter-trafficmirrornetworkservice.html}
51
+ */
52
+ export type TrafficMirrorNetworkService = "amazon-dns";
47
53
  //# sourceMappingURL=aws-ec2-trafficmirrorfilter.d.ts.map
@@ -34,7 +34,7 @@ export type ECRRepositoryCreationTemplateProps = {
34
34
  */
35
35
  EncryptionConfiguration?: EncryptionConfiguration | undefined;
36
36
  /**
37
- * The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
37
+ * The tag mutability setting for the repository. If this parameter is omitted, the default setting of `MUTABLE` will be used which will allow image tags to be overwritten. If `IMMUTABLE` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
38
38
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html#cfn-ecr-repositorycreationtemplate-imagetagmutability}
39
39
  */
40
40
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | undefined;
@@ -2,14 +2,72 @@ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
3
  * The `AWS::ECS::Service` resource creates an Amazon Elastic Container Service (Amazon ECS) service that runs and maintains the requested number of tasks and associated load balancers.
4
4
  *
5
- * > The stack update fails if you change any properties that require replacement and at least one Amazon ECS Service Connect `ServiceConnectConfiguration` property is configured. This is because AWS CloudFormation creates the replacement service first, but each `ServiceConnectService` must have a name that is unique in the namespace. > Starting April 15, 2023, AWS ; will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS , or Amazon EC2 . However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
5
+ * > The stack update fails if you change any properties that require replacement and at least one Amazon ECS Service Connect `ServiceConnectConfiguration` property is configured. This is because AWS CloudFormation creates the replacement service first, but each `ServiceConnectService` must have a name that is unique in the namespace. > Starting April 15, 2023, AWS ; will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS , or Amazon EC2 . However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service. > On June 12, 2025, Amazon ECS launched support for updating capacity provider configuration for Amazon ECS services. With this launch, Amazon ECS also aligned the AWS CloudFormation update behavior for `CapacityProviderStrategy` parameter with the standard practice. For more information, see [Amazon ECS adds support for updating capacity provider configuration for ECS services](https://docs.aws.amazon.com/about-aws/whats-new/2025/05/amazon-ecs-capacity-provider-configuration-ecs/) . Previously Amazon ECS ignored the `CapacityProviderStrategy` property if it was set to an empty list for example, `[]` in AWS CloudFormation , because updating capacity provider configuration was not supported. Now, with support for capacity provider updates, customers can remove capacity providers from a service by passing an empty list. When you specify an empty list ( `[]` ) for the `CapacityProviderStrategy` property in your AWS CloudFormation template, Amazon ECS will remove any capacity providers associated with the service, as follows:
6
+ * >
7
+ * > - For services created with a capacity provider strategy after the launch:
8
+ * >
9
+ * > - If there's a cluster default strategy set, the service will revert to using that default strategy.
10
+ * > - If no cluster default strategy exists, you will receive the following error:
11
+ * >
12
+ * > No launch type to fall back to for empty capacity provider strategy. Your service was not created with a launch type.
13
+ * > - For services created with a capacity provider strategy prior to the launch:
14
+ * >
15
+ * > - If `CapacityProviderStrategy` had `FARGATE_SPOT` or `FARGATE` capacity providers, the launch type will be updated to `FARGATE` and the capacity provider will be removed.
16
+ * > - If the strategy included Auto Scaling group capacity providers, the service will revert to EC2 launch type, and the Auto Scaling group capacity providers will not be used.
17
+ * >
18
+ * > Recommended Actions
19
+ * >
20
+ * > If you are currently using `CapacityProviderStrategy: []` in your AWS CloudFormation templates, you should take one of the following actions:
21
+ * >
22
+ * > - If you do not intend to update the Capacity Provider Strategy:
23
+ * >
24
+ * > - Remove the `CapacityProviderStrategy` property entirely from your AWS CloudFormation template
25
+ * > - Alternatively, use `!Ref AWS ::NoValue` for the `CapacityProviderStrategy` property in your template
26
+ * > - If you intend to maintain or update the Capacity Provider Strategy, specify the actual Capacity Provider Strategy for the service in your AWS CloudFormation template.
27
+ * >
28
+ * > If your AWS CloudFormation template had an empty list ([]) for `CapacityProviderStrategy` prior to the aforementioned launch on June 12, and you are using the same template with `CapacityProviderStrategy: []` , you might encounter the following error:
29
+ * >
30
+ * > Invalid request provided: When switching from launch type to capacity provider strategy on an existing service, or making a change to a capacity provider strategy on a service that is already using one, you must force a new deployment. (Service: Ecs, Status Code: 400, Request ID: xxx) (SDK Attempt Count: 1)" (RequestToken: xxx HandlerErrorCode: InvalidRequest)
31
+ * >
32
+ * > Note that AWS CloudFormation automatically initiates a new deployment when it detects a parameter change, but customers cannot choose to force a deployment through AWS CloudFormation . This is an invalid input scenario that requires one of the remediation actions listed above.
33
+ * >
34
+ * > If you are experiencing active production issues related to this change, contact AWS Support or your Technical Account Manager.
6
35
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
7
36
  */
8
37
  export type ECSService = ResourceDefinitionWithAttributes<"AWS::ECS::Service", ECSServiceProps, ECSServiceAttribs>;
9
38
  /**
10
39
  * The `AWS::ECS::Service` resource creates an Amazon Elastic Container Service (Amazon ECS) service that runs and maintains the requested number of tasks and associated load balancers.
11
40
  *
12
- * > The stack update fails if you change any properties that require replacement and at least one Amazon ECS Service Connect `ServiceConnectConfiguration` property is configured. This is because AWS CloudFormation creates the replacement service first, but each `ServiceConnectService` must have a name that is unique in the namespace. > Starting April 15, 2023, AWS ; will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS , or Amazon EC2 . However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
41
+ * > The stack update fails if you change any properties that require replacement and at least one Amazon ECS Service Connect `ServiceConnectConfiguration` property is configured. This is because AWS CloudFormation creates the replacement service first, but each `ServiceConnectService` must have a name that is unique in the namespace. > Starting April 15, 2023, AWS ; will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS , or Amazon EC2 . However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service. > On June 12, 2025, Amazon ECS launched support for updating capacity provider configuration for Amazon ECS services. With this launch, Amazon ECS also aligned the AWS CloudFormation update behavior for `CapacityProviderStrategy` parameter with the standard practice. For more information, see [Amazon ECS adds support for updating capacity provider configuration for ECS services](https://docs.aws.amazon.com/about-aws/whats-new/2025/05/amazon-ecs-capacity-provider-configuration-ecs/) . Previously Amazon ECS ignored the `CapacityProviderStrategy` property if it was set to an empty list for example, `[]` in AWS CloudFormation , because updating capacity provider configuration was not supported. Now, with support for capacity provider updates, customers can remove capacity providers from a service by passing an empty list. When you specify an empty list ( `[]` ) for the `CapacityProviderStrategy` property in your AWS CloudFormation template, Amazon ECS will remove any capacity providers associated with the service, as follows:
42
+ * >
43
+ * > - For services created with a capacity provider strategy after the launch:
44
+ * >
45
+ * > - If there's a cluster default strategy set, the service will revert to using that default strategy.
46
+ * > - If no cluster default strategy exists, you will receive the following error:
47
+ * >
48
+ * > No launch type to fall back to for empty capacity provider strategy. Your service was not created with a launch type.
49
+ * > - For services created with a capacity provider strategy prior to the launch:
50
+ * >
51
+ * > - If `CapacityProviderStrategy` had `FARGATE_SPOT` or `FARGATE` capacity providers, the launch type will be updated to `FARGATE` and the capacity provider will be removed.
52
+ * > - If the strategy included Auto Scaling group capacity providers, the service will revert to EC2 launch type, and the Auto Scaling group capacity providers will not be used.
53
+ * >
54
+ * > Recommended Actions
55
+ * >
56
+ * > If you are currently using `CapacityProviderStrategy: []` in your AWS CloudFormation templates, you should take one of the following actions:
57
+ * >
58
+ * > - If you do not intend to update the Capacity Provider Strategy:
59
+ * >
60
+ * > - Remove the `CapacityProviderStrategy` property entirely from your AWS CloudFormation template
61
+ * > - Alternatively, use `!Ref AWS ::NoValue` for the `CapacityProviderStrategy` property in your template
62
+ * > - If you intend to maintain or update the Capacity Provider Strategy, specify the actual Capacity Provider Strategy for the service in your AWS CloudFormation template.
63
+ * >
64
+ * > If your AWS CloudFormation template had an empty list ([]) for `CapacityProviderStrategy` prior to the aforementioned launch on June 12, and you are using the same template with `CapacityProviderStrategy: []` , you might encounter the following error:
65
+ * >
66
+ * > Invalid request provided: When switching from launch type to capacity provider strategy on an existing service, or making a change to a capacity provider strategy on a service that is already using one, you must force a new deployment. (Service: Ecs, Status Code: 400, Request ID: xxx) (SDK Attempt Count: 1)" (RequestToken: xxx HandlerErrorCode: InvalidRequest)
67
+ * >
68
+ * > Note that AWS CloudFormation automatically initiates a new deployment when it detects a parameter change, but customers cannot choose to force a deployment through AWS CloudFormation . This is an invalid input scenario that requires one of the remediation actions listed above.
69
+ * >
70
+ * > If you are experiencing active production issues related to this change, contact AWS Support or your Technical Account Manager.
13
71
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
14
72
  */
15
73
  export type ECSServiceProps = {
@@ -33,6 +33,10 @@ export type InspectorV2FilterProps = {
33
33
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspectorv2-filter.html#cfn-inspectorv2-filter-name}
34
34
  */
35
35
  Name: string;
36
+ /**
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspectorv2-filter.html#cfn-inspectorv2-filter-tags}
38
+ */
39
+ Tags?: Record<string, string> | undefined;
36
40
  };
37
41
  /**
38
42
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspectorv2-filter.html#aws-resource-inspectorv2-filter-return-values}
@@ -76,6 +80,18 @@ export type FilterCriteria = {
76
80
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-awsaccountid}
77
81
  */
78
82
  AwsAccountId?: StringFilter[] | undefined;
83
+ /**
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-codevulnerabilitydetectorname}
85
+ */
86
+ CodeVulnerabilityDetectorName?: StringFilter[] | undefined;
87
+ /**
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-codevulnerabilitydetectortags}
89
+ */
90
+ CodeVulnerabilityDetectorTags?: StringFilter[] | undefined;
91
+ /**
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-codevulnerabilityfilepath}
93
+ */
94
+ CodeVulnerabilityFilePath?: StringFilter[] | undefined;
79
95
  /**
80
96
  * Details of the component IDs used to filter findings.
81
97
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-componentid}
@@ -131,6 +147,14 @@ export type FilterCriteria = {
131
147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-ecrimagetags}
132
148
  */
133
149
  EcrImageTags?: StringFilter[] | undefined;
150
+ /**
151
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-epssscore}
152
+ */
153
+ EpssScore?: NumberFilter[] | undefined;
154
+ /**
155
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-exploitavailable}
156
+ */
157
+ ExploitAvailable?: StringFilter[] | undefined;
134
158
  /**
135
159
  * Details on the finding ARNs used to filter findings.
136
160
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-findingarn}
@@ -151,11 +175,35 @@ export type FilterCriteria = {
151
175
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-firstobservedat}
152
176
  */
153
177
  FirstObservedAt?: DateFilter[] | undefined;
178
+ /**
179
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-fixavailable}
180
+ */
181
+ FixAvailable?: StringFilter[] | undefined;
154
182
  /**
155
183
  * The Amazon Inspector score to filter on.
156
184
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-inspectorscore}
157
185
  */
158
186
  InspectorScore?: NumberFilter[] | undefined;
187
+ /**
188
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionexecutionrolearn}
189
+ */
190
+ LambdaFunctionExecutionRoleArn?: StringFilter[] | undefined;
191
+ /**
192
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionlastmodifiedat}
193
+ */
194
+ LambdaFunctionLastModifiedAt?: DateFilter[] | undefined;
195
+ /**
196
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionlayers}
197
+ */
198
+ LambdaFunctionLayers?: StringFilter[] | undefined;
199
+ /**
200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionname}
201
+ */
202
+ LambdaFunctionName?: StringFilter[] | undefined;
203
+ /**
204
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionruntime}
205
+ */
206
+ LambdaFunctionRuntime?: StringFilter[] | undefined;
159
207
  /**
160
208
  * Details on the date and time a finding was last seen used to filter findings.
161
209
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lastobservedat}
@@ -283,6 +331,10 @@ export type PackageFilter = {
283
331
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-epoch}
284
332
  */
285
333
  Epoch?: NumberFilter | undefined;
334
+ /**
335
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-filepath}
336
+ */
337
+ FilePath?: StringFilter | undefined;
286
338
  /**
287
339
  * An object that contains details on the name of the package to filter on.
288
340
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-name}
@@ -293,6 +345,10 @@ export type PackageFilter = {
293
345
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-release}
294
346
  */
295
347
  Release?: StringFilter | undefined;
348
+ /**
349
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-sourcelambdalayerarn}
350
+ */
351
+ SourceLambdaLayerArn?: StringFilter | undefined;
296
352
  /**
297
353
  * An object that contains details on the source layer hash to filter on.
298
354
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-sourcelayerhash}