aws-cdk-lib 2.155.0__py3-none-any.whl → 2.156.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.

@@ -1328,7 +1328,8 @@ class BucketEncryption(enum.Enum):
1328
1328
  default_stack_synthesizer=AppStagingSynthesizer.default_resources(
1329
1329
  app_id="my-app-id",
1330
1330
  staging_bucket_encryption=BucketEncryption.S3_MANAGED,
1331
- deployment_identities=DeploymentIdentities.cli_credentials()
1331
+ file_asset_publishing_role=BootstrapRole.from_role_arn("arn:aws:iam::123456789012:role/S3Access"),
1332
+ image_asset_publishing_role=BootstrapRole.from_role_arn("arn:aws:iam::123456789012:role/ECRAccess")
1332
1333
  )
1333
1334
  )
1334
1335
  '''
@@ -1827,21 +1828,19 @@ class BucketProps:
1827
1828
 
1828
1829
  Example::
1829
1830
 
1830
- source_bucket = s3.Bucket(self, "MyBucket",
1831
- versioned=True
1832
- )
1831
+ import aws_cdk.aws_kms as kms
1832
+
1833
1833
 
1834
- pipeline = codepipeline.Pipeline(self, "MyPipeline")
1835
- source_output = codepipeline.Artifact()
1836
- source_action = codepipeline_actions.S3SourceAction(
1837
- action_name="S3Source",
1838
- bucket=source_bucket,
1839
- bucket_key="path/to/file.zip",
1840
- output=source_output
1834
+ my_kms_key = kms.Key(self, "myKMSKey")
1835
+ my_bucket = s3.Bucket(self, "mySSEKMSEncryptedBucket",
1836
+ encryption=s3.BucketEncryption.KMS,
1837
+ encryption_key=my_kms_key,
1838
+ object_ownership=s3.ObjectOwnership.BUCKET_OWNER_ENFORCED
1841
1839
  )
1842
- pipeline.add_stage(
1843
- stage_name="Source",
1844
- actions=[source_action]
1840
+ cloudfront.Distribution(self, "myDist",
1841
+ default_behavior=cloudfront.BehaviorOptions(
1842
+ origin=origins.S3BucketOrigin.with_origin_access_control(my_bucket)
1843
+ )
1845
1844
  )
1846
1845
  '''
1847
1846
  if isinstance(website_redirect, dict):
@@ -420,10 +420,40 @@ task = tasks.BedrockInvokeModel(self, "Prompt Model",
420
420
  )
421
421
  ```
422
422
 
423
+ ### Using Input Path for S3 URI
424
+
425
+ Provide S3 URI as an input or output path to invoke a model
426
+
427
+ To specify the S3 URI as JSON path to your input or output fields, use props `s3InputUri` and `s3OutputUri` under BedrockInvokeModelProps and set
428
+ feature flag `@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask` to true.
429
+
430
+ If this flag is not enabled, the code will populate the S3Uri using `InputPath` and `OutputPath` fields, which is not recommended.
431
+
432
+ ```python
433
+ import aws_cdk.aws_bedrock as bedrock
434
+
435
+
436
+ model = bedrock.FoundationModel.from_foundation_model_id(self, "Model", bedrock.FoundationModelIdentifier.AMAZON_TITAN_TEXT_G1_EXPRESS_V1)
437
+
438
+ task = tasks.BedrockInvokeModel(self, "Prompt Model",
439
+ model=model,
440
+ input=tasks.BedrockInvokeModelInputProps(s3_input_uri=sfn.JsonPath.string_at("$.prompt")),
441
+ output=tasks.BedrockInvokeModelOutputProps(s3_output_uri=sfn.JsonPath.string_at("$.prompt"))
442
+ )
443
+ ```
444
+
423
445
  ### Using Input Path
424
446
 
425
447
  Provide S3 URI as an input or output path to invoke a model
426
448
 
449
+ Currently, input and output Path provided in the BedrockInvokeModelProps input is defined as S3URI field under task definition of state machine.
450
+ To modify the existing behaviour, set `@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask` to true.
451
+
452
+ If this feature flag is enabled, S3URI fields will be generated from other Props(`s3InputUri` and `s3OutputUri`), and the given inputPath, OutputPath will be rendered as
453
+ it is in the JSON task definition.
454
+
455
+ If the feature flag is set to `false`, the behavior will be to populate the S3Uri using the `InputPath` and `OutputPath` fields, which is not recommended.
456
+
427
457
  ```python
428
458
  import aws_cdk.aws_bedrock as bedrock
429
459
 
