aws-solutions-constructs.core 2.95.0__tar.gz → 2.96.0__tar.gz

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 (17) hide show
  1. {aws_solutions_constructs_core-2.95.0/src/aws_solutions_constructs.core.egg-info → aws_solutions_constructs_core-2.96.0}/PKG-INFO +1 -1
  2. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/setup.py +2 -2
  3. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs/core/__init__.py +379 -0
  4. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs/core/_jsii/__init__.py +1 -1
  5. aws_solutions_constructs_core-2.96.0/src/aws_solutions_constructs/core/_jsii/core@2.96.0.jsii.tgz +0 -0
  6. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0/src/aws_solutions_constructs.core.egg-info}/PKG-INFO +1 -1
  7. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs.core.egg-info/SOURCES.txt +1 -1
  8. aws_solutions_constructs_core-2.95.0/src/aws_solutions_constructs/core/_jsii/core@2.95.0.jsii.tgz +0 -0
  9. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/LICENSE +0 -0
  10. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/MANIFEST.in +0 -0
  11. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/README.md +0 -0
  12. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/pyproject.toml +0 -0
  13. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/setup.cfg +0 -0
  14. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs/core/py.typed +0 -0
  15. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs.core.egg-info/dependency_links.txt +0 -0
  16. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs.core.egg-info/requires.txt +0 -0
  17. {aws_solutions_constructs_core-2.95.0 → aws_solutions_constructs_core-2.96.0}/src/aws_solutions_constructs.core.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.core
3
- Version: 2.95.0
3
+ Version: 2.96.0
4
4
  Summary: Core CDK Construct for patterns library
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-solutions-constructs.core",
8
- "version": "2.95.0",
8
+ "version": "2.96.0",
9
9
  "description": "Core CDK Construct for patterns library",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/awslabs/aws-solutions-constructs.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "aws_solutions_constructs.core._jsii": [
29
- "core@2.95.0.jsii.tgz"
29
+ "core@2.96.0.jsii.tgz"
30
30
  ],
31
31
  "aws_solutions_constructs.core": [
32
32
  "py.typed"
@@ -443,6 +443,69 @@ class BedrockInferenceProps:
443
443
  )
444
444
 
445
445
 
