aws-cdk-lib 2.90.0__py3-none-any.whl → 2.92.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 +22 -4
- aws_cdk/_jsii/__init__.py +2 -2
- aws_cdk/_jsii/{aws-cdk-lib@2.90.0.jsii.tgz → aws-cdk-lib@2.92.0.jsii.tgz} +0 -0
- aws_cdk/aws_appstream/__init__.py +3 -3
- aws_cdk/aws_batch/__init__.py +39 -18
- aws_cdk/aws_billingconductor/__init__.py +44 -13
- aws_cdk/aws_cleanrooms/__init__.py +2 -4
- aws_cdk/aws_cloudtrail/__init__.py +35 -10
- aws_cdk/aws_cloudwatch/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +7 -7
- aws_cdk/aws_cognito/__init__.py +8 -8
- aws_cdk/aws_config/__init__.py +220 -0
- aws_cdk/aws_datasync/__init__.py +22 -35
- aws_cdk/aws_dms/__init__.py +909 -4
- aws_cdk/aws_dynamodb/__init__.py +0 -1
- aws_cdk/aws_ec2/__init__.py +59 -21
- aws_cdk/aws_ecs/__init__.py +45 -21
- aws_cdk/aws_evidently/__init__.py +3 -3
- aws_cdk/aws_fsx/__init__.py +6 -5
- aws_cdk/aws_glue/__init__.py +438 -10
- aws_cdk/aws_guardduty/__init__.py +60 -17
- aws_cdk/aws_iam/__init__.py +8 -9
- aws_cdk/aws_iot/__init__.py +5 -1
- aws_cdk/aws_kms/__init__.py +95 -47
- aws_cdk/aws_lambda/__init__.py +4 -2
- aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
- aws_cdk/aws_mediatailor/__init__.py +2902 -892
- aws_cdk/aws_mwaa/__init__.py +13 -8
- aws_cdk/aws_neptune/__init__.py +50 -2
- aws_cdk/aws_omics/__init__.py +80 -0
- aws_cdk/aws_opensearchserverless/__init__.py +3 -3
- aws_cdk/aws_opensearchservice/__init__.py +247 -14
- aws_cdk/aws_organizations/__init__.py +17 -17
- aws_cdk/aws_personalize/__init__.py +41 -25
- aws_cdk/aws_rds/__init__.py +24 -10
- aws_cdk/aws_resiliencehub/__init__.py +22 -22
- aws_cdk/aws_rolesanywhere/__init__.py +58 -74
- aws_cdk/aws_route53/__init__.py +3 -1
- aws_cdk/aws_s3/__init__.py +17 -7
- aws_cdk/aws_sagemaker/__init__.py +396 -5
- aws_cdk/aws_sns/__init__.py +8 -8
- aws_cdk/aws_sqs/__init__.py +231 -4
- aws_cdk/aws_ssm/__init__.py +6 -28
- aws_cdk/aws_stepfunctions/__init__.py +7 -7
- aws_cdk/aws_timestream/__init__.py +243 -0
- aws_cdk/aws_transfer/__init__.py +250 -52
- aws_cdk/aws_vpclattice/__init__.py +10 -6
- aws_cdk/aws_wafv2/__init__.py +7517 -5036
- aws_cdk/custom_resources/__init__.py +18 -30
- {aws_cdk_lib-2.90.0.dist-info → aws_cdk_lib-2.92.0.dist-info}/METADATA +8 -8
- {aws_cdk_lib-2.90.0.dist-info → aws_cdk_lib-2.92.0.dist-info}/RECORD +55 -55
- {aws_cdk_lib-2.90.0.dist-info → aws_cdk_lib-2.92.0.dist-info}/WHEEL +1 -1
- {aws_cdk_lib-2.90.0.dist-info → aws_cdk_lib-2.92.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.90.0.dist-info → aws_cdk_lib-2.92.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.90.0.dist-info → aws_cdk_lib-2.92.0.dist-info}/top_level.txt +0 -0
|
@@ -2756,7 +2756,7 @@ class CfnService(
|
|
|
2756
2756
|
:param auth_type: The type of IAM policy. - ``NONE`` : The resource does not use an IAM policy. This is the default. - ``AWS_IAM`` : The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required. Default: - "NONE"
|
|
2757
2757
|
:param certificate_arn: The Amazon Resource Name (ARN) of the certificate.
|
|
2758
2758
|
:param custom_domain_name: The custom domain name of the service.
|
|
2759
|
-
:param dns_entry:
|
|
2759
|
+
:param dns_entry: The DNS information of the service.
|
|
2760
2760
|
:param name: The name of the service. The name must be unique within the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a hyphen as the first or last character, or immediately after another hyphen. If you don't specify a name, CloudFormation generates one. However, if you specify a name, and later want to replace the resource, you must specify a new name.
|
|
2761
2761
|
:param tags: The tags for the service.
|
|
2762
2762
|
'''
|
|
@@ -2923,6 +2923,7 @@ class CfnService(
|
|
|
2923
2923
|
def dns_entry(
|
|
2924
2924
|
self,
|
|
2925
2925
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnService.DnsEntryProperty"]]:
|
|
2926
|
+
'''The DNS information of the service.'''
|
|
2926
2927
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnService.DnsEntryProperty"]], jsii.get(self, "dnsEntry"))
|
|
2927
2928
|
|
|
2928
2929
|
@dns_entry.setter
|
|
@@ -3352,7 +3353,7 @@ class CfnServiceNetworkServiceAssociation(
|
|
|
3352
3353
|
'''
|
|
3353
3354
|
:param scope: Scope in which this resource is defined.
|
|
3354
3355
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3355
|
-
:param dns_entry:
|
|
3356
|
+
:param dns_entry: The DNS information of the service.
|
|
3356
3357
|
:param service_identifier: The ID or Amazon Resource Name (ARN) of the service.
|
|
3357
3358
|
:param service_network_identifier: The ID or Amazon Resource Name (ARN) of the service network. You must use the ARN if the resources specified in the operation are in different accounts.
|
|
3358
3359
|
:param tags: The tags for the association.
|
|
@@ -3524,6 +3525,7 @@ class CfnServiceNetworkServiceAssociation(
|
|
|
3524
3525
|
def dns_entry(
|
|
3525
3526
|
self,
|
|
3526
3527
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnServiceNetworkServiceAssociation.DnsEntryProperty"]]:
|
|
3528
|
+
'''The DNS information of the service.'''
|
|
3527
3529
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnServiceNetworkServiceAssociation.DnsEntryProperty"]], jsii.get(self, "dnsEntry"))
|
|
3528
3530
|
|
|
3529
3531
|
@dns_entry.setter
|
|
@@ -3667,7 +3669,7 @@ class CfnServiceNetworkServiceAssociationProps:
|
|
|
3667
3669
|
) -> None:
|
|
3668
3670
|
'''Properties for defining a ``CfnServiceNetworkServiceAssociation``.
|
|
3669
3671
|
|
|
3670
|
-
:param dns_entry:
|
|
3672
|
+
:param dns_entry: The DNS information of the service.
|
|
3671
3673
|
:param service_identifier: The ID or Amazon Resource Name (ARN) of the service.
|
|
3672
3674
|
:param service_network_identifier: The ID or Amazon Resource Name (ARN) of the service network. You must use the ARN if the resources specified in the operation are in different accounts.
|
|
3673
3675
|
:param tags: The tags for the association.
|
|
@@ -3714,7 +3716,8 @@ class CfnServiceNetworkServiceAssociationProps:
|
|
|
3714
3716
|
def dns_entry(
|
|
3715
3717
|
self,
|
|
3716
3718
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnServiceNetworkServiceAssociation.DnsEntryProperty]]:
|
|
3717
|
-
'''
|
|
3719
|
+
'''The DNS information of the service.
|
|
3720
|
+
|
|
3718
3721
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-dnsentry
|
|
3719
3722
|
'''
|
|
3720
3723
|
result = self._values.get("dns_entry")
|
|
@@ -4138,7 +4141,7 @@ class CfnServiceProps:
|
|
|
4138
4141
|
:param auth_type: The type of IAM policy. - ``NONE`` : The resource does not use an IAM policy. This is the default. - ``AWS_IAM`` : The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required. Default: - "NONE"
|
|
4139
4142
|
:param certificate_arn: The Amazon Resource Name (ARN) of the certificate.
|
|
4140
4143
|
:param custom_domain_name: The custom domain name of the service.
|
|
4141
|
-
:param dns_entry:
|
|
4144
|
+
:param dns_entry: The DNS information of the service.
|
|
4142
4145
|
:param name: The name of the service. The name must be unique within the account. The valid characters are a-z, 0-9, and hyphens (-). You can't use a hyphen as the first or last character, or immediately after another hyphen. If you don't specify a name, CloudFormation generates one. However, if you specify a name, and later want to replace the resource, you must specify a new name.
|
|
4143
4146
|
:param tags: The tags for the service.
|
|
4144
4147
|
|
|
@@ -4224,7 +4227,8 @@ class CfnServiceProps:
|
|
|
4224
4227
|
def dns_entry(
|
|
4225
4228
|
self,
|
|
4226
4229
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnService.DnsEntryProperty]]:
|
|
4227
|
-
'''
|
|
4230
|
+
'''The DNS information of the service.
|
|
4231
|
+
|
|
4228
4232
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-service.html#cfn-vpclattice-service-dnsentry
|
|
4229
4233
|
'''
|
|
4230
4234
|
result = self._values.get("dns_entry")
|