@@ -4857,46 +4887,59 @@ class BedrockInvokeModel(
4857
4887
  @jsii.data_type(
4858
4888
  jsii_type="aws-cdk-lib.aws_stepfunctions_tasks.BedrockInvokeModelInputProps",
4859
4889
  jsii_struct_bases=[],
4860
- name_mapping={"s3_location": "s3Location"},
4890
+ name_mapping={"s3_input_uri": "s3InputUri", "s3_location": "s3Location"},
4861
4891
  )
4862
4892
  class BedrockInvokeModelInputProps:
4863
4893
  def __init__(
4864
4894
  self,
4865
4895
  *,
4896
+ s3_input_uri: typing.Optional[builtins.str] = None,
4866
4897
  s3_location: typing.Optional[typing.Union[_Location_0948fa7f, typing.Dict[builtins.str, typing.Any]]] = None,
4867
4898
  ) -> None:
4868
4899
  '''Location to retrieve the input data, prior to calling Bedrock InvokeModel.
4869
4900
 
4901
+ :param s3_input_uri: The source location where the API response is written. This field can be used to specify s3 URI in the form of token Default: - The API response body is returned in the result.
4870
4902
  :param s3_location: S3 object to retrieve the input data from. If the S3 location is not set, then the Body must be set. Default: - Input data is retrieved from the ``body`` field
4871
4903
 
4872
4904
  :see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-bedrock.html
4873
- :exampleMetadata: fixture=_generated
4905
+ :exampleMetadata: infused
4874
4906
 
4875
4907
  Example::
4876
4908
 
4877
- # The code below shows an example of how to instantiate this type.
4878
- # The values are placeholders you should change.
4879
- from aws_cdk import aws_stepfunctions_tasks as stepfunctions_tasks
4909
+ import aws_cdk.aws_bedrock as bedrock
4880
4910
 
4881
- bedrock_invoke_model_input_props = stepfunctions_tasks.BedrockInvokeModelInputProps(
4882
- s3_location=Location(
4883
- bucket_name="bucketName",
4884
- object_key="objectKey",
4885
4911
 
4886
- # the properties below are optional
4887
- object_version="objectVersion"
4888
- )
4912
+ model = bedrock.FoundationModel.from_foundation_model_id(self, "Model", bedrock.FoundationModelIdentifier.AMAZON_TITAN_TEXT_G1_EXPRESS_V1)
4913
+
4914
+ task = tasks.BedrockInvokeModel(self, "Prompt Model",
4915
+ model=model,
4916
+ input=tasks.BedrockInvokeModelInputProps(s3_input_uri=sfn.JsonPath.string_at("$.prompt")),
4917
+ output=tasks.BedrockInvokeModelOutputProps(s3_output_uri=sfn.JsonPath.string_at("$.prompt"))
4889
4918
  )
4890
4919
  '''
4891
4920
  if isinstance(s3_location, dict):
4892
4921
  s3_location = _Location_0948fa7f(**s3_location)
4893
4922
  if __debug__:
4894
4923
  type_hints = typing.get_type_hints(_typecheckingstub__5832c6287635fafcd3211864b6568285ae981df509ea5c6b8dd8458d0254c232)
4924
+ check_type(argname="argument s3_input_uri", value=s3_input_uri, expected_type=type_hints["s3_input_uri"])
4895
4925
  check_type(argname="argument s3_location", value=s3_location, expected_type=type_hints["s3_location"])
4896
4926
  self._values: typing.Dict[builtins.str, typing.Any] = {}
4927
+ if s3_input_uri is not None:
4928
+ self._values["s3_input_uri"] = s3_input_uri
4897
4929
  if s3_location is not None:
4898
4930
  self._values["s3_location"] = s3_location
4899
4931
 
4932
+ @builtins.property
4933
+ def s3_input_uri(self) -> typing.Optional[builtins.str]:
4934
+ '''The source location where the API response is written.
4935
+
4936
+ This field can be used to specify s3 URI in the form of token
4937
+
4938
+ :default: - The API response body is returned in the result.
4939
+ '''
4940
+ result = self._values.get("s3_input_uri")
4941
+ return typing.cast(typing.Optional[builtins.str], result)
4942
+
4900
4943
  @builtins.property
4901
4944
  def s3_location(self) -> typing.Optional[_Location_0948fa7f]:
4902
4945
  '''S3 object to retrieve the input data from.
@@ -4923,35 +4966,34 @@ class BedrockInvokeModelInputProps:
4923
4966
  @jsii.data_type(
4924
4967
  jsii_type="aws-cdk-lib.aws_stepfunctions_tasks.BedrockInvokeModelOutputProps",
4925
4968
  jsii_struct_bases=[],
4926
- name_mapping={"s3_location": "s3Location"},
4969
+ name_mapping={"s3_location": "s3Location", "s3_output_uri": "s3OutputUri"},
4927
4970
  )
4928
4971
  class BedrockInvokeModelOutputProps:
4929
4972
  def __init__(
4930
4973
  self,
4931
4974
  *,
4932
4975
  s3_location: typing.Optional[typing.Union[_Location_0948fa7f, typing.Dict[builtins.str, typing.Any]]] = None,
4976
+ s3_output_uri: typing.Optional[builtins.str] = None,
4933
4977
  ) -> None:
4934
4978
  '''Location where the Bedrock InvokeModel API response is written.
4935
4979
 
4936
4980
  :param s3_location: S3 object where the Bedrock InvokeModel API response is written. If you specify this field, the API response body is replaced with a reference to the Amazon S3 location of the original output. Default: - Response body is returned in the task result
4981
+ :param s3_output_uri: The destination location where the API response is written. This field can be used to specify s3 URI in the form of token Default: - The API response body is returned in the result.
4937
4982
 
4938
4983
  :see: https://docs.aws.amazon.com/step-functions/latest/dg/connect-bedrock.html
4939
- :exampleMetadata: fixture=_generated
4984
+ :exampleMetadata: infused
4940
4985
 
4941
4986
  Example::
4942
4987
 
4943
- # The code below shows an example of how to instantiate this type.
4944
- # The values are placeholders you should change.
4945
- from aws_cdk import aws_stepfunctions_tasks as stepfunctions_tasks
4988
+ import aws_cdk.aws_bedrock as bedrock
4946
4989
 
4947
- bedrock_invoke_model_output_props = stepfunctions_tasks.BedrockInvokeModelOutputProps(
4948
- s3_location=Location(
4949
- bucket_name="bucketName",
4950
- object_key="objectKey",
4951
4990
 
4952
- # the properties below are optional
4953
- object_version="objectVersion"
4954
- )
4991
+ model = bedrock.FoundationModel.from_foundation_model_id(self, "Model", bedrock.FoundationModelIdentifier.AMAZON_TITAN_TEXT_G1_EXPRESS_V1)
4992
+
4993
+ task = tasks.BedrockInvokeModel(self, "Prompt Model",
4994
+ model=model,
4995
+ input=tasks.BedrockInvokeModelInputProps(s3_input_uri=sfn.JsonPath.string_at("$.prompt")),
4996
+ output=tasks.BedrockInvokeModelOutputProps(s3_output_uri=sfn.JsonPath.string_at("$.prompt"))
4955
4997
  )
4956
4998
  '''
4957
4999
  if isinstance(s3_location, dict):
@@ -4959,9 +5001,12 @@ class BedrockInvokeModelOutputProps:
4959
5001
  if __debug__:
4960
5002
  type_hints = typing.get_type_hints(_typecheckingstub__1ae5c9f4810ca6d7749a0e5f6df435956d3660251fb9427f7b8aea21bc5a7fb1)
4961
5003
  check_type(argname="argument s3_location", value=s3_location, expected_type=type_hints["s3_location"])
5004
+ check_type(argname="argument s3_output_uri", value=s3_output_uri, expected_type=type_hints["s3_output_uri"])
4962
5005
  self._values: typing.Dict[builtins.str, typing.Any] = {}
4963
5006
  if s3_location is not None:
4964
5007
  self._values["s3_location"] = s3_location
5008
+ if s3_output_uri is not None:
5009
+ self._values["s3_output_uri"] = s3_output_uri
4965
5010
 
4966
5011
  @builtins.property
4967
5012
  def s3_location(self) -> typing.Optional[_Location_0948fa7f]:
@@ -4975,6 +5020,17 @@ class BedrockInvokeModelOutputProps:
4975
5020
  result = self._values.get("s3_location")
4976
5021
  return typing.cast(typing.Optional[_Location_0948fa7f], result)
4977
5022
 
5023
+ @builtins.property
5024
+ def s3_output_uri(self) -> typing.Optional[builtins.str]:
5025
+ '''The destination location where the API response is written.
5026
+
5027
+ This field can be used to specify s3 URI in the form of token
5028
+
5029
+ :default: - The API response body is returned in the result.
5030
+ '''
5031
+ result = self._values.get("s3_output_uri")
5032
+ return typing.cast(typing.Optional[builtins.str], result)
5033
+
4978
5034
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
4979
5035
  return isinstance(rhs, self.__class__) and rhs._values == self._values
4980
5036
 
@@ -29419,12 +29475,12 @@ class SageMakerCreateTrainingJob(
29419
29475
  id: builtins.str,
29420
29476
  *,
29421
29477
  algorithm_specification: typing.Union[AlgorithmSpecification, typing.Dict[builtins.str, typing.Any]],
29422
- input_data_config: typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]],
29423
29478
  output_data_config: typing.Union[OutputDataConfig, typing.Dict[builtins.str, typing.Any]],
29424
29479
  training_job_name: builtins.str,
29425
29480
  enable_network_isolation: typing.Optional[builtins.bool] = None,
29426
29481
  environment: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29427
29482
  hyperparameters: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
29483
+ input_data_config: typing.Optional[typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]]] = None,
29428
29484
  resource_config: typing.Optional[typing.Union[ResourceConfig, typing.Dict[builtins.str, typing.Any]]] = None,
29429
29485
  role: typing.Optional[_IRole_235f5d8e] = None,
29430
29486
  stopping_condition: typing.Optional[typing.Union["StoppingCondition", typing.Dict[builtins.str, typing.Any]]] = None,
@@ -29447,12 +29503,12 @@ class SageMakerCreateTrainingJob(
29447
29503
  :param scope: -
29448
29504
  :param id: Descriptive identifier for this chainable.
29449
29505
  :param algorithm_specification: Identifies the training algorithm to use.
29450
- :param input_data_config: Describes the various datasets (e.g. train, validation, test) and the Amazon S3 location where stored.
29451
29506
  :param output_data_config: Identifies the Amazon S3 location where you want Amazon SageMaker to save the results of model training.
29452
29507
  :param training_job_name: Training Job Name.
29453
29508
  :param enable_network_isolation: Isolates the training container. No inbound or outbound network calls can be made to or from the training container. Default: false
29454
29509
  :param environment: Environment variables to set in the Docker container. Default: - No environment variables
29455
29510
  :param hyperparameters: Algorithm-specific parameters that influence the quality of the model. Set hyperparameters before you start the learning process. For a list of hyperparameters provided by Amazon SageMaker Default: - No hyperparameters
29511
+ :param input_data_config: Describes the various datasets (e.g. train, validation, test) and the Amazon S3 location where stored. Default: - No inputDataConfig
29456
29512
  :param resource_config: Specifies the resources, ML compute instances, and ML storage volumes to deploy for model training. Default: - 1 instance of EC2 ``M4.XLarge`` with ``10GB`` volume
29457
29513
  :param role: Role for the Training Job. The role must be granted all necessary permissions for the SageMaker training job to be able to operate. See https://docs.aws.amazon.com/fr_fr/sagemaker/latest/dg/sagemaker-roles.html#sagemaker-roles-createtrainingjob-perms Default: - a role will be created.
29458
29514
  :param stopping_condition: Sets a time limit for training. Default: - max runtime of 1 hour
@@ -29477,12 +29533,12 @@ class SageMakerCreateTrainingJob(
29477
29533
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
29478
29534
  props = SageMakerCreateTrainingJobProps(
29479
29535
  algorithm_specification=algorithm_specification,
29480
- input_data_config=input_data_config,
29481
29536
  output_data_config=output_data_config,
29482
29537
  training_job_name=training_job_name,
29483
29538
  enable_network_isolation=enable_network_isolation,
29484
29539
  environment=environment,
29485
29540
  hyperparameters=hyperparameters,
29541
+ input_data_config=input_data_config,
29486
29542
  resource_config=resource_config,
29487
29543
  role=role,
29488
29544
  stopping_condition=stopping_condition,
@@ -29564,12 +29620,12 @@ class SageMakerCreateTrainingJob(
29564
29620
  "task_timeout": "taskTimeout",
29565
29621
  "timeout": "timeout",
29566
29622
  "algorithm_specification": "algorithmSpecification",
29567
- "input_data_config": "inputDataConfig",
29568
29623
  "output_data_config": "outputDataConfig",
29569
29624
  "training_job_name": "trainingJobName",
29570
29625
  "enable_network_isolation": "enableNetworkIsolation",
29571
29626
  "environment": "environment",
29572
29627
  "hyperparameters": "hyperparameters",
29628
+ "input_data_config": "inputDataConfig",
29573
29629
  "resource_config": "resourceConfig",
29574
29630
  "role": "role",
29575
29631
  "stopping_condition": "stoppingCondition",
@@ -29594,12 +29650,12 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29594
29650
  task_timeout: typing.Optional[_Timeout_d7c10551] = None,
29595
29651
  timeout: typing.Optional[_Duration_4839e8c3] = None,
29596
29652
  algorithm_specification: typing.Union[AlgorithmSpecification, typing.Dict[builtins.str, typing.Any]],
29597
- input_data_config: typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]],
29598
29653
  output_data_config: typing.Union[OutputDataConfig, typing.Dict[builtins.str, typing.Any]],
29599
29654
  training_job_name: builtins.str,
29600
29655
  enable_network_isolation: typing.Optional[builtins.bool] = None,
29601
29656
  environment: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
29602
29657
  hyperparameters: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
29658
+ input_data_config: typing.Optional[typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]]] = None,
29603
29659
  resource_config: typing.Optional[typing.Union[ResourceConfig, typing.Dict[builtins.str, typing.Any]]] = None,
29604
29660
  role: typing.Optional[_IRole_235f5d8e] = None,
29605
29661
  stopping_condition: typing.Optional[typing.Union["StoppingCondition", typing.Dict[builtins.str, typing.Any]]] = None,
@@ -29621,12 +29677,12 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29621
29677
  :param task_timeout: Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface Default: - None
29622
29678
  :param timeout: (deprecated) Timeout for the task. Default: - None
29623
29679
  :param algorithm_specification: Identifies the training algorithm to use.
29624
- :param input_data_config: Describes the various datasets (e.g. train, validation, test) and the Amazon S3 location where stored.
29625
29680
  :param output_data_config: Identifies the Amazon S3 location where you want Amazon SageMaker to save the results of model training.
29626
29681
  :param training_job_name: Training Job Name.
29627
29682
  :param enable_network_isolation: Isolates the training container. No inbound or outbound network calls can be made to or from the training container. Default: false
29628
29683
  :param environment: Environment variables to set in the Docker container. Default: - No environment variables
29629
29684
  :param hyperparameters: Algorithm-specific parameters that influence the quality of the model. Set hyperparameters before you start the learning process. For a list of hyperparameters provided by Amazon SageMaker Default: - No hyperparameters
29685
+ :param input_data_config: Describes the various datasets (e.g. train, validation, test) and the Amazon S3 location where stored. Default: - No inputDataConfig
29630
29686
  :param resource_config: Specifies the resources, ML compute instances, and ML storage volumes to deploy for model training. Default: - 1 instance of EC2 ``M4.XLarge`` with ``10GB`` volume
29631
29687
  :param role: Role for the Training Job. The role must be granted all necessary permissions for the SageMaker training job to be able to operate. See https://docs.aws.amazon.com/fr_fr/sagemaker/latest/dg/sagemaker-roles.html#sagemaker-roles-createtrainingjob-perms Default: - a role will be created.
29632
29688
  :param stopping_condition: Sets a time limit for training. Default: - max runtime of 1 hour
@@ -29692,12 +29748,12 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29692
29748
  check_type(argname="argument task_timeout", value=task_timeout, expected_type=type_hints["task_timeout"])
29693
29749
  check_type(argname="argument timeout", value=timeout, expected_type=type_hints["timeout"])
29694
29750
  check_type(argname="argument algorithm_specification", value=algorithm_specification, expected_type=type_hints["algorithm_specification"])
29695
- check_type(argname="argument input_data_config", value=input_data_config, expected_type=type_hints["input_data_config"])
29696
29751
  check_type(argname="argument output_data_config", value=output_data_config, expected_type=type_hints["output_data_config"])
29697
29752
  check_type(argname="argument training_job_name", value=training_job_name, expected_type=type_hints["training_job_name"])
29698
29753
  check_type(argname="argument enable_network_isolation", value=enable_network_isolation, expected_type=type_hints["enable_network_isolation"])
29699
29754
  check_type(argname="argument environment", value=environment, expected_type=type_hints["environment"])
29700
29755
  check_type(argname="argument hyperparameters", value=hyperparameters, expected_type=type_hints["hyperparameters"])
29756
+ check_type(argname="argument input_data_config", value=input_data_config, expected_type=type_hints["input_data_config"])
29701
29757
  check_type(argname="argument resource_config", value=resource_config, expected_type=type_hints["resource_config"])
29702
29758
  check_type(argname="argument role", value=role, expected_type=type_hints["role"])
29703
29759
  check_type(argname="argument stopping_condition", value=stopping_condition, expected_type=type_hints["stopping_condition"])
@@ -29705,7 +29761,6 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29705
29761
  check_type(argname="argument vpc_config", value=vpc_config, expected_type=type_hints["vpc_config"])
29706
29762
  self._values: typing.Dict[builtins.str, typing.Any] = {
29707
29763
  "algorithm_specification": algorithm_specification,
29708
- "input_data_config": input_data_config,
29709
29764
  "output_data_config": output_data_config,
29710
29765
  "training_job_name": training_job_name,
29711
29766
  }
@@ -29739,6 +29794,8 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29739
29794
  self._values["environment"] = environment
29740
29795
  if hyperparameters is not None:
29741
29796
  self._values["hyperparameters"] = hyperparameters
29797
+ if input_data_config is not None:
29798
+ self._values["input_data_config"] = input_data_config
29742
29799
  if resource_config is not None:
29743
29800
  self._values["resource_config"] = resource_config
29744
29801
  if role is not None:
@@ -29912,13 +29969,6 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29912
29969
  assert result is not None, "Required property 'algorithm_specification' is missing"
29913
29970
  return typing.cast(AlgorithmSpecification, result)
29914
29971
 
29915
- @builtins.property
29916
- def input_data_config(self) -> typing.List[Channel]:
29917
- '''Describes the various datasets (e.g. train, validation, test) and the Amazon S3 location where stored.'''
29918
- result = self._values.get("input_data_config")
29919
- assert result is not None, "Required property 'input_data_config' is missing"
29920
- return typing.cast(typing.List[Channel], result)
29921
-
29922
29972
  @builtins.property
29923
29973
  def output_data_config(self) -> OutputDataConfig:
29924
29974
  '''Identifies the Amazon S3 location where you want Amazon SageMaker to save the results of model training.'''
@@ -29971,6 +30021,15 @@ class SageMakerCreateTrainingJobProps(_TaskStateBaseProps_3a62b6d0):
29971
30021
  result = self._values.get("hyperparameters")
29972
30022
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
29973
30023
 
30024
+ @builtins.property
30025
+ def input_data_config(self) -> typing.Optional[typing.List[Channel]]:
30026
+ '''Describes the various datasets (e.g. train, validation, test) and the Amazon S3 location where stored.
30027
+
30028
+ :default: - No inputDataConfig
30029
+ '''
30030
+ result = self._values.get("input_data_config")
30031
+ return typing.cast(typing.Optional[typing.List[Channel]], result)
30032
+
29974
30033
  @builtins.property
29975
30034
  def resource_config(self) -> typing.Optional[ResourceConfig]:
29976
30035
  '''Specifies the resources, ML compute instances, and ML storage volumes to deploy for model training.
@@ -34755,6 +34814,7 @@ def _typecheckingstub__3b20c515efa874adacf78d373dbda10fc59e519a3bd1b280ecbf56409
34755
34814
 
34756
34815
  def _typecheckingstub__5832c6287635fafcd3211864b6568285ae981df509ea5c6b8dd8458d0254c232(
34757
34816
  *,
34817
+ s3_input_uri: typing.Optional[builtins.str] = None,
34758
34818
  s3_location: typing.Optional[typing.Union[_Location_0948fa7f, typing.Dict[builtins.str, typing.Any]]] = None,
34759
34819
  ) -> None:
34760
34820
  """Type checking stubs"""
@@ -34763,6 +34823,7 @@ def _typecheckingstub__5832c6287635fafcd3211864b6568285ae981df509ea5c6b8dd8458d0
34763
34823
  def _typecheckingstub__1ae5c9f4810ca6d7749a0e5f6df435956d3660251fb9427f7b8aea21bc5a7fb1(
34764
34824
  *,
34765
34825
  s3_location: typing.Optional[typing.Union[_Location_0948fa7f, typing.Dict[builtins.str, typing.Any]]] = None,
34826
+ s3_output_uri: typing.Optional[builtins.str] = None,
34766
34827
  ) -> None:
34767
34828
  """Type checking stubs"""
34768
34829
  pass
@@ -37181,12 +37242,12 @@ def _typecheckingstub__28a8bfbbe70fbb6daf63ef03a7856f2801f4c204a85129b4c8c78b357
37181
37242
  id: builtins.str,
37182
37243
  *,
37183
37244
  algorithm_specification: typing.Union[AlgorithmSpecification, typing.Dict[builtins.str, typing.Any]],
37184
- input_data_config: typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]],
37185
37245
  output_data_config: typing.Union[OutputDataConfig, typing.Dict[builtins.str, typing.Any]],
