@pulumi/aws 5.28.0 → 5.29.0

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 (59) hide show
  1. package/appmesh/virtualGateway.d.ts +0 -21
  2. package/appmesh/virtualGateway.js +0 -21
  3. package/appmesh/virtualGateway.js.map +1 -1
  4. package/costexplorer/anomalySubscription.d.ts +22 -4
  5. package/costexplorer/anomalySubscription.js +2 -3
  6. package/costexplorer/anomalySubscription.js.map +1 -1
  7. package/cur/reportDefinition.d.ts +3 -3
  8. package/datasync/index.d.ts +3 -0
  9. package/datasync/index.js +6 -1
  10. package/datasync/index.js.map +1 -1
  11. package/datasync/locationObjectStorage.d.ts +216 -0
  12. package/datasync/locationObjectStorage.js +110 -0
  13. package/datasync/locationObjectStorage.js.map +1 -0
  14. package/dynamodb/tableReplica.d.ts +3 -3
  15. package/ec2/amiCopy.d.ts +3 -9
  16. package/ec2/amiCopy.js.map +1 -1
  17. package/ec2/flowLog.d.ts +46 -32
  18. package/ec2/flowLog.js +46 -32
  19. package/ec2/flowLog.js.map +1 -1
  20. package/ec2/instance.d.ts +6 -9
  21. package/ec2/instance.js.map +1 -1
  22. package/ec2/launchConfiguration.d.ts +12 -3
  23. package/ec2/launchConfiguration.js.map +1 -1
  24. package/ec2/spotInstanceRequest.d.ts +6 -9
  25. package/ec2/spotInstanceRequest.js.map +1 -1
  26. package/ec2/vpcIpamPoolCidrAllocation.d.ts +2 -2
  27. package/ec2/vpcIpamPoolCidrAllocation.js +2 -2
  28. package/grafana/workspace.d.ts +12 -0
  29. package/grafana/workspace.js +2 -0
  30. package/grafana/workspace.js.map +1 -1
  31. package/iam/role.d.ts +2 -2
  32. package/iam/role.js +2 -2
  33. package/imagebuilder/component.d.ts +12 -0
  34. package/imagebuilder/component.js +2 -0
  35. package/imagebuilder/component.js.map +1 -1
  36. package/kinesis/firehoseDeliveryStream.d.ts +3 -6
  37. package/kinesis/firehoseDeliveryStream.js.map +1 -1
  38. package/lambda/eventSourceMapping.d.ts +12 -0
  39. package/lambda/eventSourceMapping.js +2 -0
  40. package/lambda/eventSourceMapping.js.map +1 -1
  41. package/package.json +2 -2
  42. package/package.json.dev +2 -2
  43. package/qldb/stream.d.ts +21 -0
  44. package/qldb/stream.js +21 -0
  45. package/qldb/stream.js.map +1 -1
  46. package/rds/cluster.d.ts +3 -3
  47. package/redshiftserverless/workgroup.d.ts +3 -3
  48. package/rum/appMonitor.d.ts +12 -0
  49. package/rum/appMonitor.js +2 -0
  50. package/rum/appMonitor.js.map +1 -1
  51. package/s3/bucketV2.d.ts +4 -4
  52. package/servicecatalog/portfolioShare.d.ts +12 -0
  53. package/servicecatalog/portfolioShare.js +2 -0
  54. package/servicecatalog/portfolioShare.js.map +1 -1
  55. package/types/input.d.ts +6656 -4350
  56. package/types/output.d.ts +6667 -4351
  57. package/wafv2/webAcl.d.ts +14 -12
  58. package/wafv2/webAcl.js +2 -0
  59. package/wafv2/webAcl.js.map +1 -1
package/wafv2/webAcl.d.ts CHANGED
@@ -4,6 +4,8 @@ import * as outputs from "../types/output";
4
4
  /**
5
5
  * Creates a WAFv2 Web ACL resource.
6
6
  *
7
+ * > **Note:** In `fieldToMatch` blocks, _e.g._, in `byteMatchStatement`, the `body` block includes an optional argument `oversizeHandling`. AWS indicates this argument will be required starting February 2023. To avoid configurations breaking when that change happens, treat the `oversizeHandling` argument as **required** as soon as possible.
8
+ *
7
9
  * ## Example Usage
8
10
  *
9
11
  * This resource is based on `aws.wafv2.RuleGroup`, check the documentation of the `aws.wafv2.RuleGroup` resource to see examples of the various available statements.
@@ -200,11 +202,11 @@ export declare class WebAcl extends pulumi.CustomResource {
200
202
  */
201
203
  readonly capacity: pulumi.Output<number>;
202
204
  /**
203
- * Defines custom response bodies that can be referenced by `customResponse` actions. See Custom Response Body below for details.
205
+ * Defines custom response bodies that can be referenced by `customResponse` actions. See `customResponseBody` below for details.
204
206
  */
205
207
  readonly customResponseBodies: pulumi.Output<outputs.wafv2.WebAclCustomResponseBody[] | undefined>;
206
208
  /**
207
- * Action to perform if none of the `rules` contained in the WebACL match. See Default Action below for details.
209
+ * Action to perform if none of the `rules` contained in the WebACL match. See `default_ action` below for details.
208
210
  */
209
211
  readonly defaultAction: pulumi.Output<outputs.wafv2.WebAclDefaultAction>;
210
212
  /**
@@ -217,7 +219,7 @@ export declare class WebAcl extends pulumi.CustomResource {
217
219
  */
218
220
  readonly name: pulumi.Output<string>;
