@propulsionworks/cloudformation 0.1.11 → 0.1.12

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-amplify-app.d.ts +2 -2
  2. package/out/exports/resources.generated/aws-apigateway-method.d.ts +1 -1
  3. package/out/exports/resources.generated/aws-appsync-apicache.d.ts +4 -0
  4. package/out/exports/resources.generated/aws-athena-workgroup.d.ts +37 -0
  5. package/out/exports/resources.generated/aws-bedrock-flow.d.ts +48 -21
  6. package/out/exports/resources.generated/aws-connect-emailaddress.d.ts +1 -1
  7. package/out/exports/resources.generated/aws-connect-queue.d.ts +1 -1
  8. package/out/exports/resources.generated/aws-customerprofiles-calculatedattributedefinition.d.ts +50 -1
  9. package/out/exports/resources.generated/aws-customerprofiles-objecttype.d.ts +13 -1
  10. package/out/exports/resources.generated/aws-customerprofiles-segmentdefinition.d.ts +4 -4
  11. package/out/exports/resources.generated/aws-deadline-fleet.d.ts +1 -0
  12. package/out/exports/resources.generated/aws-dsql-cluster.d.ts +17 -9
  13. package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +55 -0
  14. package/out/exports/resources.generated/aws-ec2-egressonlyinternetgateway.d.ts +6 -1
  15. package/out/exports/resources.generated/aws-efs-mounttarget.d.ts +15 -3
  16. package/out/exports/resources.generated/aws-eks-addon.d.ts +3 -3
  17. package/out/exports/resources.generated/aws-eks-cluster.d.ts +14 -12
  18. package/out/exports/resources.generated/aws-eks-podidentityassociation.d.ts +24 -2
  19. package/out/exports/resources.generated/aws-entityresolution-matchingworkflow.d.ts +15 -5
  20. package/out/exports/resources.generated/aws-evs-environment.d.ts +62 -7
  21. package/out/exports/resources.generated/aws-fis-experimenttemplate.d.ts +1 -1
  22. package/out/exports/resources.generated/aws-kms-key.d.ts +1 -1
  23. package/out/exports/resources.generated/aws-lambda-eventinvokeconfig.d.ts +4 -2
  24. package/out/exports/resources.generated/aws-lambda-eventsourcemapping.d.ts +2 -2
  25. package/out/exports/resources.generated/aws-msk-cluster.d.ts +15 -1
  26. package/out/exports/resources.generated/aws-mwaa-environment.d.ts +10 -0
  27. package/out/exports/resources.generated/aws-networkfirewall-loggingconfiguration.d.ts +4 -0
  28. package/out/exports/resources.generated/aws-networkfirewall-vpcendpointassociation.d.ts +38 -6
  29. package/out/exports/resources.generated/aws-opsworkscm-server.d.ts +5 -5
  30. package/out/exports/resources.generated/aws-sagemaker-domain.d.ts +65 -0
  31. package/out/exports/resources.generated/aws-wafv2-rulegroup.d.ts +23 -1
  32. package/out/exports/resources.generated/aws-wafv2-webacl.d.ts +111 -4
  33. package/package.json +1 -1
@@ -1,33 +1,54 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * An environment created within the EVS service
3
+ * > Amazon EVS is in public preview release and is subject to change.
4
+ *
5
+ * Creates an Amazon EVS environment that runs VCF software, such as SDDC Manager, NSX Manager, and vCenter Server.
6
+ *
7
+ * During environment creation, Amazon EVS performs validations on DNS settings, provisions VLAN subnets and hosts, and deploys the supplied version of VCF.
8
+ *
9
+ * It can take several hours to create an environment. After the deployment completes, you can configure VCF in the vSphere user interface according to your needs.
10
+ *
11
+ * > You cannot use the `dedicatedHostId` and `placementGroupId` parameters together in the same `CreateEnvironment` action. This results in a `ValidationException` response.
4
12
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html}
5
13
  */
6
14
  export type EVSEnvironment = ResourceDefinitionWithAttributes<"AWS::EVS::Environment", EVSEnvironmentProps, EVSEnvironmentAttribs>;
7
15
  /**
8
- * An environment created within the EVS service
16
+ * > Amazon EVS is in public preview release and is subject to change.
17
+ *
18
+ * Creates an Amazon EVS environment that runs VCF software, such as SDDC Manager, NSX Manager, and vCenter Server.
19
+ *
20
+ * During environment creation, Amazon EVS performs validations on DNS settings, provisions VLAN subnets and hosts, and deploys the supplied version of VCF.
21
+ *
22
+ * It can take several hours to create an environment. After the deployment completes, you can configure VCF in the vSphere user interface according to your needs.
23
+ *
24
+ * > You cannot use the `dedicatedHostId` and `placementGroupId` parameters together in the same `CreateEnvironment` action. This results in a `ValidationException` response.
9
25
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html}
10
26
  */
