aws-cdk-lib 2.200.1__py3-none-any.whl → 2.201.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.
- aws_cdk/__init__.py +105 -13
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.200.1.jsii.tgz → aws-cdk-lib@2.201.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +2 -3
- aws_cdk/aws_amplify/__init__.py +3 -3
- aws_cdk/aws_apigateway/__init__.py +21 -17
- aws_cdk/aws_apigatewayv2/__init__.py +87 -45
- aws_cdk/aws_appconfig/__init__.py +38 -1
- aws_cdk/aws_appsync/__init__.py +10 -10
- aws_cdk/aws_athena/__init__.py +226 -0
- aws_cdk/aws_autoscaling/__init__.py +38 -37
- aws_cdk/aws_bedrock/__init__.py +5108 -1571
- aws_cdk/aws_cloudfront/__init__.py +8 -0
- aws_cdk/aws_cloudtrail/__init__.py +178 -0
- aws_cdk/aws_cloudwatch/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +746 -0
- aws_cdk/aws_connect/__init__.py +5 -5
- aws_cdk/aws_customerprofiles/__init__.py +377 -8
- aws_cdk/aws_datasync/__init__.py +189 -160
- aws_cdk/aws_datazone/__init__.py +512 -170
- aws_cdk/aws_deadline/__init__.py +32 -4
- aws_cdk/aws_dsql/__init__.py +150 -10
- aws_cdk/aws_ec2/__init__.py +793 -56
- aws_cdk/aws_ecs/__init__.py +94 -11
- aws_cdk/aws_efs/__init__.py +92 -12
- aws_cdk/aws_eks/__init__.py +166 -19
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
- aws_cdk/aws_emr/__init__.py +10 -4
- aws_cdk/aws_entityresolution/__init__.py +25 -10
- aws_cdk/aws_evs/__init__.py +2204 -0
- aws_cdk/aws_fsx/__init__.py +7 -7
- aws_cdk/aws_lambda/__init__.py +409 -32
- aws_cdk/aws_lightsail/__init__.py +17 -13
- aws_cdk/aws_logs/__init__.py +1 -0
- aws_cdk/aws_networkfirewall/__init__.py +562 -0
- aws_cdk/aws_opensearchservice/__init__.py +3 -3
- aws_cdk/aws_opsworkscm/__init__.py +9 -43
- aws_cdk/aws_rds/__init__.py +284 -87
- aws_cdk/aws_s3/__init__.py +23 -15
- aws_cdk/aws_sagemaker/__init__.py +223 -3
- aws_cdk/aws_securityhub/__init__.py +18 -34
- aws_cdk/aws_ssm/__init__.py +83 -1
- aws_cdk/aws_stepfunctions/__init__.py +235 -45
- aws_cdk/aws_synthetics/__init__.py +74 -0
- aws_cdk/aws_transfer/__init__.py +3 -3
- aws_cdk/aws_verifiedpermissions/__init__.py +17 -6
- aws_cdk/aws_wafv2/__init__.py +39 -2
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/RECORD +53 -52
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_emr/__init__.py
CHANGED
|
@@ -3723,8 +3723,8 @@ class CfnCluster(
|
|
|
3723
3723
|
The policy specifies the limits for resources that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.
|
|
3724
3724
|
|
|
3725
3725
|
:param compute_limits: The Amazon EC2 unit limits for a managed scaling policy. The managed scaling activity of a cluster is not allowed to go above or below these limits. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.
|
|
3726
|
-
:param scaling_strategy:
|
|
3727
|
-
:param utilization_performance_index:
|
|
3726
|
+
:param scaling_strategy: Determines whether a custom scaling utilization performance index can be set. Possible values include *ADVANCED* or *DEFAULT* .
|
|
3727
|
+
:param utilization_performance_index: An integer value that represents an advanced scaling strategy. Setting a higher value optimizes for performance. Setting a lower value optimizes for resource conservation. Setting the value to 50 balances performance and resource conservation. Possible values are 1, 25, 50, 75, and 100.
|
|
3728
3728
|
|
|
3729
3729
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-managedscalingpolicy.html
|
|
3730
3730
|
:exampleMetadata: fixture=_generated
|
|
@@ -3777,7 +3777,10 @@ class CfnCluster(
|
|
|
3777
3777
|
|
|
3778
3778
|
@builtins.property
|
|
3779
3779
|
def scaling_strategy(self) -> typing.Optional[builtins.str]:
|
|
3780
|
-
'''
|
|
3780
|
+
'''Determines whether a custom scaling utilization performance index can be set.
|
|
3781
|
+
|
|
3782
|
+
Possible values include *ADVANCED* or *DEFAULT* .
|
|
3783
|
+
|
|
3781
3784
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-managedscalingpolicy.html#cfn-emr-cluster-managedscalingpolicy-scalingstrategy
|
|
3782
3785
|
'''
|
|
3783
3786
|
result = self._values.get("scaling_strategy")
|
|
@@ -3785,7 +3788,10 @@ class CfnCluster(
|
|
|
3785
3788
|
|
|
3786
3789
|
@builtins.property
|
|
3787
3790
|
def utilization_performance_index(self) -> typing.Optional[jsii.Number]:
|
|
3788
|
-
'''
|
|
3791
|
+
'''An integer value that represents an advanced scaling strategy.
|
|
3792
|
+
|
|
3793
|
+
Setting a higher value optimizes for performance. Setting a lower value optimizes for resource conservation. Setting the value to 50 balances performance and resource conservation. Possible values are 1, 25, 50, 75, and 100.
|
|
3794
|
+
|
|
3789
3795
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-managedscalingpolicy.html#cfn-emr-cluster-managedscalingpolicy-utilizationperformanceindex
|
|
3790
3796
|
'''
|
|
3791
3797
|
result = self._values.get("utilization_performance_index")
|
|
@@ -2147,9 +2147,12 @@ class CfnMatchingWorkflow(
|
|
|
2147
2147
|
metaclass=jsii.JSIIMeta,
|
|
2148
2148
|
jsii_type="aws-cdk-lib.aws_entityresolution.CfnMatchingWorkflow",
|
|
2149
2149
|
):
|
|
2150
|
-
'''Creates a
|
|
2150
|
+
'''Creates a matching workflow that defines the configuration for a data processing job.
|
|
2151
2151
|
|
|
2152
|
-
|
|
2152
|
+
The workflow name must be unique. To modify an existing workflow, use ``UpdateMatchingWorkflow`` .
|
|
2153
|
+
.. epigraph::
|
|
2154
|
+
|
|
2155
|
+
For workflows where ``resolutionType`` is ML_MATCHING, incremental processing is not supported.
|
|
2153
2156
|
|
|
2154
2157
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html
|
|
2155
2158
|
:cloudformationResource: AWS::EntityResolution::MatchingWorkflow
|
|
@@ -2244,7 +2247,7 @@ class CfnMatchingWorkflow(
|
|
|
2244
2247
|
:param role_arn: The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
|
2245
2248
|
:param workflow_name: The name of the workflow. There can't be multiple ``MatchingWorkflows`` with the same name.
|
|
2246
2249
|
:param description: A description of the workflow.
|
|
2247
|
-
:param incremental_run_config: An object
|
|
2250
|
+
:param incremental_run_config: Optional. An object that defines the incremental run type. This object contains only the ``incrementalRunType`` field, which appears as "Automatic" in the console. .. epigraph:: For workflows where ``resolutionType`` is ``ML_MATCHING`` , incremental processing is not supported.
|
|
2248
2251
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
2249
2252
|
'''
|
|
2250
2253
|
if __debug__:
|
|
@@ -2430,7 +2433,7 @@ class CfnMatchingWorkflow(
|
|
|
2430
2433
|
def incremental_run_config(
|
|
2431
2434
|
self,
|
|
2432
2435
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMatchingWorkflow.IncrementalRunConfigProperty"]]:
|
|
2433
|
-
'''
|
|
2436
|
+
'''Optional.'''
|
|
2434
2437
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMatchingWorkflow.IncrementalRunConfigProperty"]], jsii.get(self, "incrementalRunConfig"))
|
|
2435
2438
|
|
|
2436
2439
|
@incremental_run_config.setter
|
|
@@ -2463,9 +2466,14 @@ class CfnMatchingWorkflow(
|
|
|
2463
2466
|
)
|
|
2464
2467
|
class IncrementalRunConfigProperty:
|
|
2465
2468
|
def __init__(self, *, incremental_run_type: builtins.str) -> None:
|
|
2466
|
-
'''
|
|
2469
|
+
'''Optional.
|
|
2470
|
+
|
|
2471
|
+
An object that defines the incremental run type. This object contains only the ``incrementalRunType`` field, which appears as "Automatic" in the console.
|
|
2472
|
+
.. epigraph::
|
|
2467
2473
|
|
|
2468
|
-
|
|
2474
|
+
For workflows where ``resolutionType`` is ``ML_MATCHING`` , incremental processing is not supported.
|
|
2475
|
+
|
|
2476
|
+
:param incremental_run_type: The type of incremental run. The only valid value is ``IMMEDIATE`` . This appears as "Automatic" in the console. .. epigraph:: For workflows where ``resolutionType`` is ``ML_MATCHING`` , incremental processing is not supported.
|
|
2469
2477
|
|
|
2470
2478
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html
|
|
2471
2479
|
:exampleMetadata: fixture=_generated
|
|
@@ -2489,9 +2497,11 @@ class CfnMatchingWorkflow(
|
|
|
2489
2497
|
|
|
2490
2498
|
@builtins.property
|
|
2491
2499
|
def incremental_run_type(self) -> builtins.str:
|
|
2492
|
-
'''The type of incremental run.
|
|
2500
|
+
'''The type of incremental run. The only valid value is ``IMMEDIATE`` . This appears as "Automatic" in the console.
|
|
2493
2501
|
|
|
2494
|
-
|
|
2502
|
+
.. epigraph::
|
|
2503
|
+
|
|
2504
|
+
For workflows where ``resolutionType`` is ``ML_MATCHING`` , incremental processing is not supported.
|
|
2495
2505
|
|
|
2496
2506
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-incrementalrunconfig.html#cfn-entityresolution-matchingworkflow-incrementalrunconfig-incrementalruntype
|
|
2497
2507
|
'''
|
|
@@ -3298,7 +3308,7 @@ class CfnMatchingWorkflowProps:
|
|
|
3298
3308
|
:param role_arn: The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.
|
|
3299
3309
|
:param workflow_name: The name of the workflow. There can't be multiple ``MatchingWorkflows`` with the same name.
|
|
3300
3310
|
:param description: A description of the workflow.
|
|
3301
|
-
:param incremental_run_config: An object
|
|
3311
|
+
:param incremental_run_config: Optional. An object that defines the incremental run type. This object contains only the ``incrementalRunType`` field, which appears as "Automatic" in the console. .. epigraph:: For workflows where ``resolutionType`` is ``ML_MATCHING`` , incremental processing is not supported.
|
|
3302
3312
|
:param tags: The tags used to organize, track, or control access for this resource.
|
|
3303
3313
|
|
|
3304
3314
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html
|
|
@@ -3466,7 +3476,12 @@ class CfnMatchingWorkflowProps:
|
|
|
3466
3476
|
def incremental_run_config(
|
|
3467
3477
|
self,
|
|
3468
3478
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMatchingWorkflow.IncrementalRunConfigProperty]]:
|
|
3469
|
-
'''
|
|
3479
|
+
'''Optional.
|
|
3480
|
+
|
|
3481
|
+
An object that defines the incremental run type. This object contains only the ``incrementalRunType`` field, which appears as "Automatic" in the console.
|
|
3482
|
+
.. epigraph::
|
|
3483
|
+
|
|
3484
|
+
For workflows where ``resolutionType`` is ``ML_MATCHING`` , incremental processing is not supported.
|
|
3470
3485
|
|
|
3471
3486
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-entityresolution-matchingworkflow.html#cfn-entityresolution-matchingworkflow-incrementalrunconfig
|
|
3472
3487
|
'''
|