219
221
  /**
220
- * Rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See Rules below for details.
222
+ * Rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See `rule` below for details.
221
223
  */
222
224
  readonly rules: pulumi.Output<outputs.wafv2.WebAclRule[] | undefined>;
223
225
  /**
@@ -237,7 +239,7 @@ export declare class WebAcl extends pulumi.CustomResource {
237
239
  [key: string]: string;
238
240
  }>;
239
241
  /**
240
- * Defines and enables Amazon CloudWatch metrics and web request sample collection. See Visibility Configuration below for details.
242
+ * Defines and enables Amazon CloudWatch metrics and web request sample collection. See `visibilityConfig` below for details.
241
243
  */
242
244
  readonly visibilityConfig: pulumi.Output<outputs.wafv2.WebAclVisibilityConfig>;
243
245
  /**
@@ -262,11 +264,11 @@ export interface WebAclState {
262
264
  */
263
265
  capacity?: pulumi.Input<number>;
264
266
  /**
265
- * Defines custom response bodies that can be referenced by `customResponse` actions. See Custom Response Body below for details.
267
+ * Defines custom response bodies that can be referenced by `customResponse` actions. See `customResponseBody` below for details.
266
268
  */
267
269
  customResponseBodies?: pulumi.Input<pulumi.Input<inputs.wafv2.WebAclCustomResponseBody>[]>;
268
270
  /**
269
- * Action to perform if none of the `rules` contained in the WebACL match. See Default Action below for details.
271
+ * Action to perform if none of the `rules` contained in the WebACL match. See `default_ action` below for details.
270
272
  */
271
273
  defaultAction?: pulumi.Input<inputs.wafv2.WebAclDefaultAction>;
272
274
  /**
@@ -279,7 +281,7 @@ export interface WebAclState {
279
281
  */
280
282
  name?: pulumi.Input<string>;
281
283
  /**
282
- * Rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See Rules below for details.
284
+ * Rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See `rule` below for details.
283
285
  */
284
286
  rules?: pulumi.Input<pulumi.Input<inputs.wafv2.WebAclRule>[]>;
285
287
  /**
@@ -299,7 +301,7 @@ export interface WebAclState {
299
301
  [key: string]: pulumi.Input<string>;
300
302
  }>;
301
303
  /**
302
- * Defines and enables Amazon CloudWatch metrics and web request sample collection. See Visibility Configuration below for details.
304
+ * Defines and enables Amazon CloudWatch metrics and web request sample collection. See `visibilityConfig` below for details.
303
305
  */
304
306
  visibilityConfig?: pulumi.Input<inputs.wafv2.WebAclVisibilityConfig>;
305
307
  }
@@ -308,11 +310,11 @@ export interface WebAclState {
308
310
  */
309
311
  export interface WebAclArgs {
310
312
  /**
311
- * Defines custom response bodies that can be referenced by `customResponse` actions. See Custom Response Body below for details.
313
+ * Defines custom response bodies that can be referenced by `customResponse` actions. See `customResponseBody` below for details.
312
314
  */
313
315
  customResponseBodies?: pulumi.Input<pulumi.Input<inputs.wafv2.WebAclCustomResponseBody>[]>;
314
316
  /**
315
- * Action to perform if none of the `rules` contained in the WebACL match. See Default Action below for details.
317
+ * Action to perform if none of the `rules` contained in the WebACL match. See `default_ action` below for details.
316
318
  */
317
319
  defaultAction: pulumi.Input<inputs.wafv2.WebAclDefaultAction>;
318
320
  /**
@@ -324,7 +326,7 @@ export interface WebAclArgs {
324
326
  */
325
327
  name?: pulumi.Input<string>;
326
328
  /**
327
- * Rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See Rules below for details.
329
+ * Rule blocks used to identify the web requests that you want to `allow`, `block`, or `count`. See `rule` below for details.
328
330
  */
329
331
  rules?: pulumi.Input<pulumi.Input<inputs.wafv2.WebAclRule>[]>;
330
332
  /**
@@ -338,7 +340,7 @@ export interface WebAclArgs {
338
340
  [key: string]: pulumi.Input<string>;
339
341
  }>;
340
342
  /**
341
- * Defines and enables Amazon CloudWatch metrics and web request sample collection. See Visibility Configuration below for details.
343
+ * Defines and enables Amazon CloudWatch metrics and web request sample collection. See `visibilityConfig` below for details.
342
344
  */
343
345
  visibilityConfig: pulumi.Input<inputs.wafv2.WebAclVisibilityConfig>;
344
346
  }
package/wafv2/webAcl.js CHANGED
@@ -8,6 +8,8 @@ const utilities = require("../utilities");
8
8
  /**
9
9
  * Creates a WAFv2 Web ACL resource.
10
10
  *
11
+ * > **Note:** In `fieldToMatch` blocks, _e.g._, in `byteMatchStatement`, the `body` block includes an optional argument `oversizeHandling`. AWS indicates this argument will be required starting February 2023. To avoid configurations breaking when that change happens, treat the `oversizeHandling` argument as **required** as soon as possible.
12
+ *
11
13
  * ## Example Usage
12
14
  *
13
15
  * This resource is based on `aws.wafv2.RuleGroup`, check the documentation of the `aws.wafv2.RuleGroup` resource to see examples of the various available statements.
@@ -1 +1 @@
1
- {"version":3,"file":"webAcl.js","sourceRoot":"","sources":["../../wafv2/webAcl.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"webAcl.js","sourceRoot":"","sources":["../../wafv2/webAcl.ts"],"names":[],"mappings":"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"}