11
27
  export type EVSEnvironmentProps = {
12
28
  /**
29
+ * The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.
13
30
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-connectivityinfo}
14
31
  */
15
32
  ConnectivityInfo: {
16
33
  PrivateRouteServerPeerings: string[];
17
34
  };
18
35
  /**
19
- * The name of an EVS environment
36
+ * The name of the environment.
20
37
  * @pattern ^[a-zA-Z0-9_-]{1,100}$
21
38
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-environmentname}
22
39
  */
23
40
  EnvironmentName?: string | undefined;
24
41
  /**
25
- * The initial hosts for environment only required upon creation. Modification after creation will have no effect
42
+ * Required for environment resource creation.
26
43
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-hosts}
27
44
  */
28
45
  Hosts?: HostInfoForCreate[] | undefined;
29
46
  /**
30
- * The initial Vlan configuration only required upon creation. Modification after creation will have no effect
47
+ * > Amazon EVS is in public preview release and is subject to change.
48
+ *
49
+ * The initial VLAN subnets for the environment. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.
50
+ *
51
+ * Required for environment resource creation.
31
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-initialvlans}
32
53
  */
33
54
  InitialVlans?: {
@@ -43,11 +64,14 @@ export type EVSEnvironmentProps = {
43
64
  VmkManagement: InitialVlanInfo;
44
65
  } | undefined;
45
66
  /**
67
+ * The AWS KMS key ID that AWS Secrets Manager uses to encrypt secrets that are associated with the environment. These secrets contain the VCF credentials that are needed to install vCenter Server, NSX, and SDDC Manager.
68
+ *
69
+ * By default, Amazon EVS use the AWS Secrets Manager managed key `aws/secretsmanager` . You can also specify a customer managed key.
46
70
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-kmskeyid}
47
71
  */
48
72
  KmsKeyId?: string | undefined;
49
73
  /**
50
- * The license information for an EVS environment
74
+ * The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
51
75
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-licenseinfo}
52
76
  */
53
77
  LicenseInfo: {
@@ -61,12 +85,14 @@ export type EVSEnvironmentProps = {
61
85
  VsanKey: string;
62
86
  };
63
87
  /**
88
+ * The security groups that allow traffic between the Amazon EVS control plane and your VPC for service access. If a security group is not specified, Amazon EVS uses the default security group in your account for service access.
64
89
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-serviceaccesssecuritygroups}
65
90
  */
66
91
  ServiceAccessSecurityGroups?: {
67
92
  SecurityGroups?: string[] | undefined;
68
93
  } | undefined;
69
94
  /**
95
+ * The subnet that is used to establish connectivity between the Amazon EVS control plane and VPC. Amazon EVS uses this subnet to perform validations and create the environment.
70
96
  * @minLength 15
71
97
  * @maxLength 24
72
98
  * @pattern ^subnet-[a-f0-9]{8}([a-f0-9]{9})?$
@@ -74,19 +100,24 @@ export type EVSEnvironmentProps = {
74
100
  */
75
101
  ServiceAccessSubnetId: string;
76
102
  /**
103
+ * The Broadcom Site ID that is associated with your Amazon EVS environment. Amazon EVS uses the Broadcom Site ID that you provide to meet Broadcom VCF license usage reporting requirements for Amazon EVS.
77
104
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-siteid}
78
105
  */
79
106
  SiteId: string;
80
107
  /**
81
- * An array of key-value pairs to apply to this resource.
108
+ * Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or AWS resources.
82
109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-tags}
83
110
  */
84
111
  Tags?: Tag[] | undefined;
85
112
  /**
113
+ * Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance.
86
114
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-termsaccepted}
87
115
  */
88
116
  TermsAccepted: boolean;
89
117
  /**
118
+ * The DNS hostnames to be used by the VCF management appliances in your environment.
119
+ *
120
+ * For environment creation to be successful, each hostname entry must resolve to a domain name that you've registered in your DNS service of choice and configured in the DHCP option set of your VPC. DNS hostnames cannot be changed after environment creation has started.
90
121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-vcfhostnames}
91
122
  */
92
123
  VcfHostnames: {
@@ -101,10 +132,12 @@ export type EVSEnvironmentProps = {
101
132
  VCenter: string;
102
133
  };
103
134
  /**
135
+ * The VCF version of the environment.
104
136
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-vcfversion}
105
137
  */
106
138
  VcfVersion: "VCF-5.2.1";
107
139
  /**
140
+ * The VPC associated with the environment.
108
141
  * @minLength 12
109
142
  * @maxLength 21
110
143
  * @pattern ^vpc-[a-f0-9]{8}([a-f0-9]{9})?$
@@ -117,10 +150,12 @@ export type EVSEnvironmentProps = {
117
150
  */
118
151
  export type EVSEnvironmentAttribs = {
119
152
  /**
153
+ * The date and time that the environment was created. For example: `1749081600.000` .
120
154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-createdat}
121
155
  */
122
156
  CreatedAt: string;
123
157
  /**
158
+ * The Amazon Resource Name (ARN) that is associated with the environment. For example: `arn:aws:evs:us-east-1:000000000000:environment/env-1234567890` .
124
159
  * @minLength 1
125
160
  * @maxLength 1011
126
161
  * @pattern ^arn:aws:evs:[a-z]{2}-[a-z]+-[0-9]:[0-9]{12}:environment/[a-zA-Z0-9_-]+$
@@ -128,19 +163,23 @@ export type EVSEnvironmentAttribs = {
128
163
  */
129
164
  EnvironmentArn: string;
130
165
  /**
166
+ * The unique ID for the environment. For example: `env-1234567890` .
131
167
  * @pattern ^(env-[a-zA-Z0-9]{10})$
132
168
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-environmentid}
133
169
  */
134
170
  EnvironmentId: string;
135
171
  /**
172
+ * The state of an environment. For example: `CREATED` .
136
173
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-environmentstate}
137
174
  */
138
175
  EnvironmentState: EnvironmentState;
139
176
  /**
177
+ * The date and time that the environment was modified. For example: `1749081600.000` .
140
178
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-modifiedat}
141
179
  */
142
180
  ModifiedAt: string;
143
181
  /**
182
+ * A detailed description of the `environmentState` of an environment. For example: `Environment successfully created` .
144
183
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-statedetails}
145
184
  */
146
185
  StateDetails: string;
@@ -150,10 +189,16 @@ export type EVSEnvironmentAttribs = {
150
189
  */
151
190
  export type EnvironmentState = "CREATING" | "CREATED" | "DELETING" | "DELETED" | "CREATE_FAILED";
152
191
  /**
192
+ * > Amazon EVS is in public preview release and is subject to change.
193
+ *
194
+ * An object that represents a host.
195
+ *
196
+ * > You cannot use `dedicatedHostId` and `placementGroupId` together in the same `HostInfoForCreate` object. This results in a `ValidationException` response.
153
197
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-hostinfoforcreate.html}
154
198
  */
155
199
  export type HostInfoForCreate = {
156
200
  /**
201
+ * The unique ID of the Amazon EC2 Dedicated Host.
157
202
  * @minLength 1
158
203
  * @maxLength 25
159
204
  * @pattern ^h-[a-f0-9]{8}([a-f0-9]{9})?$
@@ -161,14 +206,17 @@ export type HostInfoForCreate = {
161
206
  */
162
207
  DedicatedHostId?: string | undefined;
163
208
  /**
209
+ * The DNS hostname of the host. DNS hostnames for hosts must be unique across Amazon EVS environments and within VCF.
164
210
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-hostinfoforcreate.html#cfn-evs-environment-hostinfoforcreate-hostname}
165
211
  */
166
212
  HostName: string;
167
213
  /**
214
+ * The EC2 instance type that represents the host.
168
215
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-hostinfoforcreate.html#cfn-evs-environment-hostinfoforcreate-instancetype}
169
216
  */
170
217
  InstanceType: "i4i.metal";
171
218
  /**
219
+ * The name of the SSH key that is used to access the host.
172
220
  * @minLength 1
173
221
  * @maxLength 255
174
222
  * @pattern ^[a-zA-Z0-9_-]+$
@@ -176,6 +224,7 @@ export type HostInfoForCreate = {
176
224
  */
177
225
  KeyName: string;
178
226
  /**
227
+ * The unique ID of the placement group where the host is placed.
179
228
  * @minLength 1
180
229
  * @maxLength 25
181
230
  * @pattern ^pg-[a-f0-9]{8}([a-f0-9]{9})?$
@@ -184,10 +233,16 @@ export type HostInfoForCreate = {
184
233
  PlacementGroupId?: string | undefined;
185
234
  };
186
235
  /**
236
+ * > Amazon EVS is in public preview release and is subject to change.
237
+ *
238
+ * An object that represents an initial VLAN subnet for the Amazon EVS environment. Amazon EVS creates initial VLAN subnets when you first create the environment. Amazon EVS creates the following 10 VLAN subnets: host management VLAN, vMotion VLAN, vSAN VLAN, VTEP VLAN, Edge VTEP VLAN, Management VM VLAN, HCX uplink VLAN, NSX uplink VLAN, expansion VLAN 1, expansion VLAN 2.
239
+ *
240
+ * > For each Amazon EVS VLAN subnet, you must specify a non-overlapping CIDR block. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24.
187
241
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-initialvlaninfo.html}
188
242
  */
189
243
  export type InitialVlanInfo = {
190
244
  /**
245
+ * The CIDR block that you provide to create an Amazon EVS VLAN subnet. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.
191
246
  * @pattern ^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(3[0-2]|[1-2][0-9]|[0-9])$
192
247
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evs-environment-initialvlaninfo.html#cfn-evs-environment-initialvlaninfo-cidr}
193
248
  */
@@ -64,7 +64,7 @@ export type FISExperimentTemplateProps = {
64
64
  * The tags for the experiment template.
65
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fis-experimenttemplate.html#cfn-fis-experimenttemplate-tags}
66
66
  */
67
- Tags: Record<string, string>;
67
+ Tags?: Record<string, string> | undefined;
68
68
  /**
69
69
  * The targets for the experiment.
70
70
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fis-experimenttemplate.html#cfn-fis-experimenttemplate-targets}
@@ -142,7 +142,7 @@ export type KMSKeyProps = {
142
142
  * @default "SYMMETRIC_DEFAULT"
143
143
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyspec}
144
144
  */
145
- KeySpec?: "SYMMETRIC_DEFAULT" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | undefined;
145
+ KeySpec?: "SYMMETRIC_DEFAULT" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | undefined;
146
146
  /**
147
147
  * Determines the [cryptographic operations](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations) for which you can use the KMS key. The default value is `ENCRYPT_DECRYPT` . This property is required for asymmetric KMS keys and HMAC KMS keys. You can't change the `KeyUsage` value after the KMS key is created.
148
148
  *
@@ -64,7 +64,7 @@ export type LambdaEventInvokeConfigProps = {
64
64
  Qualifier: string;
65
65
  };
66
66
  /**
67
- * A configuration object that specifies the destination of an event after Lambda processes it.
67
+ * A configuration object that specifies the destination of an event after Lambda processes it. For more information, see [Adding a destination](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations) .
68
68
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-destinationconfig.html}
69
69
  */
70
70
  export type DestinationConfig = {
@@ -84,7 +84,7 @@ export type DestinationConfig = {
84
84
  OnSuccess?: OnSuccess | undefined;
85
85
  };
86
86
  /**
87
- * A destination for events that failed processing. See [Capturing records of Lambda asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html) for more information.
87
+ * A destination for events that failed processing. For more information, see [Adding a destination](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations) .
88
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-onfailure.html}
89
89
  */
90
90
  export type OnFailure = {
@@ -105,6 +105,8 @@ export type OnFailure = {
105
105
  * A destination for events that were processed successfully.
106
106
  *
107
107
  * To retain records of successful [asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations) , you can configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or Amazon EventBridge event bus as the destination.
108
+ *
109
+ * > `OnSuccess` is not supported in `CreateEventSourceMapping` or `UpdateEventSourceMapping` requests.
108
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventinvokeconfig-onsuccess.html}
109
111
  */
110
112
  export type OnSuccess = {
@@ -270,7 +270,7 @@ export type AmazonManagedKafkaEventSourceConfig = {
270
270
  SchemaRegistryConfig?: SchemaRegistryConfig | undefined;
271
271
  };
272
272
  /**
273
- * A configuration object that specifies the destination of an event after Lambda processes it.
273
+ * A configuration object that specifies the destination of an event after Lambda processes it. For more information, see [Adding a destination](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations) .
274
274
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-destinationconfig.html}
275
275
  */
276
276
  export type DestinationConfig = {
@@ -353,7 +353,7 @@ export type MetricsConfig = {
353
353
  Metrics?: "EventCount"[] | undefined;
354
354
  };
355
355
  /**
356
- * A destination for events that failed processing. See [Capturing records of Lambda asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html) for more information.
356
+ * A destination for events that failed processing. For more information, see [Adding a destination](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations) .
357
357
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html}
358
358
  */
359
359
  export type OnFailure = {
@@ -140,7 +140,21 @@ export type BrokerNodeGroupInfo = {
140
140
  */
141
141
  ConnectivityInfo?: ConnectivityInfo | undefined;
142
142
  /**
143
- * The type of Amazon EC2 instances to use for brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge, kafka.m5.24xlarge, and kafka.t3.small.
143
+ * The type of Amazon EC2 instances to use for brokers. Depending on the [broker type](https://docs.aws.amazon.com/msk/latest/developerguide/broker-instance-types.html) , Amazon MSK supports the following broker sizes:
144
+ *
145
+ * *Standard broker sizes*
146
+ *
147
+ * - kafka.t3.small
148
+ *
149
+ * > You can't select the kafka.t3.small instance type when the metadata mode is KRaft.
150
+ * - kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge, kafka.m5.4xlarge, kafka.m5.8xlarge, kafka.m5.12xlarge, kafka.m5.16xlarge, kafka.m5.24xlarge
151
+ * - kafka.m7g.large, kafka.m7g.xlarge, kafka.m7g.2xlarge, kafka.m7g.4xlarge, kafka.m7g.8xlarge, kafka.m7g.12xlarge, kafka.m7g.16xlarge
152
+ *
153
+ * *Express broker sizes*
154
+ *
155
+ * - express.m7g.large, express.m7g.xlarge, express.m7g.2xlarge, express.m7g.4xlarge, express.m7g.8xlarge, express.m7g.12xlarge, express.m7g.16xlarge
156
+ *
157
+ * > Some broker sizes might not be available in certian AWS Regions. See the updated [Pricing tools](https://docs.aws.amazon.com/msk/pricing/) section on the Amazon MSK pricing page for the latest list of available instances by Region.
144
158
  * @minLength 5
145
159
  * @maxLength 32
146
160
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokernodegroupinfo.html#cfn-msk-cluster-brokernodegroupinfo-instancetype}
@@ -157,6 +157,11 @@ export type MWAAEnvironmentProps = {
157
157
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-weeklymaintenancewindowstart}
158
158
  */
159
159
  WeeklyMaintenanceWindowStart?: string | undefined;
160
+ /**
161
+ * The worker replacement strategy to use when updating the environment. Valid values: `FORCED`, `GRACEFUL`. FORCED means Apache Airflow workers will be stopped and replaced without waiting for tasks to complete before an update. GRACEFUL means Apache Airflow workers will be able to complete running tasks for up to 12 hours during an update before being stopped and replaced.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-workerreplacementstrategy}
163
+ */
164
+ WorkerReplacementStrategy?: WorkerReplacementStrategy | undefined;
160
165
  };
161
166
  /**
162
167
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#aws-resource-mwaa-environment-return-values}
@@ -290,4 +295,9 @@ export type NetworkConfiguration = {
290
295
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaa-environment-webserveraccessmode.html}
291
296
  */
292
297
  export type WebserverAccessMode = "PRIVATE_ONLY" | "PUBLIC_ONLY";
298
+ /**
299
+ * The worker replacement strategy to use when updating the environment. Valid values: `FORCED`, `GRACEFUL`. FORCED means Apache Airflow workers will be stopped and replaced without waiting for tasks to complete before an update. GRACEFUL means Apache Airflow workers will be able to complete running tasks for up to 12 hours during an update before being stopped and replaced.
300
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaa-environment-workerreplacementstrategy.html}
301
+ */
302
+ export type WorkerReplacementStrategy = "FORCED" | "GRACEFUL";
293
303
  //# sourceMappingURL=aws-mwaa-environment.d.ts.map
@@ -29,6 +29,10 @@ export type NetworkFirewallLoggingConfiguration = ResourceDefinition<"AWS::Netwo
29
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-loggingconfiguration.html}
30
30
  */
31
31
  export type NetworkFirewallLoggingConfigurationProps = {
32
+ /**
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-loggingconfiguration.html#cfn-networkfirewall-loggingconfiguration-enablemonitoringdashboard}
34
+ */
35
+ EnableMonitoringDashboard?: boolean | undefined;
32
36
  /**
33
37
  * The Amazon Resource Name (ARN) of the `Firewall` that the logging configuration is associated with. You can't change the firewall specification after you create the logging configuration.
34
38
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-loggingconfiguration.html#cfn-networkfirewall-loggingconfiguration-firewallarn}
@@ -1,32 +1,62 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * Resource type definition for AWS::NetworkFirewall::VpcEndpointAssociation
3
+ * A VPC endpoint association defines a single subnet to use for a firewall endpoint for a `Firewall` . You can define VPC endpoint associations only in the Availability Zones that already have a subnet mapping defined in the `Firewall` resource.
4
+ *
5
+ * > You can retrieve the list of Availability Zones that are available for use by calling `DescribeFirewallMetadata` .
6
+ *
7
+ * To manage firewall endpoints, first, in the `Firewall` specification, you specify a single VPC and one subnet for each of the Availability Zones where you want to use the firewall. Then you can define additional endpoints as VPC endpoint associations.
8
+ *
9
+ * You can use VPC endpoint associations to expand the protections of the firewall as follows:
10
+ *
11
+ * - *Protect multiple VPCs with a single firewall* - You can use the firewall to protect other VPCs, either in your account or in accounts where the firewall is shared. You can only specify Availability Zones that already have a firewall endpoint defined in the `Firewall` subnet mappings.
12
+ * - *Define multiple firewall endpoints for a VPC in an Availability Zone* - You can create additional firewall endpoints for the VPC that you have defined in the firewall, in any Availability Zone that already has an endpoint defined in the `Firewall` subnet mappings. You can create multiple VPC endpoint associations for any other VPC where you use the firewall.
13
+ *
14
+ * You can use AWS Resource Access Manager to share a `Firewall` that you own with other accounts, which gives them the ability to use the firewall to create VPC endpoint associations. For information about sharing a firewall, see `PutResourcePolicy` in this guide and see [Sharing Network Firewall resources](https://docs.aws.amazon.com/network-firewall/latest/developerguide/sharing.html) in the *AWS Network Firewall Developer Guide* .
15
+ *
16
+ * The status of the VPC endpoint association, which indicates whether it's ready to filter network traffic, is provided in the corresponding `VpcEndpointAssociationStatus` . You can retrieve both the association and its status by calling `DescribeVpcEndpointAssociation` .
4
17
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html}
5
18
  */
6
19
  export type NetworkFirewallVpcEndpointAssociation = ResourceDefinitionWithAttributes<"AWS::NetworkFirewall::VpcEndpointAssociation", NetworkFirewallVpcEndpointAssociationProps, NetworkFirewallVpcEndpointAssociationAttribs>;
7
20
  /**
8
- * Resource type definition for AWS::NetworkFirewall::VpcEndpointAssociation
21
+ * A VPC endpoint association defines a single subnet to use for a firewall endpoint for a `Firewall` . You can define VPC endpoint associations only in the Availability Zones that already have a subnet mapping defined in the `Firewall` resource.
22
+ *
23
+ * > You can retrieve the list of Availability Zones that are available for use by calling `DescribeFirewallMetadata` .
24
+ *
25
+ * To manage firewall endpoints, first, in the `Firewall` specification, you specify a single VPC and one subnet for each of the Availability Zones where you want to use the firewall. Then you can define additional endpoints as VPC endpoint associations.
26
+ *
27
+ * You can use VPC endpoint associations to expand the protections of the firewall as follows:
28
+ *
29
+ * - *Protect multiple VPCs with a single firewall* - You can use the firewall to protect other VPCs, either in your account or in accounts where the firewall is shared. You can only specify Availability Zones that already have a firewall endpoint defined in the `Firewall` subnet mappings.
30
+ * - *Define multiple firewall endpoints for a VPC in an Availability Zone* - You can create additional firewall endpoints for the VPC that you have defined in the firewall, in any Availability Zone that already has an endpoint defined in the `Firewall` subnet mappings. You can create multiple VPC endpoint associations for any other VPC where you use the firewall.
31
+ *
32
+ * You can use AWS Resource Access Manager to share a `Firewall` that you own with other accounts, which gives them the ability to use the firewall to create VPC endpoint associations. For information about sharing a firewall, see `PutResourcePolicy` in this guide and see [Sharing Network Firewall resources](https://docs.aws.amazon.com/network-firewall/latest/developerguide/sharing.html) in the *AWS Network Firewall Developer Guide* .
33
+ *
34
+ * The status of the VPC endpoint association, which indicates whether it's ready to filter network traffic, is provided in the corresponding `VpcEndpointAssociationStatus` . You can retrieve both the association and its status by calling `DescribeVpcEndpointAssociation` .
9
35
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html}
10
36
  */
11
37
  export type NetworkFirewallVpcEndpointAssociationProps = {
12
38
  /**
39
+ * A description of the VPC endpoint association.
13
40
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-description}
14
41
  */
15
42
  Description?: string | undefined;
16
43
  /**
17
- * A resource ARN.
44
+ * The Amazon Resource Name (ARN) of the firewall.
18
45
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-firewallarn}
19
46
  */
20
47
  FirewallArn: string;
21
48
  /**
49
+ * The ID for a subnet that's used in an association with a firewall. This is used in `CreateFirewall` , `AssociateSubnets` , and `CreateVpcEndpointAssociation` . AWS Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone.
22
50
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-subnetmapping}
23
51
  */
24
52
  SubnetMapping: SubnetMapping;
25
53
  /**
54
+ * The key:value pairs to associate with the resource.
26
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-tags}
27
56
  */
28
57
  Tags?: Tag[] | undefined;
29
58
  /**
59
+ * The unique identifier of the VPC for the endpoint association.
30
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-vpcid}
31
61
  */
32
62
  VpcId: string;
@@ -41,26 +71,28 @@ export type NetworkFirewallVpcEndpointAssociationAttribs = {
41
71
  */
42
72
  EndpointId: string;
43
73
  /**
44
- * A resource ARN.
74
+ * The Amazon Resource Name (ARN) of a VPC endpoint association.
45
75
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-vpcendpointassociationarn}
46
76
  */
47
77
  VpcEndpointAssociationArn: string;
48
78
  /**
79
+ * The unique identifier of the VPC endpoint association.
49
80
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-vpcendpointassociation.html#cfn-networkfirewall-vpcendpointassociation-vpcendpointassociationid}
50
81
  */
51
82
  VpcEndpointAssociationId: string;
52
83
  };
53
84
  /**
85
+ * The ID for a subnet that's used in an association with a firewall. This is used in `CreateFirewall` , `AssociateSubnets` , and `CreateVpcEndpointAssociation` . AWS Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone.
54
86
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-subnetmapping.html}
55
87
  */
56
88
  export type SubnetMapping = {
57
89
  /**
58
- * A IPAddressType
90
+ * The subnet's IP address type. You can't change the IP address type after you create the subnet.
59
91
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-subnetmapping.html#cfn-networkfirewall-vpcendpointassociation-subnetmapping-ipaddresstype}
60
92
  */
61
93
  IPAddressType?: string | undefined;
62
94
  /**
63
- * A SubnetId.
95
+ * The unique identifier for the subnet.
64
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-vpcendpointassociation-subnetmapping.html#cfn-networkfirewall-vpcendpointassociation-subnetmapping-subnetid}
65
97
  */
66
98
  SubnetId: string;
@@ -120,6 +120,10 @@ export type OpsWorksCMServerProps = {
120
120
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-securitygroupids}
121
121
  */
122
122
  SecurityGroupIds?: string[] | undefined;
123
+ /**
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername}
125
+ */
126
+ ServerName?: string | undefined;
123
127
  /**
124
128
  * The service role that the AWS OpsWorks CM service backend uses to work with your account. Although the AWS OpsWorks management console typically creates the service role for you, if you are using the AWS CLI or API commands, run the service-role-creation.yaml AWS CloudFormation template, located at https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml. This template creates a CloudFormation stack that includes the service role and instance profile that you need.
125
129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn}
@@ -163,14 +167,10 @@ export type OpsWorksCMServerAttribs = {
163
167
  */
164
168
  Endpoint: string;
165
169
  /**
170
+ * The ID of the server.
166
171
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-id}
167
172
  */
168
173
  Id: string;
169
- /**
170
- * The name of the server.
171
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servername}
172
- */
173
- ServerName: string;
174
174
  };
175
175
  /**
176
176
  * The `EngineAttribute` property type specifies administrator credentials for an AWS OpsWorks for Chef Automate or OpsWorks for Puppet Enterprise server. `EngineAttribute` is a property of the `AWS::OpsWorksCM::Server` resource type.
@@ -442,6 +442,11 @@ export type DomainSettings = {
442
442
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-domainsettings.html#cfn-sagemaker-domain-domainsettings-securitygroupids}
443
443
  */
444
444
  SecurityGroupIds?: string[] | undefined;
445
+ /**
446
+ * The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
447
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-domainsettings.html#cfn-sagemaker-domain-domainsettings-unifiedstudiosettings}
448
+ */
449
+ UnifiedStudioSettings?: UnifiedStudioSettings | undefined;
445
450
  };
446
451
  /**
447
452
  * The settings for assigning a custom Amazon EFS file system to a user profile or space for an Amazon SageMaker AI Domain.
@@ -777,6 +782,66 @@ export type StudioWebPortalSettings = {
777
782
  */
778
783
  HiddenSageMakerImageVersionAliases?: HiddenSageMakerImage[] | undefined;
779
784
  };
785
+ /**
786
+ * The settings that apply to an Amazon SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
787
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html}
788
+ */
789
+ export type UnifiedStudioSettings = {
790
+ /**
791
+ * The ID of the AWS account that has the Amazon SageMaker Unified Studio domain. The default value, if you don't specify an ID, is the ID of the account that has the Amazon SageMaker AI domain.
792
+ * @minLength 12
793
+ * @maxLength 12
794
+ * @pattern ^\d+$
795
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-domainaccountid}
796
+ */
797
+ DomainAccountId?: string | undefined;
798
+ /**
799
+ * The ID of the Amazon SageMaker Unified Studio domain associated with this domain.
800
+ * @minLength 1
801
+ * @maxLength 36
802
+ * @pattern ^dzd[-_][a-zA-Z0-9_-]{1,36}$
803
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-domainid}
804
+ */
805
+ DomainId?: string | undefined;
806
+ /**
807
+ * The AWS Region where the domain is located in Amazon SageMaker Unified Studio. The default value, if you don't specify a Region, is the Region where the Amazon SageMaker AI domain is located.
808
+ * @pattern [a-zA-Z]{2}-[a-zA-Z\-]+-\d+
809
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-domainregion}
810
+ */
811
+ DomainRegion?: string | undefined;
812
+ /**
813
+ * The ID of the environment that Amazon SageMaker Unified Studio associates with the domain.
814
+ * @minLength 1
815
+ * @maxLength 36
816
+ * @pattern ^[a-zA-Z0-9_-]{1,36}$
817
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-environmentid}
818
+ */
819
+ EnvironmentId?: string | undefined;
820
+ /**
821
+ * The ID of the Amazon SageMaker Unified Studio project that corresponds to the domain.
822
+ * @pattern ^[a-zA-Z0-9_-]{1,36}$
823
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-projectid}
824
+ */
825
+ ProjectId?: string | undefined;
826
+ /**
827
+ * The location where Amazon S3 stores temporary execution data and other artifacts for the project that corresponds to the domain.
828
+ * @minLength 1
829
+ * @maxLength 100
830
+ * @pattern [\w\.-]+$
831
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-projects3path}
832
+ */
833
+ ProjectS3Path?: string | undefined;
834
+ /**
835
+ * Sets whether you can access the domain in Amazon SageMaker Studio:
836
+ *
837
+ * - **ENABLED** - You can access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it in both studio interfaces.
838
+ * - **DISABLED** - You can't access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it only in that studio interface.
839
+ *
840
+ * To migrate a domain to Amazon SageMaker Unified Studio, you specify the UnifiedStudioSettings data type when you use the UpdateDomain action.
841
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html#cfn-sagemaker-domain-unifiedstudiosettings-studiowebportalaccess}
842
+ */
843
+ StudioWebPortalAccess?: "ENABLED" | "DISABLED" | undefined;
844
+ };
780
845
  /**
781
846
  * A collection of settings that apply to users of Amazon SageMaker Studio. These settings are specified when the [CreateUserProfile](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateUserProfile.html) API is called, and as `DefaultUserSettings` when the [CreateDomain](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateDomain.html) API is called.
782
847
  *
@@ -121,6 +121,19 @@ export type AndStatement = {
121
121
  */
122
122
  Statements: Statement[];
123
123
  };
124
+ /**
125
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-asnmatchstatement.html}
126
+ */
127
+ export type AsnMatchStatement = {
128
+ /**
129
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-asnmatchstatement.html#cfn-wafv2-rulegroup-asnmatchstatement-asnlist}
130
+ */
131
+ AsnList?: number[] | undefined;
132
+ /**
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-asnmatchstatement.html#cfn-wafv2-rulegroup-asnmatchstatement-forwardedipconfig}
134
+ */
135
+ ForwardedIPConfig?: ForwardedIPConfiguration | undefined;
136
+ };
124
137
  /**
125
138
  * Block traffic towards application.
126
139
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-blockaction.html}
@@ -561,7 +574,7 @@ export type FieldToMatch = {
561
574
  *
562
575
  * > If the specified header isn't present in the request, AWS WAF doesn't apply the rule to the web request at all.
563
576
  *
564
- * This configuration is used for `GeoMatchStatement` and `RateBasedStatement` . For `IPSetReferenceStatement` , use `IPSetForwardedIPConfig` instead.
577
+ * This configuration is used for `GeoMatchStatement` , `AsnMatchStatement` , and `RateBasedStatement` . For `IPSetReferenceStatement` , use `IPSetForwardedIPConfig` instead.
565
578
  *
566
579
  * AWS WAF only evaluates the first IP address found in the specified HTTP header.
567
580
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-forwardedipconfiguration.html}
@@ -1097,6 +1110,11 @@ export type RateBasedStatement = {
1097
1110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratebasedstatementcustomkey.html}
1098
1111
  */
1099
1112
  export type RateBasedStatementCustomKey = {
1113
+ /**
1114
+ * Specifies the request's ASN as an aggregate key for a rate-based rule.
1115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratebasedstatementcustomkey.html#cfn-wafv2-rulegroup-ratebasedstatementcustomkey-asn}
1116
+ */
1117
+ ASN?: Record<string, unknown> | undefined;
1100
1118
  /**
1101
1119
  * Use the value of a cookie in the request as an aggregate key. Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.
1102
1120
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ratebasedstatementcustomkey.html#cfn-wafv2-rulegroup-ratebasedstatementcustomkey-cookie}
@@ -1527,6 +1545,10 @@ export type Statement = {
1527
1545
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-statement.html#cfn-wafv2-rulegroup-statement-andstatement}
1528
1546
  */
1529
1547
  AndStatement?: AndStatement | undefined;
1548
+ /**
1549
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-statement.html#cfn-wafv2-rulegroup-statement-asnmatchstatement}
1550
+ */
1551
+ AsnMatchStatement?: AsnMatchStatement | undefined;
1530
1552
  /**
1531
1553
  * A rule statement that defines a string match search for AWS WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want AWS WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the AWS WAF console and the developer guide, this is called a string match statement.
1532
1554
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-statement.html#cfn-wafv2-rulegroup-statement-bytematchstatement}