aws-cdk-lib 2.117.0__py3-none-any.whl → 2.119.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 +138 -25
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.117.0.jsii.tgz → aws-cdk-lib@2.119.0.jsii.tgz} +0 -0
- aws_cdk/amzn_sdc/__init__.py +496 -0
- aws_cdk/aws_appsync/__init__.py +94 -22
- aws_cdk/aws_autoscaling/__init__.py +139 -74
- aws_cdk/aws_certificatemanager/__init__.py +164 -3
- aws_cdk/aws_cloud9/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +853 -38
- aws_cdk/aws_cloudtrail/__init__.py +54 -34
- aws_cdk/aws_cloudwatch_actions/__init__.py +105 -0
- aws_cdk/aws_codebuild/__init__.py +46 -5
- aws_cdk/aws_codecommit/__init__.py +9 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +54 -0
- aws_cdk/aws_codetest/__init__.py +788 -0
- aws_cdk/aws_cognito/__init__.py +104 -0
- aws_cdk/aws_connect/__init__.py +626 -78
- aws_cdk/aws_docdb/__init__.py +442 -0
- aws_cdk/aws_dynamodb/__init__.py +14 -0
- aws_cdk/aws_ec2/__init__.py +372 -44
- aws_cdk/aws_ecs/__init__.py +192 -35
- aws_cdk/aws_emrserverless/__init__.py +20 -13
- aws_cdk/aws_events/__init__.py +90 -1
- aws_cdk/aws_fis/__init__.py +12 -32
- aws_cdk/aws_globalaccelerator/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +329 -0
- aws_cdk/aws_iam/__init__.py +50 -24
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotsitewise/__init__.py +4 -4
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kinesisfirehose/__init__.py +111 -0
- aws_cdk/aws_lambda/__init__.py +180 -407
- aws_cdk/aws_location/__init__.py +1132 -17
- aws_cdk/aws_mediatailor/__init__.py +120 -17
- aws_cdk/aws_networkfirewall/__init__.py +2 -2
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_opensearchservice/__init__.py +58 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -6
- aws_cdk/aws_pipes/__init__.py +7 -2
- aws_cdk/aws_rds/__init__.py +247 -16
- aws_cdk/aws_redshift/__init__.py +103 -0
- aws_cdk/aws_route53/__init__.py +68 -20
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_signer/__init__.py +27 -4
- aws_cdk/aws_ssm/__init__.py +76 -13
- aws_cdk/aws_stepfunctions/__init__.py +110 -5
- aws_cdk/aws_stepfunctions_tasks/__init__.py +84 -29
- aws_cdk/pipelines/__init__.py +136 -37
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/LICENSE +1 -1
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/METADATA +98 -12
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/NOTICE +1 -1
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/RECORD +57 -55
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/top_level.txt +0 -0
|
@@ -200,7 +200,7 @@ class CfnRepository(
|
|
|
200
200
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
201
201
|
:param repository_name: The name of the new repository to be created. .. epigraph:: The repository name must be unique across the calling AWS account . Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about the limits on repository names, see `Quotas <https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html>`_ in the *AWS CodeCommit User Guide* . The suffix .git is prohibited.
|
|
202
202
|
:param code: Information about code to be committed to a repository after it is created in an AWS CloudFormation stack. Information about code is only used in resource creation. Updates to a stack will not reflect changes made to code properties after initial resource creation. .. epigraph:: You can only use this property to add code when creating a repository with a AWS CloudFormation template at creation time. This property cannot be used for updating code to an existing repository.
|
|
203
|
-
:param kms_key_id:
|
|
203
|
+
:param kms_key_id: The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository. .. epigraph:: The input can be the full ARN, the key ID, or the key alias. For more information, see `Finding the key ID and key ARN <https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html>`_ .
|
|
204
204
|
:param repository_description: A comment or description about the new repository. .. epigraph:: The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a webpage can expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a webpage.
|
|
205
205
|
:param tags: One or more tag key-value pairs to use when tagging this repository.
|
|
206
206
|
:param triggers: The JSON block of configuration information for each trigger.
|
|
@@ -339,6 +339,7 @@ class CfnRepository(
|
|
|
339
339
|
@builtins.property
|
|
340
340
|
@jsii.member(jsii_name="kmsKeyId")
|
|
341
341
|
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
342
|
+
'''The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.'''
|
|
342
343
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyId"))
|
|
343
344
|
|
|
344
345
|
@kms_key_id.setter
|
|
@@ -740,7 +741,7 @@ class CfnRepositoryProps:
|
|
|
740
741
|
|
|
741
742
|
:param repository_name: The name of the new repository to be created. .. epigraph:: The repository name must be unique across the calling AWS account . Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about the limits on repository names, see `Quotas <https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html>`_ in the *AWS CodeCommit User Guide* . The suffix .git is prohibited.
|
|
742
743
|
:param code: Information about code to be committed to a repository after it is created in an AWS CloudFormation stack. Information about code is only used in resource creation. Updates to a stack will not reflect changes made to code properties after initial resource creation. .. epigraph:: You can only use this property to add code when creating a repository with a AWS CloudFormation template at creation time. This property cannot be used for updating code to an existing repository.
|
|
743
|
-
:param kms_key_id:
|
|
744
|
+
:param kms_key_id: The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository. .. epigraph:: The input can be the full ARN, the key ID, or the key alias. For more information, see `Finding the key ID and key ARN <https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html>`_ .
|
|
744
745
|
:param repository_description: A comment or description about the new repository. .. epigraph:: The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a webpage can expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a webpage.
|
|
745
746
|
:param tags: One or more tag key-value pairs to use when tagging this repository.
|
|
746
747
|
:param triggers: The JSON block of configuration information for each trigger.
|
|
@@ -841,7 +842,12 @@ class CfnRepositoryProps:
|
|
|
841
842
|
|
|
842
843
|
@builtins.property
|
|
843
844
|
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
844
|
-
'''
|
|
845
|
+
'''The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
|
|
846
|
+
|
|
847
|
+
.. epigraph::
|
|
848
|
+
|
|
849
|
+
The input can be the full ARN, the key ID, or the key alias. For more information, see `Finding the key ID and key ARN <https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html>`_ .
|
|
850
|
+
|
|
845
851
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-kmskeyid
|
|
846
852
|
'''
|
|
847
853
|
result = self._values.get("kms_key_id")
|
|
@@ -1990,6 +1990,12 @@ class CacheControl(
|
|
|
1990
1990
|
check_type(argname="argument s", value=s, expected_type=type_hints["s"])
|
|
1991
1991
|
return typing.cast("CacheControl", jsii.sinvoke(cls, "fromString", [s]))
|
|
1992
1992
|
|
|
1993
|
+
@jsii.member(jsii_name="immutable")
|
|
1994
|
+
@builtins.classmethod
|
|
1995
|
+
def immutable(cls) -> "CacheControl":
|
|
1996
|
+
'''The 'immutable' cache control directive.'''
|
|
1997
|
+
return typing.cast("CacheControl", jsii.sinvoke(cls, "immutable", []))
|
|
1998
|
+
|
|
1993
1999
|
@jsii.member(jsii_name="maxAge")
|
|
1994
2000
|
@builtins.classmethod
|
|
1995
2001
|
def max_age(cls, t: _Duration_4839e8c3) -> "CacheControl":
|
|
@@ -2008,12 +2014,24 @@ class CacheControl(
|
|
|
2008
2014
|
'''The 'must-revalidate' cache control directive.'''
|
|
2009
2015
|
return typing.cast("CacheControl", jsii.sinvoke(cls, "mustRevalidate", []))
|
|
2010
2016
|
|
|
2017
|
+
@jsii.member(jsii_name="mustUnderstand")
|
|
2018
|
+
@builtins.classmethod
|
|
2019
|
+
def must_understand(cls) -> "CacheControl":
|
|
2020
|
+
'''The 'must-understand' cache control directive.'''
|
|
2021
|
+
return typing.cast("CacheControl", jsii.sinvoke(cls, "mustUnderstand", []))
|
|
2022
|
+
|
|
2011
2023
|
@jsii.member(jsii_name="noCache")
|
|
2012
2024
|
@builtins.classmethod
|
|
2013
2025
|
def no_cache(cls) -> "CacheControl":
|
|
2014
2026
|
'''The 'no-cache' cache control directive.'''
|
|
2015
2027
|
return typing.cast("CacheControl", jsii.sinvoke(cls, "noCache", []))
|
|
2016
2028
|
|
|
2029
|
+
@jsii.member(jsii_name="noStore")
|
|
2030
|
+
@builtins.classmethod
|
|
2031
|
+
def no_store(cls) -> "CacheControl":
|
|
2032
|
+
'''The 'no-store' cache control directive.'''
|
|
2033
|
+
return typing.cast("CacheControl", jsii.sinvoke(cls, "noStore", []))
|
|
2034
|
+
|
|
2017
2035
|
@jsii.member(jsii_name="noTransform")
|
|
2018
2036
|
@builtins.classmethod
|
|
2019
2037
|
def no_transform(cls) -> "CacheControl":
|
|
@@ -2050,6 +2068,30 @@ class CacheControl(
|
|
|
2050
2068
|
check_type(argname="argument t", value=t, expected_type=type_hints["t"])
|
|
2051
2069
|
return typing.cast("CacheControl", jsii.sinvoke(cls, "sMaxAge", [t]))
|
|
2052
2070
|
|
|
2071
|
+
@jsii.member(jsii_name="staleIfError")
|
|
2072
|
+
@builtins.classmethod
|
|
2073
|
+
def stale_if_error(cls, t: _Duration_4839e8c3) -> "CacheControl":
|
|
2074
|
+
'''The 'stale-if-error' cache control directive.
|
|
2075
|
+
|
|
2076
|
+
:param t: -
|
|
2077
|
+
'''
|
|
2078
|
+
if __debug__:
|
|
2079
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2c970558e4a44afb76682356f95d85354751309c55d7f037bcb2551d0eaf6405)
|
|
2080
|
+
check_type(argname="argument t", value=t, expected_type=type_hints["t"])
|
|
2081
|
+
return typing.cast("CacheControl", jsii.sinvoke(cls, "staleIfError", [t]))
|
|
2082
|
+
|
|
2083
|
+
@jsii.member(jsii_name="staleWhileRevalidate")
|
|
2084
|
+
@builtins.classmethod
|
|
2085
|
+
def stale_while_revalidate(cls, t: _Duration_4839e8c3) -> "CacheControl":
|
|
2086
|
+
'''The 'stale-while-revalidate' cache control directive.
|
|
2087
|
+
|
|
2088
|
+
:param t: -
|
|
2089
|
+
'''
|
|
2090
|
+
if __debug__:
|
|
2091
|
+
type_hints = typing.get_type_hints(_typecheckingstub__35e83b59ef09dcbb4714720bb3d186173222698c4730928b2a33420f644e68fe)
|
|
2092
|
+
check_type(argname="argument t", value=t, expected_type=type_hints["t"])
|
|
2093
|
+
return typing.cast("CacheControl", jsii.sinvoke(cls, "staleWhileRevalidate", [t]))
|
|
2094
|
+
|
|
2053
2095
|
@builtins.property
|
|
2054
2096
|
@jsii.member(jsii_name="value")
|
|
2055
2097
|
def value(self) -> builtins.str:
|
|
@@ -12029,6 +12071,18 @@ def _typecheckingstub__388e5bc80fad8810892d8dd36333ae99785c6b9c1023d20b29139fb98
|
|
|
12029
12071
|
"""Type checking stubs"""
|
|
12030
12072
|
pass
|
|
12031
12073
|
|
|
12074
|
+
def _typecheckingstub__2c970558e4a44afb76682356f95d85354751309c55d7f037bcb2551d0eaf6405(
|
|
12075
|
+
t: _Duration_4839e8c3,
|
|
12076
|
+
) -> None:
|
|
12077
|
+
"""Type checking stubs"""
|
|
12078
|
+
pass
|
|
12079
|
+
|
|
12080
|
+
def _typecheckingstub__35e83b59ef09dcbb4714720bb3d186173222698c4730928b2a33420f644e68fe(
|
|
12081
|
+
t: _Duration_4839e8c3,
|
|
12082
|
+
) -> None:
|
|
12083
|
+
"""Type checking stubs"""
|
|
12084
|
+
pass
|
|
12085
|
+
|
|
12032
12086
|
def _typecheckingstub__e91ec86b5db9fd0adbdf92c09f3f261542c3e4ebbeab952dd3a6971eb634cd31(
|
|
12033
12087
|
value: builtins.str,
|
|
12034
12088
|
) -> None:
|