aws-cdk-lib 2.154.0__py3-none-any.whl → 2.154.1__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.154.0.jsii.tgz → aws-cdk-lib@2.154.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +13 -14
- aws_cdk/aws_bedrock/__init__.py +2672 -306
- aws_cdk/aws_cloudfront/__init__.py +16 -3
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_ec2/__init__.py +20 -12
- aws_cdk/aws_ecs/__init__.py +5 -3
- aws_cdk/aws_gamelift/__init__.py +52 -40
- aws_cdk/aws_glue/__init__.py +55 -4
- aws_cdk/aws_imagebuilder/__init__.py +6 -6
- aws_cdk/aws_ivs/__init__.py +458 -2
- aws_cdk/aws_medialive/__init__.py +41 -0
- aws_cdk/aws_msk/__init__.py +88 -0
- aws_cdk/aws_sagemaker/__init__.py +2 -2
- aws_cdk/aws_ssm/__init__.py +5 -5
- aws_cdk/custom_resources/__init__.py +7 -1
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/RECORD +23 -23
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/top_level.txt +0 -0
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -20,7 +20,7 @@ import aws_cdk.cloud_assembly_schema._jsii
|
|
|
20
20
|
import constructs._jsii
|
|
21
21
|
|
|
22
22
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
23
|
-
"aws-cdk-lib", "2.154.
|
|
23
|
+
"aws-cdk-lib", "2.154.1", __name__[0:-6], "aws-cdk-lib@2.154.1.jsii.tgz"
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
__all__ = [
|
|
Binary file
|
|
@@ -4583,15 +4583,6 @@ class CfnIntegration(
|
|
|
4583
4583
|
'''The CloudFormation resource type name for this resource class.'''
|
|
4584
4584
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
4585
4585
|
|
|
4586
|
-
@builtins.property
|
|
4587
|
-
@jsii.member(jsii_name="attrId")
|
|
4588
|
-
def attr_id(self) -> builtins.str:
|
|
4589
|
-
'''The identifier.
|
|
4590
|
-
|
|
4591
|
-
:cloudformationAttribute: Id
|
|
4592
|
-
'''
|
|
4593
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
4594
|
-
|
|
4595
4586
|
@builtins.property
|
|
4596
4587
|
@jsii.member(jsii_name="attrIntegrationId")
|
|
4597
4588
|
def attr_integration_id(self) -> builtins.str:
|
|
@@ -4921,10 +4912,12 @@ class CfnIntegration(
|
|
|
4921
4912
|
destination: typing.Optional[builtins.str] = None,
|
|
4922
4913
|
source: typing.Optional[builtins.str] = None,
|
|
4923
4914
|
) -> None:
|
|
4924
|
-
'''
|
|
4915
|
+
'''Supported only for HTTP APIs.
|
|
4916
|
+
|
|
4917
|
+
You use response parameters to transform the HTTP response from a backend integration before returning the response to clients. Specify a key-value map from a selection key to response parameters. The selection key must be a valid HTTP status code within the range of 200-599. Response parameters are a key-value map. The key must match the pattern ``<action>:<header>.<location>`` or ``overwrite.statuscode`` . The action can be ``append`` , ``overwrite`` or ``remove`` . The value can be a static value, or map to response data, stage variables, or context variables that are evaluated at runtime. To learn more, see `Transforming API requests and responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html>`_ .
|
|
4925
4918
|
|
|
4926
|
-
:param destination:
|
|
4927
|
-
:param source:
|
|
4919
|
+
:param destination: Specifies the location of the response to modify, and how to modify it. To learn more, see `Transforming API requests and responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html>`_ .
|
|
4920
|
+
:param source: Specifies the data to update the parameter with. To learn more, see `Transforming API requests and responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html>`_ .
|
|
4928
4921
|
|
|
4929
4922
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameter.html
|
|
4930
4923
|
:exampleMetadata: fixture=_generated
|
|
@@ -4952,7 +4945,10 @@ class CfnIntegration(
|
|
|
4952
4945
|
|
|
4953
4946
|
@builtins.property
|
|
4954
4947
|
def destination(self) -> typing.Optional[builtins.str]:
|
|
4955
|
-
'''
|
|
4948
|
+
'''Specifies the location of the response to modify, and how to modify it.
|
|
4949
|
+
|
|
4950
|
+
To learn more, see `Transforming API requests and responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html>`_ .
|
|
4951
|
+
|
|
4956
4952
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameter.html#cfn-apigatewayv2-integration-responseparameter-destination
|
|
4957
4953
|
'''
|
|
4958
4954
|
result = self._values.get("destination")
|
|
@@ -4960,7 +4956,10 @@ class CfnIntegration(
|
|
|
4960
4956
|
|
|
4961
4957
|
@builtins.property
|
|
4962
4958
|
def source(self) -> typing.Optional[builtins.str]:
|
|
4963
|
-
'''
|
|
4959
|
+
'''Specifies the data to update the parameter with.
|
|
4960
|
+
|
|
4961
|
+
To learn more, see `Transforming API requests and responses <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html>`_ .
|
|
4962
|
+
|
|
4964
4963
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameter.html#cfn-apigatewayv2-integration-responseparameter-source
|
|
4965
4964
|
'''
|
|
4966
4965
|
result = self._values.get("source")
|