aws-cdk-lib 2.200.1__py3-none-any.whl → 2.201.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 +105 -13
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.200.1.jsii.tgz → aws-cdk-lib@2.201.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +2 -3
- aws_cdk/aws_amplify/__init__.py +3 -3
- aws_cdk/aws_apigateway/__init__.py +21 -17
- aws_cdk/aws_apigatewayv2/__init__.py +87 -45
- aws_cdk/aws_appconfig/__init__.py +38 -1
- aws_cdk/aws_appsync/__init__.py +10 -10
- aws_cdk/aws_athena/__init__.py +226 -0
- aws_cdk/aws_autoscaling/__init__.py +38 -37
- aws_cdk/aws_bedrock/__init__.py +5108 -1571
- aws_cdk/aws_cloudfront/__init__.py +8 -0
- aws_cdk/aws_cloudtrail/__init__.py +178 -0
- aws_cdk/aws_cloudwatch/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +746 -0
- aws_cdk/aws_connect/__init__.py +5 -5
- aws_cdk/aws_customerprofiles/__init__.py +377 -8
- aws_cdk/aws_datasync/__init__.py +189 -160
- aws_cdk/aws_datazone/__init__.py +512 -170
- aws_cdk/aws_deadline/__init__.py +32 -4
- aws_cdk/aws_dsql/__init__.py +150 -10
- aws_cdk/aws_ec2/__init__.py +793 -56
- aws_cdk/aws_ecs/__init__.py +94 -11
- aws_cdk/aws_efs/__init__.py +92 -12
- aws_cdk/aws_eks/__init__.py +166 -19
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +2 -2
- aws_cdk/aws_emr/__init__.py +10 -4
- aws_cdk/aws_entityresolution/__init__.py +25 -10
- aws_cdk/aws_evs/__init__.py +2204 -0
- aws_cdk/aws_fsx/__init__.py +7 -7
- aws_cdk/aws_lambda/__init__.py +409 -32
- aws_cdk/aws_lightsail/__init__.py +17 -13
- aws_cdk/aws_logs/__init__.py +1 -0
- aws_cdk/aws_networkfirewall/__init__.py +562 -0
- aws_cdk/aws_opensearchservice/__init__.py +3 -3
- aws_cdk/aws_opsworkscm/__init__.py +9 -43
- aws_cdk/aws_rds/__init__.py +284 -87
- aws_cdk/aws_s3/__init__.py +23 -15
- aws_cdk/aws_sagemaker/__init__.py +223 -3
- aws_cdk/aws_securityhub/__init__.py +18 -34
- aws_cdk/aws_ssm/__init__.py +83 -1
- aws_cdk/aws_stepfunctions/__init__.py +235 -45
- aws_cdk/aws_synthetics/__init__.py +74 -0
- aws_cdk/aws_transfer/__init__.py +3 -3
- aws_cdk/aws_verifiedpermissions/__init__.py +17 -6
- aws_cdk/aws_wafv2/__init__.py +39 -2
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/RECORD +53 -52
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.200.1.dist-info → aws_cdk_lib-2.201.0.dist-info}/top_level.txt +0 -0
|
@@ -7580,7 +7580,7 @@ class CfnInstanceSnapshot(
|
|
|
7580
7580
|
metaclass=jsii.JSIIMeta,
|
|
7581
7581
|
jsii_type="aws-cdk-lib.aws_lightsail.CfnInstanceSnapshot",
|
|
7582
7582
|
):
|
|
7583
|
-
'''
|
|
7583
|
+
'''Describes an instance snapshot.
|
|
7584
7584
|
|
|
7585
7585
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html
|
|
7586
7586
|
:cloudformationResource: AWS::Lightsail::InstanceSnapshot
|
|
@@ -7616,9 +7616,9 @@ class CfnInstanceSnapshot(
|
|
|
7616
7616
|
'''
|
|
7617
7617
|
:param scope: Scope in which this resource is defined.
|
|
7618
7618
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
7619
|
-
:param instance_name: The
|
|
7619
|
+
:param instance_name: The name the user gave the instance ( ``Amazon_Linux_2023-1`` ).
|
|
7620
7620
|
:param instance_snapshot_name: The name of the snapshot.
|
|
7621
|
-
:param tags:
|
|
7621
|
+
:param tags: The tag keys and optional values for the resource. For more information about tags in Lightsail, see the `Amazon Lightsail Developer Guide <https://docs.aws.amazon.com/lightsail/latest/userguide/amazon-lightsail-tags>`_ .
|
|
7622
7622
|
'''
|
|
7623
7623
|
if __debug__:
|
|
7624
7624
|
type_hints = typing.get_type_hints(_typecheckingstub__b541a8ae34465f7b9196a2ba229a1f5fd9a1a2d84c59e0a52b4bb8767067a951)
|
|
@@ -7665,7 +7665,7 @@ class CfnInstanceSnapshot(
|
|
|
7665
7665
|
@builtins.property
|
|
7666
7666
|
@jsii.member(jsii_name="attrArn")
|
|
7667
7667
|
def attr_arn(self) -> builtins.str:
|
|
7668
|
-
'''The Amazon Resource Name (ARN) of the snapshot.
|
|
7668
|
+
'''The Amazon Resource Name (ARN) of the snapshot ( ``arn:aws:lightsail:us-east-2:123456789101:InstanceSnapshot/d23b5706-3322-4d83-81e5-12345EXAMPLE`` ).
|
|
7669
7669
|
|
|
7670
7670
|
:cloudformationAttribute: Arn
|
|
7671
7671
|
'''
|
|
@@ -7674,7 +7674,7 @@ class CfnInstanceSnapshot(
|
|
|
7674
7674
|
@builtins.property
|
|
7675
7675
|
@jsii.member(jsii_name="attrFromInstanceArn")
|
|
7676
7676
|
def attr_from_instance_arn(self) -> builtins.str:
|
|
7677
|
-
'''The Amazon Resource Name (ARN) of the instance from which the snapshot was created.
|
|
7677
|
+
'''The Amazon Resource Name (ARN) of the instance from which the snapshot was created ( ``arn:aws:lightsail:us-east-2:123456789101:Instance/64b8404c-ccb1-430b-8daf-12345EXAMPLE`` ).
|
|
7678
7678
|
|
|
7679
7679
|
:cloudformationAttribute: FromInstanceArn
|
|
7680
7680
|
'''
|
|
@@ -7710,7 +7710,7 @@ class CfnInstanceSnapshot(
|
|
|
7710
7710
|
@builtins.property
|
|
7711
7711
|
@jsii.member(jsii_name="attrResourceType")
|
|
7712
7712
|
def attr_resource_type(self) -> builtins.str:
|
|
7713
|
-
'''The type of resource (usually InstanceSnapshot).
|
|
7713
|
+
'''The type of resource (usually ``InstanceSnapshot`` ).
|
|
7714
7714
|
|
|
7715
7715
|
:cloudformationAttribute: ResourceType
|
|
7716
7716
|
'''
|
|
@@ -7737,7 +7737,9 @@ class CfnInstanceSnapshot(
|
|
|
7737
7737
|
@builtins.property
|
|
7738
7738
|
@jsii.member(jsii_name="attrSupportCode")
|
|
7739
7739
|
def attr_support_code(self) -> builtins.str:
|
|
7740
|
-
'''
|
|
7740
|
+
'''The support code.
|
|
7741
|
+
|
|
7742
|
+
Include this code in your email to support when you have questions about an instance or another resource in Lightsail. This code enables our support team to look up your Lightsail information more easily.
|
|
7741
7743
|
|
|
7742
7744
|
:cloudformationAttribute: SupportCode
|
|
7743
7745
|
'''
|
|
@@ -7757,7 +7759,7 @@ class CfnInstanceSnapshot(
|
|
|
7757
7759
|
@builtins.property
|
|
7758
7760
|
@jsii.member(jsii_name="instanceName")
|
|
7759
7761
|
def instance_name(self) -> builtins.str:
|
|
7760
|
-
'''The
|
|
7762
|
+
'''The name the user gave the instance ( ``Amazon_Linux_2023-1`` ).'''
|
|
7761
7763
|
return typing.cast(builtins.str, jsii.get(self, "instanceName"))
|
|
7762
7764
|
|
|
7763
7765
|
@instance_name.setter
|
|
@@ -7783,7 +7785,7 @@ class CfnInstanceSnapshot(
|
|
|
7783
7785
|
@builtins.property
|
|
7784
7786
|
@jsii.member(jsii_name="tags")
|
|
7785
7787
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
7786
|
-
'''
|
|
7788
|
+
'''The tag keys and optional values for the resource.'''
|
|
7787
7789
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
7788
7790
|
|
|
7789
7791
|
@tags.setter
|
|
@@ -7888,9 +7890,9 @@ class CfnInstanceSnapshotProps:
|
|
|
7888
7890
|
) -> None:
|
|
7889
7891
|
'''Properties for defining a ``CfnInstanceSnapshot``.
|
|
7890
7892
|
|
|
7891
|
-
:param instance_name: The
|
|
7893
|
+
:param instance_name: The name the user gave the instance ( ``Amazon_Linux_2023-1`` ).
|
|
7892
7894
|
:param instance_snapshot_name: The name of the snapshot.
|
|
7893
|
-
:param tags:
|
|
7895
|
+
:param tags: The tag keys and optional values for the resource. For more information about tags in Lightsail, see the `Amazon Lightsail Developer Guide <https://docs.aws.amazon.com/lightsail/latest/userguide/amazon-lightsail-tags>`_ .
|
|
7894
7896
|
|
|
7895
7897
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html
|
|
7896
7898
|
:exampleMetadata: fixture=_generated
|
|
@@ -7926,7 +7928,7 @@ class CfnInstanceSnapshotProps:
|
|
|
7926
7928
|
|
|
7927
7929
|
@builtins.property
|
|
7928
7930
|
def instance_name(self) -> builtins.str:
|
|
7929
|
-
'''The
|
|
7931
|
+
'''The name the user gave the instance ( ``Amazon_Linux_2023-1`` ).
|
|
7930
7932
|
|
|
7931
7933
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html#cfn-lightsail-instancesnapshot-instancename
|
|
7932
7934
|
'''
|
|
@@ -7946,7 +7948,9 @@ class CfnInstanceSnapshotProps:
|
|
|
7946
7948
|
|
|
7947
7949
|
@builtins.property
|
|
7948
7950
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
7949
|
-
'''
|
|
7951
|
+
'''The tag keys and optional values for the resource.
|
|
7952
|
+
|
|
7953
|
+
For more information about tags in Lightsail, see the `Amazon Lightsail Developer Guide <https://docs.aws.amazon.com/lightsail/latest/userguide/amazon-lightsail-tags>`_ .
|
|
7950
7954
|
|
|
7951
7955
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html#cfn-lightsail-instancesnapshot-tags
|
|
7952
7956
|
'''
|
aws_cdk/aws_logs/__init__.py
CHANGED
|
@@ -221,6 +221,7 @@ the name `Namespace/MetricName`.
|
|
|
221
221
|
|
|
222
222
|
You can expose a metric on a metric filter by calling the `MetricFilter.metric()` API.
|
|
223
223
|
This has a default of `statistic = 'avg'` if the statistic is not set in the `props`.
|
|
224
|
+
Additionally, if the metric filter was created with a dimension map, those dimensions will be included in the metric.
|
|
224
225
|
|
|
225
226
|
```python
|
|
226
227
|
# log_group: logs.LogGroup
|