446
+ @jsii.data_type(
447
+ jsii_type="@aws-solutions-constructs/core.BucketDetails",
448
+ jsii_struct_bases=[],
449
+ name_mapping={
450
+ "bucket_interface": "bucketInterface",
451
+ "bucket": "bucket",
452
+ "logging_bucket": "loggingBucket",
453
+ },
454
+ )
455
+ class BucketDetails:
456
+ def __init__(
457
+ self,
458
+ *,
459
+ bucket_interface: _aws_cdk_aws_s3_ceddda9d.IBucket,
460
+ bucket: typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket] = None,
461
+ logging_bucket: typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket] = None,
462
+ ) -> None:
463
+ '''
464
+ :param bucket_interface: -
465
+ :param bucket: -
466
+ :param logging_bucket: -
467
+ '''
468
+ if __debug__:
469
+ type_hints = typing.get_type_hints(_typecheckingstub__6f934ee544ef1f015859298db3b59b9c7d7c3b7396123a3d227779c1e7dd0b27)
470
+ check_type(argname="argument bucket_interface", value=bucket_interface, expected_type=type_hints["bucket_interface"])
471
+ check_type(argname="argument bucket", value=bucket, expected_type=type_hints["bucket"])
472
+ check_type(argname="argument logging_bucket", value=logging_bucket, expected_type=type_hints["logging_bucket"])
473
+ self._values: typing.Dict[builtins.str, typing.Any] = {
474
+ "bucket_interface": bucket_interface,
475
+ }
476
+ if bucket is not None:
477
+ self._values["bucket"] = bucket
478
+ if logging_bucket is not None:
479
+ self._values["logging_bucket"] = logging_bucket
480
+
481
+ @builtins.property
482
+ def bucket_interface(self) -> _aws_cdk_aws_s3_ceddda9d.IBucket:
483
+ result = self._values.get("bucket_interface")
484
+ assert result is not None, "Required property 'bucket_interface' is missing"
485
+ return typing.cast(_aws_cdk_aws_s3_ceddda9d.IBucket, result)
486
+
487
+ @builtins.property
488
+ def bucket(self) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket]:
489
+ result = self._values.get("bucket")
490
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket], result)
491
+
492
+ @builtins.property
493
+ def logging_bucket(self) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket]:
494
+ result = self._values.get("logging_bucket")
495
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket], result)
496
+
497
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
498
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
499
+
500
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
501
+ return not (rhs == self)
502
+
503
+ def __repr__(self) -> str:
504
+ return "BucketDetails(%s)" % ", ".join(
505
+ k + "=" + repr(v) for k, v in self._values.items()
506
+ )
507
+
508
+
446
509
  @jsii.data_type(
447
510
  jsii_type="@aws-solutions-constructs/core.BuildDeadLetterQueueProps",
448
511
  jsii_struct_bases=[],
@@ -6389,6 +6452,7 @@ class ServiceEndpointTypes(enum.Enum):
6389
6452
  BEDROCK_RUNTIME = "BEDROCK_RUNTIME"
6390
6453
  KENDRA = "KENDRA"
6391
6454
  TRANSCRIBE = "TRANSCRIBE"
6455
+ TRANSLATE = "TRANSLATE"
6392
6456
 
6393
6457
 
6394
6458
  @jsii.data_type(
@@ -6790,6 +6854,280 @@ class StateMachineProps:
6790
6854
  )
6791
6855
 
6792
6856
 
6857
+ @jsii.data_type(
6858
+ jsii_type="@aws-solutions-constructs/core.TranslateConfiguration",
6859
+ jsii_struct_bases=[],
6860
+ name_mapping={
6861
+ "lambda_iam_actions_required": "lambdaIamActionsRequired",
6862
+ "destination_bucket": "destinationBucket",
6863
+ "source_bucket": "sourceBucket",
6864
+ "translate_role": "translateRole",
6865
+ },
6866
+ )
6867
+ class TranslateConfiguration:
6868
+ def __init__(
6869
+ self,
6870
+ *,
6871
+ lambda_iam_actions_required: typing.Sequence[builtins.str],
6872
+ destination_bucket: typing.Optional[typing.Union[BucketDetails, typing.Dict[builtins.str, typing.Any]]] = None,
6873
+ source_bucket: typing.Optional[typing.Union[BucketDetails, typing.Dict[builtins.str, typing.Any]]] = None,
6874
+ translate_role: typing.Optional[_aws_cdk_aws_iam_ceddda9d.Role] = None,
6875
+ ) -> None:
6876
+ '''
6877
+ :param lambda_iam_actions_required: -
6878
+ :param destination_bucket: -
6879
+ :param source_bucket: -
6880
+ :param translate_role: -
6881
+ '''
6882
+ if isinstance(destination_bucket, dict):
6883
+ destination_bucket = BucketDetails(**destination_bucket)
6884
+ if isinstance(source_bucket, dict):
6885
+ source_bucket = BucketDetails(**source_bucket)
6886
+ if __debug__:
6887
+ type_hints = typing.get_type_hints(_typecheckingstub__713eb796d252c8f3fb0708436b6c0450950c3e5054d2f47bee4ae2e03a2e710f)
6888
+ check_type(argname="argument lambda_iam_actions_required", value=lambda_iam_actions_required, expected_type=type_hints["lambda_iam_actions_required"])
6889
+ check_type(argname="argument destination_bucket", value=destination_bucket, expected_type=type_hints["destination_bucket"])
6890
+ check_type(argname="argument source_bucket", value=source_bucket, expected_type=type_hints["source_bucket"])
6891
+ check_type(argname="argument translate_role", value=translate_role, expected_type=type_hints["translate_role"])
6892
+ self._values: typing.Dict[builtins.str, typing.Any] = {
6893
+ "lambda_iam_actions_required": lambda_iam_actions_required,
6894
+ }
6895
+ if destination_bucket is not None:
6896
+ self._values["destination_bucket"] = destination_bucket
6897
+ if source_bucket is not None:
6898
+ self._values["source_bucket"] = source_bucket
6899
+ if translate_role is not None:
6900
+ self._values["translate_role"] = translate_role
6901
+
6902
+ @builtins.property
6903
+ def lambda_iam_actions_required(self) -> typing.List[builtins.str]:
6904
+ result = self._values.get("lambda_iam_actions_required")
6905
+ assert result is not None, "Required property 'lambda_iam_actions_required' is missing"
6906
+ return typing.cast(typing.List[builtins.str], result)
6907
+
6908
+ @builtins.property
6909
+ def destination_bucket(self) -> typing.Optional[BucketDetails]:
6910
+ result = self._values.get("destination_bucket")
6911
+ return typing.cast(typing.Optional[BucketDetails], result)
6912
+
6913
+ @builtins.property
6914
+ def source_bucket(self) -> typing.Optional[BucketDetails]:
6915
+ result = self._values.get("source_bucket")
6916
+ return typing.cast(typing.Optional[BucketDetails], result)
6917
+
6918
+ @builtins.property
6919
+ def translate_role(self) -> typing.Optional[_aws_cdk_aws_iam_ceddda9d.Role]:
6920
+ result = self._values.get("translate_role")
6921
+ return typing.cast(typing.Optional[_aws_cdk_aws_iam_ceddda9d.Role], result)
6922
+
6923
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
6924
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
6925
+
6926
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
6927
+ return not (rhs == self)
6928
+
6929
+ def __repr__(self) -> str:
6930
+ return "TranslateConfiguration(%s)" % ", ".join(
6931
+ k + "=" + repr(v) for k, v in self._values.items()
6932
+ )
6933
+
6934
+
6935
+ @jsii.data_type(
6936
+ jsii_type="@aws-solutions-constructs/core.TranslateProps",
6937
+ jsii_struct_bases=[],
6938
+ name_mapping={
6939
+ "async_jobs": "asyncJobs",
6940
+ "data_access_role_arn_environment_variable_name": "dataAccessRoleArnEnvironmentVariableName",
6941
+ "destination_bucket_environment_variable_name": "destinationBucketEnvironmentVariableName",
6942
+ "destination_bucket_props": "destinationBucketProps",
6943
+ "destination_logging_bucket_props": "destinationLoggingBucketProps",
6944
+ "existing_destination_bucket_obj": "existingDestinationBucketObj",
6945
+ "existing_source_bucket_obj": "existingSourceBucketObj",
6946
+ "log_destination_s3_access_logs": "logDestinationS3AccessLogs",
6947
+ "log_source_s3_access_logs": "logSourceS3AccessLogs",
6948
+ "source_bucket_environment_variable_name": "sourceBucketEnvironmentVariableName",
6949
+ "source_bucket_props": "sourceBucketProps",
6950
+ "source_logging_bucket_props": "sourceLoggingBucketProps",
6951
+ "use_same_bucket": "useSameBucket",
6952
+ },
6953
+ )
6954
+ class TranslateProps:
6955
+ def __init__(
6956
+ self,
6957
+ *,
6958
+ async_jobs: typing.Optional[builtins.bool] = None,
6959
+ data_access_role_arn_environment_variable_name: typing.Optional[builtins.str] = None,
6960
+ destination_bucket_environment_variable_name: typing.Optional[builtins.str] = None,
6961
+ destination_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
6962
+ destination_logging_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
6963
+ existing_destination_bucket_obj: typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket] = None,
6964
+ existing_source_bucket_obj: typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket] = None,
6965
+ log_destination_s3_access_logs: typing.Optional[builtins.bool] = None,
6966
+ log_source_s3_access_logs: typing.Optional[builtins.bool] = None,
6967
+ source_bucket_environment_variable_name: typing.Optional[builtins.str] = None,
6968
+ source_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
6969
+ source_logging_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
6970
+ use_same_bucket: typing.Optional[builtins.bool] = None,
6971
+ ) -> None:
6972
+ '''
6973
+ :param async_jobs: -
6974
+ :param data_access_role_arn_environment_variable_name: -
6975
+ :param destination_bucket_environment_variable_name: -
6976
+ :param destination_bucket_props: -
6977
+ :param destination_logging_bucket_props: -
6978
+ :param existing_destination_bucket_obj: -
6979
+ :param existing_source_bucket_obj: -
6980
+ :param log_destination_s3_access_logs: -
6981
+ :param log_source_s3_access_logs: -
6982
+ :param source_bucket_environment_variable_name: -
6983
+ :param source_bucket_props: -
6984
+ :param source_logging_bucket_props: -
6985
+ :param use_same_bucket: -
6986
+ '''
6987
+ if isinstance(destination_bucket_props, dict):
6988
+ destination_bucket_props = _aws_cdk_aws_s3_ceddda9d.BucketProps(**destination_bucket_props)
6989
+ if isinstance(destination_logging_bucket_props, dict):
6990
+ destination_logging_bucket_props = _aws_cdk_aws_s3_ceddda9d.BucketProps(**destination_logging_bucket_props)
6991
+ if isinstance(source_bucket_props, dict):
6992
+ source_bucket_props = _aws_cdk_aws_s3_ceddda9d.BucketProps(**source_bucket_props)
6993
+ if isinstance(source_logging_bucket_props, dict):
6994
+ source_logging_bucket_props = _aws_cdk_aws_s3_ceddda9d.BucketProps(**source_logging_bucket_props)
6995
+ if __debug__:
6996
+ type_hints = typing.get_type_hints(_typecheckingstub__34d19a40ef57536e8e291a635def7aeb6d2a5c76f4c38a59227cd77081d73f8b)
6997
+ check_type(argname="argument async_jobs", value=async_jobs, expected_type=type_hints["async_jobs"])
6998
+ check_type(argname="argument data_access_role_arn_environment_variable_name", value=data_access_role_arn_environment_variable_name, expected_type=type_hints["data_access_role_arn_environment_variable_name"])
6999
+ check_type(argname="argument destination_bucket_environment_variable_name", value=destination_bucket_environment_variable_name, expected_type=type_hints["destination_bucket_environment_variable_name"])
7000
+ check_type(argname="argument destination_bucket_props", value=destination_bucket_props, expected_type=type_hints["destination_bucket_props"])
7001
+ check_type(argname="argument destination_logging_bucket_props", value=destination_logging_bucket_props, expected_type=type_hints["destination_logging_bucket_props"])
7002
+ check_type(argname="argument existing_destination_bucket_obj", value=existing_destination_bucket_obj, expected_type=type_hints["existing_destination_bucket_obj"])
7003
+ check_type(argname="argument existing_source_bucket_obj", value=existing_source_bucket_obj, expected_type=type_hints["existing_source_bucket_obj"])
7004
+ check_type(argname="argument log_destination_s3_access_logs", value=log_destination_s3_access_logs, expected_type=type_hints["log_destination_s3_access_logs"])
7005
+ check_type(argname="argument log_source_s3_access_logs", value=log_source_s3_access_logs, expected_type=type_hints["log_source_s3_access_logs"])
7006
+ check_type(argname="argument source_bucket_environment_variable_name", value=source_bucket_environment_variable_name, expected_type=type_hints["source_bucket_environment_variable_name"])
7007
+ check_type(argname="argument source_bucket_props", value=source_bucket_props, expected_type=type_hints["source_bucket_props"])
7008
+ check_type(argname="argument source_logging_bucket_props", value=source_logging_bucket_props, expected_type=type_hints["source_logging_bucket_props"])
7009
+ check_type(argname="argument use_same_bucket", value=use_same_bucket, expected_type=type_hints["use_same_bucket"])
7010
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
7011
+ if async_jobs is not None:
7012
+ self._values["async_jobs"] = async_jobs
7013
+ if data_access_role_arn_environment_variable_name is not None:
7014
+ self._values["data_access_role_arn_environment_variable_name"] = data_access_role_arn_environment_variable_name
7015
+ if destination_bucket_environment_variable_name is not None:
7016
+ self._values["destination_bucket_environment_variable_name"] = destination_bucket_environment_variable_name
7017
+ if destination_bucket_props is not None:
7018
+ self._values["destination_bucket_props"] = destination_bucket_props
7019
+ if destination_logging_bucket_props is not None:
7020
+ self._values["destination_logging_bucket_props"] = destination_logging_bucket_props
7021
+ if existing_destination_bucket_obj is not None:
7022
+ self._values["existing_destination_bucket_obj"] = existing_destination_bucket_obj
7023
+ if existing_source_bucket_obj is not None:
7024
+ self._values["existing_source_bucket_obj"] = existing_source_bucket_obj
7025
+ if log_destination_s3_access_logs is not None:
7026
+ self._values["log_destination_s3_access_logs"] = log_destination_s3_access_logs
7027
+ if log_source_s3_access_logs is not None:
7028
+ self._values["log_source_s3_access_logs"] = log_source_s3_access_logs
7029
+ if source_bucket_environment_variable_name is not None:
7030
+ self._values["source_bucket_environment_variable_name"] = source_bucket_environment_variable_name
7031
+ if source_bucket_props is not None:
7032
+ self._values["source_bucket_props"] = source_bucket_props
7033
+ if source_logging_bucket_props is not None:
7034
+ self._values["source_logging_bucket_props"] = source_logging_bucket_props
7035
+ if use_same_bucket is not None:
7036
+ self._values["use_same_bucket"] = use_same_bucket
7037
+
7038
+ @builtins.property
7039
+ def async_jobs(self) -> typing.Optional[builtins.bool]:
7040
+ result = self._values.get("async_jobs")
7041
+ return typing.cast(typing.Optional[builtins.bool], result)
7042
+
7043
+ @builtins.property
7044
+ def data_access_role_arn_environment_variable_name(
7045
+ self,
7046
+ ) -> typing.Optional[builtins.str]:
7047
+ result = self._values.get("data_access_role_arn_environment_variable_name")
7048
+ return typing.cast(typing.Optional[builtins.str], result)
7049
+
7050
+ @builtins.property
7051
+ def destination_bucket_environment_variable_name(
7052
+ self,
7053
+ ) -> typing.Optional[builtins.str]:
7054
+ result = self._values.get("destination_bucket_environment_variable_name")
7055
+ return typing.cast(typing.Optional[builtins.str], result)
7056
+
7057
+ @builtins.property
7058
+ def destination_bucket_props(
7059
+ self,
7060
+ ) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps]:
7061
+ result = self._values.get("destination_bucket_props")
7062
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps], result)
7063
+
7064
+ @builtins.property
7065
+ def destination_logging_bucket_props(
7066
+ self,
7067
+ ) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps]:
7068
+ result = self._values.get("destination_logging_bucket_props")
7069
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps], result)
7070
+
7071
+ @builtins.property
7072
+ def existing_destination_bucket_obj(
7073
+ self,
7074
+ ) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket]:
7075
+ result = self._values.get("existing_destination_bucket_obj")
7076
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket], result)
7077
+
7078
+ @builtins.property
7079
+ def existing_source_bucket_obj(
7080
+ self,
7081
+ ) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket]:
7082
+ result = self._values.get("existing_source_bucket_obj")
7083
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket], result)
7084
+
7085
+ @builtins.property
7086
+ def log_destination_s3_access_logs(self) -> typing.Optional[builtins.bool]:
7087
+ result = self._values.get("log_destination_s3_access_logs")
7088
+ return typing.cast(typing.Optional[builtins.bool], result)
7089
+
7090
+ @builtins.property
7091
+ def log_source_s3_access_logs(self) -> typing.Optional[builtins.bool]:
7092
+ result = self._values.get("log_source_s3_access_logs")
7093
+ return typing.cast(typing.Optional[builtins.bool], result)
7094
+
7095
+ @builtins.property
7096
+ def source_bucket_environment_variable_name(self) -> typing.Optional[builtins.str]:
7097
+ result = self._values.get("source_bucket_environment_variable_name")
7098
+ return typing.cast(typing.Optional[builtins.str], result)
7099
+
7100
+ @builtins.property
7101
+ def source_bucket_props(
7102
+ self,
7103
+ ) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps]:
7104
+ result = self._values.get("source_bucket_props")
7105
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps], result)
7106
+
7107
+ @builtins.property
7108
+ def source_logging_bucket_props(
7109
+ self,
7110
+ ) -> typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps]:
7111
+ result = self._values.get("source_logging_bucket_props")
7112
+ return typing.cast(typing.Optional[_aws_cdk_aws_s3_ceddda9d.BucketProps], result)
7113
+
7114
+ @builtins.property
7115
+ def use_same_bucket(self) -> typing.Optional[builtins.bool]:
7116
+ result = self._values.get("use_same_bucket")
7117
+ return typing.cast(typing.Optional[builtins.bool], result)
7118
+
7119
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7120
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7121
+
7122
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7123
+ return not (rhs == self)
7124
+
7125
+ def __repr__(self) -> str:
7126
+ return "TranslateProps(%s)" % ", ".join(
7127
+ k + "=" + repr(v) for k, v in self._values.items()
7128
+ )
7129
+
7130
+
6793
7131
  @jsii.data_type(
6794
7132
  jsii_type="@aws-solutions-constructs/core.VpcPropsSet",
6795
7133
  jsii_struct_bases=[],
@@ -6912,6 +7250,7 @@ __all__ = [
6912
7250
  "AddProxyMethodToApiResourceInputParams",
6913
7251
  "ApiProps",
6914
7252
  "BedrockInferenceProps",
7253
+ "BucketDetails",
6915
7254
  "BuildDeadLetterQueueProps",
6916
7255
  "BuildDynamoDBTableProps",
6917
7256
  "BuildDynamoDBTableResponse",
@@ -6996,6 +7335,8 @@ __all__ = [
6996
7335
  "SnsProps",
6997
7336
  "SqsProps",
6998
7337
  "StateMachineProps",
7338
+ "TranslateConfiguration",
7339
+ "TranslateProps",
6999
7340
  "VpcPropsSet",
7000
7341
  "WafWebAclProps",
7001
7342
  ]
@@ -7037,6 +7378,15 @@ def _typecheckingstub__8700501d94a3c0ea38de6db5f733bbe926a025118f03ab465d8339739
7037
7378
  """Type checking stubs"""
7038
7379
  pass
7039
7380
 
7381
+ def _typecheckingstub__6f934ee544ef1f015859298db3b59b9c7d7c3b7396123a3d227779c1e7dd0b27(
7382
+ *,
7383
+ bucket_interface: _aws_cdk_aws_s3_ceddda9d.IBucket,
7384
+ bucket: typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket] = None,
7385
+ logging_bucket: typing.Optional[_aws_cdk_aws_s3_ceddda9d.Bucket] = None,
7386
+ ) -> None:
7387
+ """Type checking stubs"""
7388
+ pass
7389
+
7040
7390
  def _typecheckingstub__f79386b6162082a3848170974aab68319c4d3739960a82001b687d0237a8dddb(
7041
7391
  *,
7042
7392
  construct_dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
@@ -7840,6 +8190,35 @@ def _typecheckingstub__f08646452b145e569da8f0e193b37ccb2f89096eac1b603e02a301d09
7840
8190
  """Type checking stubs"""
7841
8191
  pass
7842
8192
 
8193
+ def _typecheckingstub__713eb796d252c8f3fb0708436b6c0450950c3e5054d2f47bee4ae2e03a2e710f(
8194
+ *,
8195
+ lambda_iam_actions_required: typing.Sequence[builtins.str],
8196
+ destination_bucket: typing.Optional[typing.Union[BucketDetails, typing.Dict[builtins.str, typing.Any]]] = None,
8197
+ source_bucket: typing.Optional[typing.Union[BucketDetails, typing.Dict[builtins.str, typing.Any]]] = None,
8198
+ translate_role: typing.Optional[_aws_cdk_aws_iam_ceddda9d.Role] = None,
8199
+ ) -> None:
8200
+ """Type checking stubs"""
8201
+ pass
8202
+
8203
+ def _typecheckingstub__34d19a40ef57536e8e291a635def7aeb6d2a5c76f4c38a59227cd77081d73f8b(
8204
+ *,
8205
+ async_jobs: typing.Optional[builtins.bool] = None,
8206
+ data_access_role_arn_environment_variable_name: typing.Optional[builtins.str] = None,
8207
+ destination_bucket_environment_variable_name: typing.Optional[builtins.str] = None,
8208
+ destination_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
8209
+ destination_logging_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
8210
+ existing_destination_bucket_obj: typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket] = None,
8211
+ existing_source_bucket_obj: typing.Optional[_aws_cdk_aws_s3_ceddda9d.IBucket] = None,
8212
+ log_destination_s3_access_logs: typing.Optional[builtins.bool] = None,
8213
+ log_source_s3_access_logs: typing.Optional[builtins.bool] = None,
8214
+ source_bucket_environment_variable_name: typing.Optional[builtins.str] = None,
8215
+ source_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
8216
+ source_logging_bucket_props: typing.Optional[typing.Union[_aws_cdk_aws_s3_ceddda9d.BucketProps, typing.Dict[builtins.str, typing.Any]]] = None,
8217
+ use_same_bucket: typing.Optional[builtins.bool] = None,
8218
+ ) -> None:
8219
+ """Type checking stubs"""
8220
+ pass
8221
+
7843
8222
  def _typecheckingstub__61e2cfb976c78d7138f30cbe00e80016d7751fe28f01cfc46671c7ac62704821(
7844
8223
  *,
7845
8224
  deploy_vpc: typing.Optional[builtins.bool] = None,
@@ -33,7 +33,7 @@ import aws_cdk.cloud_assembly_schema._jsii
33
33
  import constructs._jsii
34
34
 
35
35
  __jsii_assembly__ = jsii.JSIIAssembly.load(
36
- "@aws-solutions-constructs/core", "2.95.0", __name__[0:-6], "core@2.95.0.jsii.tgz"
36
+ "@aws-solutions-constructs/core", "2.96.0", __name__[0:-6], "core@2.96.0.jsii.tgz"
37
37
  )
38
38
 
39
39
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.core
3
- Version: 2.95.0
3
+ Version: 2.96.0
4
4
  Summary: Core CDK Construct for patterns library
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -11,4 +11,4 @@ src/aws_solutions_constructs.core.egg-info/top_level.txt
11
11
  src/aws_solutions_constructs/core/__init__.py
12
12
  src/aws_solutions_constructs/core/py.typed
13
13
  src/aws_solutions_constructs/core/_jsii/__init__.py
14
- src/aws_solutions_constructs/core/_jsii/core@2.95.0.jsii.tgz
14
+ src/aws_solutions_constructs/core/_jsii/core@2.96.0.jsii.tgz