aws-cdk-lib 2.146.0__py3-none-any.whl → 2.147.0__py3-none-any.whl

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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (67) hide show
  1. aws_cdk/__init__.py +10 -11
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.146.0.jsii.tgz → aws-cdk-lib@2.147.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +32 -12
  5. aws_cdk/aws_apigatewayv2/__init__.py +48 -2
  6. aws_cdk/aws_apigatewayv2_integrations/__init__.py +142 -4
  7. aws_cdk/aws_appconfig/__init__.py +8 -4
  8. aws_cdk/aws_applicationsignals/__init__.py +1766 -0
  9. aws_cdk/aws_auditmanager/__init__.py +5 -1
  10. aws_cdk/aws_autoscaling/__init__.py +65 -20
  11. aws_cdk/aws_batch/__init__.py +215 -0
  12. aws_cdk/aws_bedrock/__init__.py +272 -103
  13. aws_cdk/aws_cloudformation/__init__.py +5 -11
  14. aws_cdk/aws_cloudfront/__init__.py +10 -3
  15. aws_cdk/aws_cloudtrail/__init__.py +56 -2
  16. aws_cdk/aws_codebuild/__init__.py +62 -29
  17. aws_cdk/aws_codepipeline/__init__.py +10 -5
  18. aws_cdk/aws_datazone/__init__.py +80 -68
  19. aws_cdk/aws_deadline/__init__.py +603 -17
  20. aws_cdk/aws_ec2/__init__.py +237 -112
  21. aws_cdk/aws_ecs/__init__.py +20 -18
  22. aws_cdk/aws_eks/__init__.py +15 -9
  23. aws_cdk/aws_elasticloadbalancingv2/__init__.py +11 -5
  24. aws_cdk/aws_emrserverless/__init__.py +5 -5
  25. aws_cdk/aws_events/__init__.py +36 -16
  26. aws_cdk/aws_fsx/__init__.py +126 -21
  27. aws_cdk/aws_globalaccelerator/__init__.py +2 -1
  28. aws_cdk/aws_globalaccelerator_endpoints/__init__.py +35 -4
  29. aws_cdk/aws_glue/__init__.py +26 -0
  30. aws_cdk/aws_grafana/__init__.py +4 -4
  31. aws_cdk/aws_groundstation/__init__.py +55 -35
  32. aws_cdk/aws_guardduty/__init__.py +826 -0
  33. aws_cdk/aws_iot/__init__.py +3 -3
  34. aws_cdk/aws_lambda/__init__.py +7 -5
  35. aws_cdk/aws_lightsail/__init__.py +1 -1
  36. aws_cdk/aws_location/__init__.py +10 -11
  37. aws_cdk/aws_mediapackagev2/__init__.py +38 -20
  38. aws_cdk/aws_mediatailor/__init__.py +2 -2
  39. aws_cdk/aws_msk/__init__.py +4 -4
  40. aws_cdk/aws_mwaa/__init__.py +16 -8
  41. aws_cdk/aws_nimblestudio/__init__.py +9 -9
  42. aws_cdk/aws_opensearchservice/__init__.py +5 -4
  43. aws_cdk/aws_opsworks/__init__.py +3 -3
  44. aws_cdk/aws_osis/__init__.py +33 -4
  45. aws_cdk/aws_pipes/__init__.py +97 -45
  46. aws_cdk/aws_quicksight/__init__.py +23 -21
  47. aws_cdk/aws_rds/__init__.py +43 -11
  48. aws_cdk/aws_refactorspaces/__init__.py +3 -3
  49. aws_cdk/aws_rolesanywhere/__init__.py +21 -14
  50. aws_cdk/aws_sagemaker/__init__.py +5 -2
  51. aws_cdk/aws_securityhub/__init__.py +163 -78
  52. aws_cdk/aws_securitylake/__init__.py +7 -5
  53. aws_cdk/aws_ses/__init__.py +117 -0
  54. aws_cdk/aws_simspaceweaver/__init__.py +2 -2
  55. aws_cdk/aws_sns/__init__.py +6 -4
  56. aws_cdk/aws_sqs/__init__.py +3 -3
  57. aws_cdk/aws_stepfunctions/__init__.py +51 -28
  58. aws_cdk/aws_stepfunctions_tasks/__init__.py +56 -2
  59. aws_cdk/aws_transfer/__init__.py +8 -2
  60. aws_cdk/aws_wafv2/__init__.py +10 -10
  61. aws_cdk/aws_workspacesweb/__init__.py +8 -8
  62. {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/METADATA +1 -1
  63. {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/RECORD +67 -66
  64. {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/LICENSE +0 -0
  65. {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/NOTICE +0 -0
  66. {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/WHEEL +0 -0
  67. {aws_cdk_lib-2.146.0.dist-info → aws_cdk_lib-2.147.0.dist-info}/top_level.txt +0 -0
@@ -895,7 +895,7 @@ class CfnConfig(
895
895
  ) -> None:
896
896
  '''Defines decoding settings.
897
897
 
898
- :param unvalidated_json:
898
+ :param unvalidated_json: The decoding settings are in JSON format and define a set of steps to perform to decode the data.
899
899
 
900
900
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-decodeconfig.html
901
901
  :exampleMetadata: fixture=_generated
@@ -919,7 +919,8 @@ class CfnConfig(
919
919
 
920
920
  @builtins.property
921
921
  def unvalidated_json(self) -> typing.Optional[builtins.str]:
922
- '''
922
+ '''The decoding settings are in JSON format and define a set of steps to perform to decode the data.
923
+
923
924
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-decodeconfig.html#cfn-groundstation-config-decodeconfig-unvalidatedjson
924
925
  '''
925
926
  result = self._values.get("unvalidated_json")
@@ -949,7 +950,7 @@ class CfnConfig(
949
950
  ) -> None:
950
951
  '''Defines demodulation settings.
951
952
 
952
- :param unvalidated_json:
953
+ :param unvalidated_json: The demodulation settings are in JSON format and define parameters for demodulation, for example which modulation scheme (e.g. PSK, QPSK, etc.) and matched filter to use.
953
954
 
954
955
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-demodulationconfig.html
955
956
  :exampleMetadata: fixture=_generated
@@ -973,7 +974,8 @@ class CfnConfig(
973
974
 
974
975
  @builtins.property
975
976
  def unvalidated_json(self) -> typing.Optional[builtins.str]:
976
- '''
977
+ '''The demodulation settings are in JSON format and define parameters for demodulation, for example which modulation scheme (e.g. PSK, QPSK, etc.) and matched filter to use.
978
+
977
979
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-demodulationconfig.html#cfn-groundstation-config-demodulationconfig-unvalidatedjson
978
980
  '''
979
981
  result = self._values.get("unvalidated_json")
@@ -2150,9 +2152,10 @@ class CfnDataflowEndpointGroup(
2150
2152
  mtu: typing.Optional[jsii.Number] = None,
2151
2153
  socket_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataflowEndpointGroup.SocketAddressProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2152
2154
  ) -> None:
2153
- '''
2154
- :param mtu:
2155
- :param socket_address:
2155
+ '''Egress address of AgentEndpoint with an optional mtu.
2156
+
2157
+ :param mtu: Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
2158
+ :param socket_address: A socket address.
2156
2159
 
2157
2160
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-connectiondetails.html
2158
2161
  :exampleMetadata: fixture=_generated
@@ -2183,7 +2186,8 @@ class CfnDataflowEndpointGroup(
2183
2186
 
2184
2187
  @builtins.property
2185
2188
  def mtu(self) -> typing.Optional[jsii.Number]:
2186
- '''
2189
+ '''Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
2190
+
2187
2191
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-connectiondetails.html#cfn-groundstation-dataflowendpointgroup-connectiondetails-mtu
2188
2192
  '''
2189
2193
  result = self._values.get("mtu")
@@ -2193,7 +2197,8 @@ class CfnDataflowEndpointGroup(
2193
2197
  def socket_address(
2194
2198
  self,
2195
2199
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataflowEndpointGroup.SocketAddressProperty"]]:
2196
- '''
2200
+ '''A socket address.
2201
+
2197
2202
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-connectiondetails.html#cfn-groundstation-dataflowendpointgroup-connectiondetails-socketaddress
2198
2203
  '''
2199
2204
  result = self._values.get("socket_address")
@@ -2226,7 +2231,7 @@ class CfnDataflowEndpointGroup(
2226
2231
  '''Contains information such as socket address and name that defines an endpoint.
2227
2232
 
2228
2233
  :param address: The address and port of an endpoint.
2229
- :param mtu:
2234
+ :param mtu: Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
2230
2235
  :param name: The endpoint name. When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite.
2231
2236
 
2232
2237
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-dataflowendpoint.html
@@ -2273,7 +2278,10 @@ class CfnDataflowEndpointGroup(
2273
2278
 
2274
2279
  @builtins.property
2275
2280
  def mtu(self) -> typing.Optional[jsii.Number]:
2276
- '''
2281
+ '''Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
2282
+
2283
+ Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
2284
+
2277
2285
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-dataflowendpoint.html#cfn-groundstation-dataflowendpointgroup-dataflowendpoint-mtu
2278
2286
  '''
2279
2287
  result = self._values.get("mtu")
@@ -2320,7 +2328,7 @@ class CfnDataflowEndpointGroup(
2320
2328
  ) -> None:
2321
2329
  '''The security details and endpoint information.
2322
2330
 
2323
- :param aws_ground_station_agent_endpoint:
2331
+ :param aws_ground_station_agent_endpoint: An agent endpoint.
2324
2332
  :param endpoint: Information about the endpoint such as name and the endpoint address.
2325
2333
  :param security_details: The role ARN, and IDs for security groups and subnets.
2326
2334
 
@@ -2388,7 +2396,8 @@ class CfnDataflowEndpointGroup(
2388
2396
  def aws_ground_station_agent_endpoint(
2389
2397
  self,
2390
2398
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataflowEndpointGroup.AwsGroundStationAgentEndpointProperty"]]:
2391
- '''
2399
+ '''An agent endpoint.
2400
+
2392
2401
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-endpointdetails.html#cfn-groundstation-dataflowendpointgroup-endpointdetails-awsgroundstationagentendpoint
2393
2402
  '''
2394
2403
  result = self._values.get("aws_ground_station_agent_endpoint")
@@ -2439,9 +2448,10 @@ class CfnDataflowEndpointGroup(
2439
2448
  maximum: typing.Optional[jsii.Number] = None,
2440
2449
  minimum: typing.Optional[jsii.Number] = None,
2441
2450
  ) -> None:
2442
- '''
2443
- :param maximum:
2444
- :param minimum:
2451
+ '''An integer range that has a minimum and maximum value.
2452
+
2453
+ :param maximum: A maximum value.
2454
+ :param minimum: A minimum value.
2445
2455
 
2446
2456
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-integerrange.html
2447
2457
  :exampleMetadata: fixture=_generated
@@ -2469,7 +2479,8 @@ class CfnDataflowEndpointGroup(
2469
2479
 
2470
2480
  @builtins.property
2471
2481
  def maximum(self) -> typing.Optional[jsii.Number]:
2472
- '''
2482
+ '''A maximum value.
2483
+
2473
2484
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-integerrange.html#cfn-groundstation-dataflowendpointgroup-integerrange-maximum
2474
2485
  '''
2475
2486
  result = self._values.get("maximum")
@@ -2477,7 +2488,8 @@ class CfnDataflowEndpointGroup(
2477
2488
 
2478
2489
  @builtins.property
2479
2490
  def minimum(self) -> typing.Optional[jsii.Number]:
2480
- '''
2491
+ '''A minimum value.
2492
+
2481
2493
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-integerrange.html#cfn-groundstation-dataflowendpointgroup-integerrange-minimum
2482
2494
  '''
2483
2495
  result = self._values.get("minimum")
@@ -2506,9 +2518,10 @@ class CfnDataflowEndpointGroup(
2506
2518
  mtu: typing.Optional[jsii.Number] = None,
2507
2519
  socket_address: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataflowEndpointGroup.RangedSocketAddressProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2508
2520
  ) -> None:
2509
- '''
2510
- :param mtu:
2511
- :param socket_address:
2521
+ '''Ingress address of AgentEndpoint with a port range and an optional mtu.
2522
+
2523
+ :param mtu: Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
2524
+ :param socket_address: A ranged socket address.
2512
2525
 
2513
2526
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-rangedconnectiondetails.html
2514
2527
  :exampleMetadata: fixture=_generated
@@ -2542,7 +2555,8 @@ class CfnDataflowEndpointGroup(
2542
2555
 
2543
2556
  @builtins.property
2544
2557
  def mtu(self) -> typing.Optional[jsii.Number]:
2545
- '''
2558
+ '''Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
2559
+
2546
2560
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-rangedconnectiondetails.html#cfn-groundstation-dataflowendpointgroup-rangedconnectiondetails-mtu
2547
2561
  '''
2548
2562
  result = self._values.get("mtu")
@@ -2552,7 +2566,8 @@ class CfnDataflowEndpointGroup(
2552
2566
  def socket_address(
2553
2567
  self,
2554
2568
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataflowEndpointGroup.RangedSocketAddressProperty"]]:
2555
- '''
2569
+ '''A ranged socket address.
2570
+
2556
2571
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-rangedconnectiondetails.html#cfn-groundstation-dataflowendpointgroup-rangedconnectiondetails-socketaddress
2557
2572
  '''
2558
2573
  result = self._values.get("socket_address")
@@ -2581,9 +2596,10 @@ class CfnDataflowEndpointGroup(
2581
2596
  name: typing.Optional[builtins.str] = None,
2582
2597
  port_range: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataflowEndpointGroup.IntegerRangeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2583
2598
  ) -> None:
2584
- '''
2585
- :param name:
2586
- :param port_range:
2599
+ '''A socket address with a port range.
2600
+
2601
+ :param name: IPv4 socket address.
2602
+ :param port_range: Port range of a socket address.
2587
2603
 
2588
2604
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-rangedsocketaddress.html
2589
2605
  :exampleMetadata: fixture=_generated
@@ -2614,7 +2630,8 @@ class CfnDataflowEndpointGroup(
2614
2630
 
2615
2631
  @builtins.property
2616
2632
  def name(self) -> typing.Optional[builtins.str]:
2617
- '''
2633
+ '''IPv4 socket address.
2634
+
2618
2635
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-rangedsocketaddress.html#cfn-groundstation-dataflowendpointgroup-rangedsocketaddress-name
2619
2636
  '''
2620
2637
  result = self._values.get("name")
@@ -2624,7 +2641,8 @@ class CfnDataflowEndpointGroup(
2624
2641
  def port_range(
2625
2642
  self,
2626
2643
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataflowEndpointGroup.IntegerRangeProperty"]]:
2627
- '''
2644
+ '''Port range of a socket address.
2645
+
2628
2646
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-rangedsocketaddress.html#cfn-groundstation-dataflowendpointgroup-rangedsocketaddress-portrange
2629
2647
  '''
2630
2648
  result = self._values.get("port_range")
@@ -3023,8 +3041,8 @@ class CfnMissionProfile(
3023
3041
  :param tracking_config_arn: The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
3024
3042
  :param contact_post_pass_duration_seconds: Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.
3025
3043
  :param contact_pre_pass_duration_seconds: Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.
3026
- :param streams_kms_key:
3027
- :param streams_kms_role: The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
3044
+ :param streams_kms_key: KMS key to use for encrypting streams.
3045
+ :param streams_kms_role: Role to use for encrypting streams with KMS key.
3028
3046
  :param tags: Tags assigned to the mission profile.
3029
3047
  '''
3030
3048
  if __debug__:
@@ -3207,6 +3225,7 @@ class CfnMissionProfile(
3207
3225
  def streams_kms_key(
3208
3226
  self,
3209
3227
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMissionProfile.StreamsKmsKeyProperty"]]:
3228
+ '''KMS key to use for encrypting streams.'''
3210
3229
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMissionProfile.StreamsKmsKeyProperty"]], jsii.get(self, "streamsKmsKey"))
3211
3230
 
3212
3231
  @streams_kms_key.setter
@@ -3222,7 +3241,7 @@ class CfnMissionProfile(
3222
3241
  @builtins.property
3223
3242
  @jsii.member(jsii_name="streamsKmsRole")
3224
3243
  def streams_kms_role(self) -> typing.Optional[builtins.str]:
3225
- '''The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.'''
3244
+ '''Role to use for encrypting streams with KMS key.'''
3226
3245
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "streamsKmsRole"))
3227
3246
 
3228
3247
  @streams_kms_role.setter
@@ -3424,8 +3443,8 @@ class CfnMissionProfileProps:
3424
3443
  :param tracking_config_arn: The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
3425
3444
  :param contact_post_pass_duration_seconds: Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.
3426
3445
  :param contact_pre_pass_duration_seconds: Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.
3427
- :param streams_kms_key:
3428
- :param streams_kms_role: The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
3446
+ :param streams_kms_key: KMS key to use for encrypting streams.
3447
+ :param streams_kms_role: Role to use for encrypting streams with KMS key.
3429
3448
  :param tags: Tags assigned to the mission profile.
3430
3449
 
3431
3450
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html
@@ -3556,7 +3575,8 @@ class CfnMissionProfileProps:
3556
3575
  def streams_kms_key(
3557
3576
  self,
3558
3577
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMissionProfile.StreamsKmsKeyProperty]]:
3559
- '''
3578
+ '''KMS key to use for encrypting streams.
3579
+
3560
3580
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-streamskmskey
3561
3581
  '''
3562
3582
  result = self._values.get("streams_kms_key")
@@ -3564,7 +3584,7 @@ class CfnMissionProfileProps:
3564
3584
 
3565
3585
  @builtins.property
3566
3586
  def streams_kms_role(self) -> typing.Optional[builtins.str]:
3567
- '''The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
3587
+ '''Role to use for encrypting streams with KMS key.
3568
3588
 
3569
3589
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-streamskmsrole
3570
3590
  '''