aws-cdk-lib 2.174.0__py3-none-any.whl → 2.175.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.174.0.jsii.tgz → aws-cdk-lib@2.175.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +18 -0
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +248 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -3
- aws_cdk/aws_autoscaling/__init__.py +8 -8
- aws_cdk/aws_batch/__init__.py +32 -458
- aws_cdk/aws_bedrock/__init__.py +7 -4
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cleanrooms/__init__.py +683 -2
- aws_cdk/aws_cloudfront/__init__.py +92 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudwatch/__init__.py +146 -0
- aws_cdk/aws_codebuild/__init__.py +84 -0
- aws_cdk/aws_dms/__init__.py +49 -27
- aws_cdk/aws_docdb/__init__.py +134 -0
- aws_cdk/aws_dynamodb/__init__.py +300 -0
- aws_cdk/aws_ec2/__init__.py +97 -0
- aws_cdk/aws_ecs/__init__.py +351 -110
- aws_cdk/aws_ecs_patterns/__init__.py +77 -42
- aws_cdk/aws_elasticloadbalancing/__init__.py +3 -6
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +732 -7
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_kinesis/__init__.py +324 -0
- aws_cdk/aws_kms/__init__.py +197 -0
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_mediaconvert/__init__.py +39 -0
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_quicksight/__init__.py +1422 -859
- aws_cdk/aws_rds/__init__.py +386 -7
- aws_cdk/aws_sagemaker/__init__.py +6 -6
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +42 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/RECORD +45 -45
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.174.0.dist-info → aws_cdk_lib-2.175.0.dist-info}/top_level.txt +0 -0
|
@@ -20335,7 +20335,7 @@ class CfnModel(
|
|
|
20335
20335
|
Your input bucket must be in the same AWS region as your training job.
|
|
20336
20336
|
|
|
20337
20337
|
:param compression_type:
|
|
20338
|
-
:param s3_data_type: If you choose ``S3Prefix`` , ``S3Uri`` identifies a key name prefix. SageMaker uses all objects that match the specified key name prefix for model training. If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training. If you choose ``AugmentedManifestFile`` , S3Uri identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
20338
|
+
:param s3_data_type: If you choose ``S3Prefix`` , ``S3Uri`` identifies a key name prefix. SageMaker uses all objects that match the specified key name prefix for model training. If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training. If you choose ``AugmentedManifestFile`` , ``S3Uri`` identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
20339
20339
|
:param s3_uri: Depending on the value specified for the ``S3DataType`` , identifies either a key name prefix or a manifest. For example: - A key name prefix might look like this: ``s3://bucketname/exampleprefix/`` - A manifest might look like this: ``s3://bucketname/example.manifest`` A manifest is an S3 object which is a JSON file consisting of an array of elements. The first element is a prefix which is followed by one or more suffixes. SageMaker appends the suffix elements to the prefix to get a full set of ``S3Uri`` . Note that the prefix must be a valid non-empty ``S3Uri`` that precludes users from specifying a manifest whose individual ``S3Uri`` is sourced from different S3 buckets. The following code example shows a valid manifest format: ``[ {"prefix": "s3://customer_bucket/some/prefix/"},`` ``"relative/path/to/custdata-1",`` ``"relative/path/custdata-2",`` ``...`` ``"relative/path/custdata-N"`` ``]`` This JSON is equivalent to the following ``S3Uri`` list: ``s3://customer_bucket/some/prefix/relative/path/to/custdata-1`` ``s3://customer_bucket/some/prefix/relative/path/custdata-2`` ``...`` ``s3://customer_bucket/some/prefix/relative/path/custdata-N`` The complete set of ``S3Uri`` in this manifest is the input data for the channel for this data source. The object that each ``S3Uri`` points to must be readable by the IAM role that SageMaker uses to perform tasks on your behalf. Your input bucket must be located in same AWS region as your training job.
|
|
20340
20340
|
:param hub_access_config:
|
|
20341
20341
|
:param model_access_config:
|
|
@@ -20397,7 +20397,7 @@ class CfnModel(
|
|
|
20397
20397
|
|
|
20398
20398
|
If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training.
|
|
20399
20399
|
|
|
20400
|
-
If you choose ``AugmentedManifestFile`` , S3Uri identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
20400
|
+
If you choose ``AugmentedManifestFile`` , ``S3Uri`` identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
20401
20401
|
|
|
20402
20402
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-model-s3datasource.html#cfn-sagemaker-model-s3datasource-s3datatype
|
|
20403
20403
|
'''
|
|
@@ -31726,7 +31726,7 @@ class CfnModelPackage(
|
|
|
31726
31726
|
) -> None:
|
|
31727
31727
|
'''Describes the Docker container for the model package.
|
|
31728
31728
|
|
|
31729
|
-
:param image: The Amazon EC2 Container Registry
|
|
31729
|
+
:param image: The Amazon EC2 Container Registry path where inference code is stored. If you are using your own custom algorithm instead of an algorithm provided by SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both ``registry/repository[:tag]`` and ``registry/repository[@digest]`` image path formats. For more information, see `Using Your Own Algorithms with Amazon SageMaker <https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html>`_ .
|
|
31730
31730
|
:param container_hostname: The DNS host name for the Docker container.
|
|
31731
31731
|
:param environment: The environment variables to set in the Docker container. Each key and value in the ``Environment`` string to string map can have length of up to 1024. We support up to 16 entries in the map.
|
|
31732
31732
|
:param framework: The machine learning framework of the model package container image.
|
|
@@ -31812,7 +31812,7 @@ class CfnModelPackage(
|
|
|
31812
31812
|
|
|
31813
31813
|
@builtins.property
|
|
31814
31814
|
def image(self) -> builtins.str:
|
|
31815
|
-
'''The Amazon EC2 Container Registry
|
|
31815
|
+
'''The Amazon EC2 Container Registry path where inference code is stored.
|
|
31816
31816
|
|
|
31817
31817
|
If you are using your own custom algorithm instead of an algorithm provided by SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both ``registry/repository[:tag]`` and ``registry/repository[@digest]`` image path formats. For more information, see `Using Your Own Algorithms with Amazon SageMaker <https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html>`_ .
|
|
31818
31818
|
|
|
@@ -32179,7 +32179,7 @@ class CfnModelPackage(
|
|
|
32179
32179
|
|
|
32180
32180
|
Your input bucket must be in the same AWS region as your training job.
|
|
32181
32181
|
|
|
32182
|
-
:param s3_data_type: If you choose ``S3Prefix`` , ``S3Uri`` identifies a key name prefix. SageMaker uses all objects that match the specified key name prefix for model training. If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training. If you choose ``AugmentedManifestFile`` , S3Uri identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
32182
|
+
:param s3_data_type: If you choose ``S3Prefix`` , ``S3Uri`` identifies a key name prefix. SageMaker uses all objects that match the specified key name prefix for model training. If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training. If you choose ``AugmentedManifestFile`` , ``S3Uri`` identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
32183
32183
|
:param s3_uri: Depending on the value specified for the ``S3DataType`` , identifies either a key name prefix or a manifest. For example: - A key name prefix might look like this: ``s3://bucketname/exampleprefix/`` - A manifest might look like this: ``s3://bucketname/example.manifest`` A manifest is an S3 object which is a JSON file consisting of an array of elements. The first element is a prefix which is followed by one or more suffixes. SageMaker appends the suffix elements to the prefix to get a full set of ``S3Uri`` . Note that the prefix must be a valid non-empty ``S3Uri`` that precludes users from specifying a manifest whose individual ``S3Uri`` is sourced from different S3 buckets. The following code example shows a valid manifest format: ``[ {"prefix": "s3://customer_bucket/some/prefix/"},`` ``"relative/path/to/custdata-1",`` ``"relative/path/custdata-2",`` ``...`` ``"relative/path/custdata-N"`` ``]`` This JSON is equivalent to the following ``S3Uri`` list: ``s3://customer_bucket/some/prefix/relative/path/to/custdata-1`` ``s3://customer_bucket/some/prefix/relative/path/custdata-2`` ``...`` ``s3://customer_bucket/some/prefix/relative/path/custdata-N`` The complete set of ``S3Uri`` in this manifest is the input data for the channel for this data source. The object that each ``S3Uri`` points to must be readable by the IAM role that SageMaker uses to perform tasks on your behalf. Your input bucket must be located in same AWS region as your training job.
|
|
32184
32184
|
|
|
32185
32185
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-s3datasource.html
|
|
@@ -32213,7 +32213,7 @@ class CfnModelPackage(
|
|
|
32213
32213
|
|
|
32214
32214
|
If you choose ``ManifestFile`` , ``S3Uri`` identifies an object that is a manifest file containing a list of object keys that you want SageMaker to use for model training.
|
|
32215
32215
|
|
|
32216
|
-
If you choose ``AugmentedManifestFile`` , S3Uri identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
32216
|
+
If you choose ``AugmentedManifestFile`` , ``S3Uri`` identifies an object that is an augmented manifest file in JSON lines format. This file contains the data you want to use for model training. ``AugmentedManifestFile`` can only be used if the Channel's input mode is ``Pipe`` .
|
|
32217
32217
|
|
|
32218
32218
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-s3datasource.html#cfn-sagemaker-modelpackage-s3datasource-s3datatype
|
|
32219
32219
|
'''
|