37186
37246
  training_job_name: builtins.str,
37187
37247
  enable_network_isolation: typing.Optional[builtins.bool] = None,
37188
37248
  environment: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
37189
37249
  hyperparameters: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
37250
+ input_data_config: typing.Optional[typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]]] = None,
37190
37251
  resource_config: typing.Optional[typing.Union[ResourceConfig, typing.Dict[builtins.str, typing.Any]]] = None,
37191
37252
  role: typing.Optional[_IRole_235f5d8e] = None,
37192
37253
  stopping_condition: typing.Optional[typing.Union[StoppingCondition, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -37229,12 +37290,12 @@ def _typecheckingstub__5eab5c7c6ad3bd91898189dd3d054ff0770c91123ed264c153dbffeb0
37229
37290
  task_timeout: typing.Optional[_Timeout_d7c10551] = None,
37230
37291
  timeout: typing.Optional[_Duration_4839e8c3] = None,
37231
37292
  algorithm_specification: typing.Union[AlgorithmSpecification, typing.Dict[builtins.str, typing.Any]],
37232
- input_data_config: typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]],
37233
37293
  output_data_config: typing.Union[OutputDataConfig, typing.Dict[builtins.str, typing.Any]],
37234
37294
  training_job_name: builtins.str,
37235
37295
  enable_network_isolation: typing.Optional[builtins.bool] = None,
37236
37296
  environment: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
37237
37297
  hyperparameters: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
37298
+ input_data_config: typing.Optional[typing.Sequence[typing.Union[Channel, typing.Dict[builtins.str, typing.Any]]]] = None,
37238
37299
  resource_config: typing.Optional[typing.Union[ResourceConfig, typing.Dict[builtins.str, typing.Any]]] = None,
37239
37300
  role: typing.Optional[_IRole_235f5d8e] = None,
37240
37301
  stopping_condition: typing.Optional[typing.Union[StoppingCondition, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -3728,6 +3728,19 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
3728
3728
  '''
3729
3729
  return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_8_0"))
3730
3730
 
3731
+ @jsii.python.classproperty
3732
+ @jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_9_0")
3733
+ def SYNTHETICS_NODEJS_PUPPETEER_9_0(cls) -> "Runtime":
3734
+ '''``syn-nodejs-puppeteer-9.0`` includes the following: - Lambda runtime Node.js 20.x - Puppeteer-core version 22.12.1 - Chromium version 126.0.6478.126.
3735
+
3736
+ New Features:
3737
+
3738
+ - **Bug fixes** Bug fix to enable visual monitoring capabilities.
3739
+
3740
+ :see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-9.0
3741
+ '''
3742
+ return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_9_0"))
3743
+
3731
3744
  @jsii.python.classproperty
3732
3745
  @jsii.member(jsii_name="SYNTHETICS_PYTHON_SELENIUM_1_0")
3733
3746
  def SYNTHETICS_PYTHON_SELENIUM_1_0(cls) -> "Runtime":
@@ -377,6 +377,22 @@ for more details.
377
377
  }
378
378
  }
379
379
  ```
380
+
381
+ * `@aws-cdk/aws-stepfunctions-taks:useNewS3UriParametersForBedrockInvokeModelTask`
382
+
383
+ When enabled, use new props for S3 URI under `input` and `output` fields in task definition of state machine for bedrock invoke model.
384
+
385
+ When this feature flag is enabled, use newly introduced props `s3InputUri` and `s3OutputUri` to populate S3 uri under input and output fields in state machine task definition for Bedrock invoke model.
386
+
387
+ *cdk.json*
388
+
389
+ ```json
390
+ {
391
+ "context": {
392
+ "@aws-cdk/aws-stepfunctions-tasks:useNewS3UriParametersForBedrockInvokeModelTask": true
393
+ }
394
+ }
395
+ ```
380
396
  '''
381
397
  from pkgutil import extend_path
382
398
  __path__ = extend_path(__path__, __name__)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk-lib
3
- Version: 2.155.0
3
+ Version: 2.156.0
4
4
  Summary: Version 2 of the AWS Cloud Development Kit library
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -1,7 +1,7 @@
1
- aws_cdk/__init__.py,sha256=FUsZJgTwntpY36QGRIfjRqwpfiXGD4w2V683Zo57l6E,1791752
1
+ aws_cdk/__init__.py,sha256=8H_B3WFXZnw8GAlhzRHLXywBvi5TKG7cmfGg95CkTk8,1791768
2
2
  aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_cdk/_jsii/__init__.py,sha256=C9ALEUAdzIf0nxHa2aCPta-YT3I7tqwYf5kJihF4ugk,614
4
- aws_cdk/_jsii/aws-cdk-lib@2.155.0.jsii.tgz,sha256=wONOSbeVm8LikJhiLufOSfyHQH2zpW0J9HqCC1OQo1o,22611778
3
+ aws_cdk/_jsii/__init__.py,sha256=9hsBqo7NqXZw9PprCxbt-jCvhzYl6LcMapEvtyvNwWU,614
4
+ aws_cdk/_jsii/aws-cdk-lib@2.156.0.jsii.tgz,sha256=MSIikgYfpuW8A26TSHLp1c7yp3dn5da2BwXk1bFMf-A,22644559
5
5
  aws_cdk/alexa_ask/__init__.py,sha256=zUGLCwba1AKRaTqnt0HDNOPL3kKC2iO22vy2Hh5coVg,35402
6
6
  aws_cdk/assertions/__init__.py,sha256=Htb0RTIq3dd-7ylxKsnLI-B4QSOq-Ql1RlznxvqNrQU,91338
7
7
  aws_cdk/aws_accessanalyzer/__init__.py,sha256=LSHAqzTbJ9EC1wrpiYYG1d0qTldyTr_ooJk-bzCNw94,42072
@@ -37,7 +37,7 @@ aws_cdk/aws_backup/__init__.py,sha256=W1E5BhXOj-3VGfrkPBHpV1oeyA5DLdxbK-aPXDcW1W
37
37
  aws_cdk/aws_backupgateway/__init__.py,sha256=SWsaqSfocZjbHA-lBW1ANyAhgGhFGh2gqc8j5gh07HQ,23603
38
38
  aws_cdk/aws_batch/__init__.py,sha256=oMo7oM2Ed-ctviHpguNFs6kkUtQs_FsE4j7qLsdaRSM,1426259
39
39
  aws_cdk/aws_bcmdataexports/__init__.py,sha256=WJhc7DRCXkhW5arOK3gLqpvF3mQZCFOLAaREWboGd1Q,54659
40
- aws_cdk/aws_bedrock/__init__.py,sha256=csYkR8dzQKVBxTwFJtPwwroUAgZvu2b4-CQfzMnC0rI,1109834
40
+ aws_cdk/aws_bedrock/__init__.py,sha256=N3XMnwLNo0oUdvcFZBydRDZBsqlGXG2VdrYje0Wv2Ac,1111012
41
41
  aws_cdk/aws_billingconductor/__init__.py,sha256=GvMbTKomXw64AMbMGAbkgpRdK758YrFdyzegUFk_QSc,142098
42
42
  aws_cdk/aws_budgets/__init__.py,sha256=PYHzGPk9Q8x8A7ABHjCN5iAztiLqoYSLi56_Hh7iWyw,162078
43
43
  aws_cdk/aws_cassandra/__init__.py,sha256=MZHyqkF-uTyDRc_AjKH6O0xRl1hX-cRRXaGth8-BoZg,146344
@@ -48,14 +48,14 @@ aws_cdk/aws_cleanrooms/__init__.py,sha256=jmZrRlAYGuwwyDdXNybjAPuyN1y-BdSi4wLRyu
48
48
  aws_cdk/aws_cleanroomsml/__init__.py,sha256=kB5aTRZ0raMWpEBz-Lrs0UcJkHQUzoFQ_6Ul7FipNJI,48343
49
49
  aws_cdk/aws_cloud9/__init__.py,sha256=4F9YEi-KSwnro2tdchg0g2CTatiuYL8Z75JdCUcvE_k,42126
50
50
  aws_cdk/aws_cloudformation/__init__.py,sha256=gLuJPayx3CUvXeVlJ0xvawsupTdJGkGP1MsSvfWbJhQ,392310
51
- aws_cdk/aws_cloudfront/__init__.py,sha256=f4cK7U0aGfoGlgqDVWZM_Ff2hXsNjIwsPlHBLVcgd2g,1480357
51
+ aws_cdk/aws_cloudfront/__init__.py,sha256=iOvS1dIHW0lRtQfgBrrLbJx2zjR9hNmUvk_58CMNW8Q,1505830
52
52
  aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=LanvMgGMqxQ6D0YN9RcWeO5m9BPRgPc9ciDBwn5HLIo,135393
53
- aws_cdk/aws_cloudfront_origins/__init__.py,sha256=8V5Yq4s5Lf0gj3E-3OlnB9HvX37r0bpvUpVjqIDMO10,110507
53
+ aws_cdk/aws_cloudfront_origins/__init__.py,sha256=-ZjuqzhpMTl8l4G3nbourKoZPTi7e3dNxYhojlI9cOo,212755
54
54
  aws_cdk/aws_cloudtrail/__init__.py,sha256=xAYD5UV7lOJPsaNyOrbHhRgIHF9OiuU-P4z1QUes7tQ,316019
55
55
  aws_cdk/aws_cloudwatch/__init__.py,sha256=GcurGoJGd15N-VCRGqwSD5t2XEWiscKJtqyGamA-DF8,803518
56
56
  aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=YS4vVIqy1q30xxtj4t4n_sTjLfDOgBpMJF9HqVuXub0,21402
57
57
  aws_cdk/aws_codeartifact/__init__.py,sha256=xqju4lQkEh6qsSWkcFLB9grb1nktgI3GBq6MW_9Ygjw,87067
58
- aws_cdk/aws_codebuild/__init__.py,sha256=vpZiu5xcfkuunj9MyZnhpL0N6E88mIjiYNGC6gUR1Wc,1024295
58
+ aws_cdk/aws_codebuild/__init__.py,sha256=DOr0W-tvdqcVueB2mGPXhBIpcBIAS_1JEebTKZNNVJE,1024249
59
59
  aws_cdk/aws_codecommit/__init__.py,sha256=RzdD0cttkKH_SGGZEHsBMem4PGJMN4lI_pkKlZ882Lk,236981
60
60
  aws_cdk/aws_codeconnections/__init__.py,sha256=KPaXbIHD94IqtospMhiGo4kakoUOb12Ue1SuWpcUYuM,18996
61
61
  aws_cdk/aws_codedeploy/__init__.py,sha256=AZPmSFD7UUkSr3qsHRzDlP4KSN5sXNCbfQz7KA9r6Ek,605599
@@ -86,20 +86,20 @@ aws_cdk/aws_devopsguru/__init__.py,sha256=L7XVPsuvRcojV3ZWoZ9oQwW5-W9MIA_q2wSamp
86
86
  aws_cdk/aws_directoryservice/__init__.py,sha256=FvdZ6t11taH4zyqBoAhdURY3EItKM5cjQ78Ljy33iyo,65696
87
87
  aws_cdk/aws_dlm/__init__.py,sha256=64Zjp7UQU4zpfXLEQraTGLCqSucsSqwl9KXZ2NftQso,244069
88
88
  aws_cdk/aws_dms/__init__.py,sha256=ve0pYRgJZFGiyuMPFvDBbd2T1LFiAzknhFysTQi7X94,893557
89
- aws_cdk/aws_docdb/__init__.py,sha256=LJZdhLKn7gm6Vc_yiP9TCQBFJNTo0sfiwz--OPilUZI,314800
89
+ aws_cdk/aws_docdb/__init__.py,sha256=aMnUHJwHcjImzg4CrQxGF5St7TtHdcbI7nlnaSHjQz8,317319
90
90
  aws_cdk/aws_docdbelastic/__init__.py,sha256=LvdizkXJJjNyDwUbjOpPRMAbwcyyCJtzQWfM3ib4x0U,45778
91
91
  aws_cdk/aws_dynamodb/__init__.py,sha256=PzrYr3BgOopTh-fsYjVIBc99fEE9gaKZ3s8u3TvgFzM,938225
92
- aws_cdk/aws_ec2/__init__.py,sha256=gcY2FJhEn3JjIDIXMGam6_tA6Ivh7p5VDQyBNa3DnMo,5604212
92
+ aws_cdk/aws_ec2/__init__.py,sha256=DCLuiixwxeqQ58I75dDHxD4es1fjx0nYfEnht4sKOk8,5604013
93
93
  aws_cdk/aws_ecr/__init__.py,sha256=jpys3f4KEZEgbzA_L_bB-3hmCAYnOGoifNwc-k8etkk,297482
94
94
  aws_cdk/aws_ecr_assets/__init__.py,sha256=XwzseEGjGjqPcIAaw_vxLLxcm5qmFCEoGp3vFQebPGg,83627
95
- aws_cdk/aws_ecs/__init__.py,sha256=dU-4amzp0JriAGTNuz_zGb2tVAn_6sh5ORLcScDVSQo,2559755
96
- aws_cdk/aws_ecs_patterns/__init__.py,sha256=uPwp_RgoE-uB_S_SSI5wVRkv1q725u8yFLkRVBwd-vo,1019737
95
+ aws_cdk/aws_ecs/__init__.py,sha256=3wnNLwjHh4pi0zkK1DhQeSC7_3BBdmGBNNqTTUQZKK0,2559714
96
+ aws_cdk/aws_ecs_patterns/__init__.py,sha256=lTExEgOZ-Tsbw4p3uTeGn8RPLW18tyXDN0kLBp5iq0Y,1024983
97
97
  aws_cdk/aws_efs/__init__.py,sha256=NxQAPRN9S3PrcR8GMiSeMtUBayXAe7KCWtwCi6gQ0X0,276175
98
- aws_cdk/aws_eks/__init__.py,sha256=scT77ty0fhL4Y_Xl01Xf1JPxN_M7K3qiEGlQwrkwgJg,1145655
98
+ aws_cdk/aws_eks/__init__.py,sha256=qyEIAmWvR6duR88i4XCh1NDvnfjizn9pRb_0ycZpwfU,1146947
99
99
  aws_cdk/aws_elasticache/__init__.py,sha256=0AxAnvIKUbwDR3FaWAz6aGv13lfVdO0egUR3h7675vE,522208
100
100
  aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zG5rRLiXJcuTzewIBmUe0ExSTiNga1C0N5ew7zX__XM,164485
101
101
  aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=mKphApMa6sexSSlpyjQOAG8BY3F3TT2FJeXmY7GPblM,162160
102
- aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=YdNYLXNIfxUD6xzJn6w5PNWN1xiAEcfJwaGGBN3l60E,1539261
102
+ aws_cdk/aws_elasticloadbalancingv2/__init__.py,sha256=vj9cenugOQjFMobX0ZPn23RTKMtprjj5B7925Mo17hM,1538378
103
103
  aws_cdk/aws_elasticloadbalancingv2_actions/__init__.py,sha256=ZAlJQtJZOgsNiraDo4cxo4aiRZa0Ntfy6Nm6LiVR5Q8,22485
104
104
  aws_cdk/aws_elasticloadbalancingv2_targets/__init__.py,sha256=dHegYxos1QWmUF8MC1mk7oKfE6ppOzKuPradbM2osl4,23495
105
105
  aws_cdk/aws_elasticsearch/__init__.py,sha256=5_bEW9jA5clfKZraU3gjX2DoEJooyViqo-rph--bpps,464601
@@ -107,8 +107,8 @@ aws_cdk/aws_emr/__init__.py,sha256=eqXmvA3entUeGaTBTtZwsCyb0h5IyaWPxzk5hLMRw5k,7
107
107
  aws_cdk/aws_emrcontainers/__init__.py,sha256=Z1rstmf7uWf1VN06WCB_U1GJ_B0JB_Qg1mszBf0Z36w,28548
108
108
  aws_cdk/aws_emrserverless/__init__.py,sha256=sS2rQ4URf0ymErzyrS13pyf8_cFhaB9Z_W9GclUKvso,140609
109
109
  aws_cdk/aws_entityresolution/__init__.py,sha256=0CM4uikd2-dXJLdu6tRCD1RcGH7Hv1u7mc_2bGZBgNc,259811
110
- aws_cdk/aws_events/__init__.py,sha256=4CXKALEo-Ff_M-otBYp4CQQW-DTa7NpkNhIIHlVGzcA,657295
111
- aws_cdk/aws_events_targets/__init__.py,sha256=1GYk7JYVy40VraICWgMOeZfShzJcy06cvWs92RcI_k0,257160
110
+ aws_cdk/aws_events/__init__.py,sha256=52lEAz0QaTTkYBSsX8xijIXdbmH-zpgQQpuXeX5KRL8,659031
111
+ aws_cdk/aws_events_targets/__init__.py,sha256=O5MwT6y9r79xWaeAB-MxjjSghLNUOPuxC_196eDQRB0,274351
112
112
  aws_cdk/aws_eventschemas/__init__.py,sha256=j0d_fHYCXPxNtYEPc-JXOoMVIcGhZ-o5SX7FUT_Iwn0,71968
113
113
  aws_cdk/aws_evidently/__init__.py,sha256=FeSzOrOMWYHIPKjLi4egxFocLgSVh19dpWyXBnRlgjw,247726
114
114
  aws_cdk/aws_finspace/__init__.py,sha256=-PQ5hY2chmAu70HnbY4x6XNv4g0Zkmi4NTY_68NDBvg,50476
@@ -128,7 +128,7 @@ aws_cdk/aws_groundstation/__init__.py,sha256=5wexhyrCCx3ASzIRdr7swDRwgvsfyUmVuGA
128
128
  aws_cdk/aws_guardduty/__init__.py,sha256=tDHjdEXppchvau5Zbphll1GLd8CrMvpv_fWIRoG86KA,232587
129
129
  aws_cdk/aws_healthimaging/__init__.py,sha256=zsHDiJf5Lfn7B_CcqCzSqmbaNt0fD524zydFcfId3Jc,16442
130
130
  aws_cdk/aws_healthlake/__init__.py,sha256=aiCTyvDVykAqz2KboRBaGwnnjT2vq366DOckBT15Ags,53481
131
- aws_cdk/aws_iam/__init__.py,sha256=zO7VIzeeoze_gKqvGRvPNoTFGtS0vJVNLo1Lm_vOkT0,842384
131
+ aws_cdk/aws_iam/__init__.py,sha256=8xSW25H-Q2BUltNLbmpwG_JxoHN4_7tc0B_ooIClTPY,842470
132
132
  aws_cdk/aws_identitystore/__init__.py,sha256=hW8yChwEILJE2JNSTuuUFRb4H11DrYw783UuivmQAXE,30922
133
133
  aws_cdk/aws_imagebuilder/__init__.py,sha256=kLtGlold0MNPC4KHiMD77ufo6-dRitIzdcEv_7o2Lrk,576152
134
134
  aws_cdk/aws_inspector/__init__.py,sha256=MXhy9w6nCZ7f8eJOiQijOsvJomBe2wLzZHSlZQJt-Y4,43544
@@ -155,7 +155,7 @@ aws_cdk/aws_kinesisanalytics/__init__.py,sha256=yXech7x04L6-iZZ8a1y43omcIChnWUMP
155
155
  aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=QpmKe7w5YqaceC0Tgj8vgmMXwc94zhhzY-flmXf8oQA,386995
156
156
  aws_cdk/aws_kinesisfirehose/__init__.py,sha256=R8N-hV8ImjyhwjAKjkHQSI8dWwDjEK6v53SzhkpQvA8,572372
157
157
  aws_cdk/aws_kinesisvideo/__init__.py,sha256=EEUVwOHPfC6ijy82XZAY2PZ9ipf5Y5-qgTBW6BBmvM4,37777
158
- aws_cdk/aws_kms/__init__.py,sha256=JXsNolXWlqqpRRZg6N1AcKiHO7EjK6SxM5HDvfHMFNQ,235903
158
+ aws_cdk/aws_kms/__init__.py,sha256=AGGolrMnvRCzwAyk3YNKgTFU-4sXNTrIUhBeYx7FQXE,237340
159
159
  aws_cdk/aws_lakeformation/__init__.py,sha256=D5V7RV5Xo-0llV1LPNAFYmn2Nfu6mseGEFJN8dHRi8c,334971
160
160
  aws_cdk/aws_lambda/__init__.py,sha256=moBBkaDtwzyvGpjiG8CvW8B8C0u3u6Zyp4G7fRvOR6s,1636084
161
161
  aws_cdk/aws_lambda_destinations/__init__.py,sha256=j-W-G8f-0TH0RHmhPAkPulkdx0LwpBP7n7hIZKCI0sY,20443
@@ -209,7 +209,7 @@ aws_cdk/aws_qbusiness/__init__.py,sha256=OU4t6QiNYa7JDNTTFDdSEIv-ly2IYxm25I3FCU9
209
209
  aws_cdk/aws_qldb/__init__.py,sha256=i03CF7CDGrVDR5mVf0eiCg4OXiLRaFzTVzHhYwhMJa0,62857
210
210
  aws_cdk/aws_quicksight/__init__.py,sha256=gsvf62JdHQWJvWXaNWfl09vScswbLTKs4Ton9Mc-X7I,14063406
211
211
  aws_cdk/aws_ram/__init__.py,sha256=KPKkfPb_m-OOvKsH5gnaNFj6Ls4xyptalIrUAkJ3E_U,50642
212
- aws_cdk/aws_rds/__init__.py,sha256=s7n7oo7G4Xy0UBpF7BSIE6Y2_0QqSbd7B-37wnrdCZQ,2734437
212
+ aws_cdk/aws_rds/__init__.py,sha256=1EQtHmvtupwnLzS1Y7ykSz9OzDg-pexlrm3UtiCsriU,2734722
213
213
  aws_cdk/aws_redshift/__init__.py,sha256=RISM58rAwWxWO-PQ5ppeAewp5aju1hV2fAC5M6hqTXo,379375
214
214
  aws_cdk/aws_redshiftserverless/__init__.py,sha256=P_MhN0x_sSYIwTRIW8Vd_YGnw2G6PT6nHDFTp_sEoJc,160507
215
215
  aws_cdk/aws_refactorspaces/__init__.py,sha256=58VQUduULKOsqpA-6OFSVvs-2yXAbbFpuViiiUbYZlE,122452
@@ -227,7 +227,7 @@ aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=YcBFw49EeTc_5YfM84V4W-uNY-
227
227
  aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=xyrN52PQPnc1-evXqxsAmeZgqvXhr9pf5aGsDAj-F_k,94245
228
228
  aws_cdk/aws_route53resolver/__init__.py,sha256=1e7Zp0JQ_MftUz0BIebk3v9RKGWj03gtk3Ih8_oxyPM,238963
229
229
  aws_cdk/aws_rum/__init__.py,sha256=Y4BDlOkjoAZvKRlmhVc0KRcxh-Yqxo8BPanbs6iUqHM,73403
230
- aws_cdk/aws_s3/__init__.py,sha256=vzzYzXeB93Orz5XPAFhhD9xByn8NO7D6E3yYcny94JY,1196107
230
+ aws_cdk/aws_s3/__init__.py,sha256=MaBdzKmnFV2HZbkx08JAPsBQdsoNAIB6de96Nmw9aH0,1196268
231
231
  aws_cdk/aws_s3_assets/__init__.py,sha256=8HpzmqvyZA4_5Oz09-GAW8D9PlLiv1nFK6a1FF6W9O4,45860
232
232
  aws_cdk/aws_s3_deployment/__init__.py,sha256=ecjxW_hP6aqE4aA4VVKoaC7NWcLtNGWr6blKgygLTZk,117398
233
233
  aws_cdk/aws_s3_notifications/__init__.py,sha256=jdGhUh3vH1rSypq7XjSPJGNPImRW3Epk3W0jkU19CMk,9090
@@ -257,9 +257,9 @@ aws_cdk/aws_ssmcontacts/__init__.py,sha256=rQ0P6pHTQpO0FUDxkYgfb-GSJMSSHrA9-f769
257
257
  aws_cdk/aws_ssmincidents/__init__.py,sha256=o5VGUNA7ZHPxAyKp9MvWB6YPt52v-jNOb_eDH9RKT0k,112553
258
258
  aws_cdk/aws_sso/__init__.py,sha256=99Pv_9aucWLhduj8rpLz7LocrEwapmnUUMGC3upbC4M,155356
259
259
  aws_cdk/aws_stepfunctions/__init__.py,sha256=aeJ4r4Q6fJHQXi_uBGYprfiFvE6hXDE5_aSEcLK_8m8,899717
260
- aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=htQ9yqejzk3741UnJoZK88pyIA-neW_HuGgGm9s0820,1952020
260
+ aws_cdk/aws_stepfunctions_tasks/__init__.py,sha256=tGAq-ZwSvYmlwh2AOIDiaovIbtrED90ma90eARHld80,1955680
261
261
  aws_cdk/aws_supportapp/__init__.py,sha256=Unr22ezlZuXYbwSuCmpwT1uZgg4Cgt3KB2PI5B3Cd5w,48441
262
- aws_cdk/aws_synthetics/__init__.py,sha256=J1WCgP28nDJUAcyiDPl8V4vqENKmCP9Pxqw1jnvtjco,246733
262
+ aws_cdk/aws_synthetics/__init__.py,sha256=cFayRDGR6Fp_8D-6S7Fd4J6QDF97ZVSZIdxeUBgwKpA,247435
263
263
  aws_cdk/aws_systemsmanagersap/__init__.py,sha256=1hzsq9R0qyUSlNwX7-VfsD8zOyjlWsKRm_q8_ORyFms,31850
264
264
  aws_cdk/aws_timestream/__init__.py,sha256=seqKX0LUfcAt14_GZLop1ikL0_oIhd3wHIkZs1JXEk4,241405
265
265
  aws_cdk/aws_transfer/__init__.py,sha256=mpBXbtpt1zdDLZJRU1N7IWA5czUpv-bpK7sUxuu3CO8,400541
@@ -277,16 +277,16 @@ aws_cdk/aws_xray/__init__.py,sha256=7w8d2Zzl27ybB_OqCPAjB3wEKE_LapoED5FGc-5196U,
277
277
  aws_cdk/cloud_assembly_schema/__init__.py,sha256=RPSY_HNCy4OZpBQk1Em418s-3bLZ3AXFAq-yQCVOwfY,369870
278
278
  aws_cdk/cloudformation_include/__init__.py,sha256=_98bU50-7xAo_JVU50YQmRkHQvdAIpTh4BnNUaDLQcg,46655
279
279
  aws_cdk/custom_resources/__init__.py,sha256=wXP1pskFyQ6i6w3rr7pR_xPhkIQ7LupJGBIiTpPjSMQ,165048
280
- aws_cdk/cx_api/__init__.py,sha256=bkcmrm1sp28wXbH36YMyFyvGusn_LHX-j9jHJkXFgOU,160952
280
+ aws_cdk/cx_api/__init__.py,sha256=dCCYyC577hkzrlza6p8O-LDHpEHLqfDdVY84HsV9no8,161514
281
281
  aws_cdk/lambda_layer_awscli/__init__.py,sha256=IlACJkDyh8sV2B0z5D_117b_PtXaJm51CQ1p1-ZXQ4w,2323
282
282
  aws_cdk/lambda_layer_kubectl/__init__.py,sha256=W-dUsp28JPkIlpvARiWnkMl1qsESOIi8_ajqFAcGxBk,2595
283
283
  aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=t7G83ZQzGlrH_CVhMxtbzMGt9Jux06za-lynVNp1CTM,2338
284
284
  aws_cdk/pipelines/__init__.py,sha256=q65MYnai009K8g_eaxjTnDOR_-maZyZ3MJKys4c8JKk,396401
285
285
  aws_cdk/region_info/__init__.py,sha256=OhxtjLqmH2FZZytkekg1b7WVc6HNpgwddo0guOq92j8,38690
286
286
  aws_cdk/triggers/__init__.py,sha256=M7IDuEP3XIH3-EJQaAm4xahkM7i5Icez8bccIsExP9I,120014
287
- aws_cdk_lib-2.155.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
288
- aws_cdk_lib-2.155.0.dist-info/METADATA,sha256=_UxGCxRfUzWDWYp8svDcwSprFYEpPlCFeIapUj6LKrA,59951
289
- aws_cdk_lib-2.155.0.dist-info/NOTICE,sha256=BZyRfC0PoNXSoqGVWkGaJhCSmAA1TObhSW8a6_m_SlI,40861
290
- aws_cdk_lib-2.155.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
291
- aws_cdk_lib-2.155.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
292
- aws_cdk_lib-2.155.0.dist-info/RECORD,,
287
+ aws_cdk_lib-2.156.0.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
288
+ aws_cdk_lib-2.156.0.dist-info/METADATA,sha256=SalCXdRT71-bupDYElaJBRSXjjU-hdPMEEwriA02hK8,59951
289
+ aws_cdk_lib-2.156.0.dist-info/NOTICE,sha256=BZyRfC0PoNXSoqGVWkGaJhCSmAA1TObhSW8a6_m_SlI,40861
290
+ aws_cdk_lib-2.156.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
291
+ aws_cdk_lib-2.156.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
292
+ aws_cdk_lib-2.156.0.dist-info/RECORD,,