aws-cdk-lib 2.190.0__py3-none-any.whl → 2.191.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.190.0.jsii.tgz → aws-cdk-lib@2.191.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +18 -1
- aws_cdk/aws_aps/__init__.py +383 -2
- aws_cdk/aws_batch/__init__.py +40 -18
- aws_cdk/aws_bedrock/__init__.py +676 -41
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_datazone/__init__.py +23 -1
- aws_cdk/aws_events/__init__.py +39 -0
- aws_cdk/aws_launchwizard/__init__.py +49 -49
- aws_cdk/aws_neptune/__init__.py +0 -16
- aws_cdk/aws_rds/__init__.py +36 -0
- aws_cdk/aws_s3tables/__init__.py +142 -1
- aws_cdk/aws_ses/__init__.py +643 -18
- {aws_cdk_lib-2.190.0.dist-info → aws_cdk_lib-2.191.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.190.0.dist-info → aws_cdk_lib-2.191.0.dist-info}/RECORD +20 -20
- {aws_cdk_lib-2.190.0.dist-info → aws_cdk_lib-2.191.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.190.0.dist-info → aws_cdk_lib-2.191.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.190.0.dist-info → aws_cdk_lib-2.191.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.190.0.dist-info → aws_cdk_lib-2.191.0.dist-info}/top_level.txt +0 -0
|
@@ -12081,18 +12081,42 @@ class LinuxArmLambdaBuildImage(
|
|
|
12081
12081
|
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:dotnet8`` build image.'''
|
|
12082
12082
|
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_DOTNET_8"))
|
|
12083
12083
|
|
|
12084
|
+
@jsii.python.classproperty
|
|
12085
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_GO_1_24")
|
|
12086
|
+
def AMAZON_LINUX_2023_GO_1_24(cls) -> IBuildImage:
|
|
12087
|
+
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:go1.24`` build image.'''
|
|
12088
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_GO_1_24"))
|
|
12089
|
+
|
|
12084
12090
|
@jsii.python.classproperty
|
|
12085
12091
|
@jsii.member(jsii_name="AMAZON_LINUX_2023_NODE_20")
|
|
12086
12092
|
def AMAZON_LINUX_2023_NODE_20(cls) -> IBuildImage:
|
|
12087
12093
|
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:nodejs20`` build image.'''
|
|
12088
12094
|
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_NODE_20"))
|
|
12089
12095
|
|
|
12096
|
+
@jsii.python.classproperty
|
|
12097
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_NODE_22")
|
|
12098
|
+
def AMAZON_LINUX_2023_NODE_22(cls) -> IBuildImage:
|
|
12099
|
+
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:nodejs22`` build image.'''
|
|
12100
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_NODE_22"))
|
|
12101
|
+
|
|
12090
12102
|
@jsii.python.classproperty
|
|
12091
12103
|
@jsii.member(jsii_name="AMAZON_LINUX_2023_PYTHON_3_12")
|
|
12092
12104
|
def AMAZON_LINUX_2023_PYTHON_3_12(cls) -> IBuildImage:
|
|
12093
12105
|
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:python3.12`` build image.'''
|
|
12094
12106
|
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_PYTHON_3_12"))
|
|
12095
12107
|
|
|
12108
|
+
@jsii.python.classproperty
|
|
12109
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_PYTHON_3_13")
|
|
12110
|
+
def AMAZON_LINUX_2023_PYTHON_3_13(cls) -> IBuildImage:
|
|
12111
|
+
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:python3.13`` build image.'''
|
|
12112
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_PYTHON_3_13"))
|
|
12113
|
+
|
|
12114
|
+
@jsii.python.classproperty
|
|
12115
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_RUBY_3_4")
|
|
12116
|
+
def AMAZON_LINUX_2023_RUBY_3_4(cls) -> IBuildImage:
|
|
12117
|
+
'''The ``aws/codebuild/amazonlinux-aarch64-lambda-standard:ruby3.4`` build image.'''
|
|
12118
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_RUBY_3_4"))
|
|
12119
|
+
|
|
12096
12120
|
@builtins.property
|
|
12097
12121
|
@jsii.member(jsii_name="defaultComputeType")
|
|
12098
12122
|
def default_compute_type(self) -> ComputeType:
|
|
@@ -12672,18 +12696,42 @@ class LinuxLambdaBuildImage(
|
|
|
12672
12696
|
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:dotnet8`` build image.'''
|
|
12673
12697
|
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_DOTNET_8"))
|
|
12674
12698
|
|
|
12699
|
+
@jsii.python.classproperty
|
|
12700
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_GO_1_24")
|
|
12701
|
+
def AMAZON_LINUX_2023_GO_1_24(cls) -> IBuildImage:
|
|
12702
|
+
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:go1.24`` build image.'''
|
|
12703
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_GO_1_24"))
|
|
12704
|
+
|
|
12675
12705
|
@jsii.python.classproperty
|
|
12676
12706
|
@jsii.member(jsii_name="AMAZON_LINUX_2023_NODE_20")
|
|
12677
12707
|
def AMAZON_LINUX_2023_NODE_20(cls) -> IBuildImage:
|
|
12678
12708
|
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:nodejs20`` build image.'''
|
|
12679
12709
|
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_NODE_20"))
|
|
12680
12710
|
|
|
12711
|
+
@jsii.python.classproperty
|
|
12712
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_NODE_22")
|
|
12713
|
+
def AMAZON_LINUX_2023_NODE_22(cls) -> IBuildImage:
|
|
12714
|
+
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:nodejs22`` build image.'''
|
|
12715
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_NODE_22"))
|
|
12716
|
+
|
|
12681
12717
|
@jsii.python.classproperty
|
|
12682
12718
|
@jsii.member(jsii_name="AMAZON_LINUX_2023_PYTHON_3_12")
|
|
12683
12719
|
def AMAZON_LINUX_2023_PYTHON_3_12(cls) -> IBuildImage:
|
|
12684
12720
|
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:python3.12`` build image.'''
|
|
12685
12721
|
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_PYTHON_3_12"))
|
|
12686
12722
|
|
|
12723
|
+
@jsii.python.classproperty
|
|
12724
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_PYTHON_3_13")
|
|
12725
|
+
def AMAZON_LINUX_2023_PYTHON_3_13(cls) -> IBuildImage:
|
|
12726
|
+
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:python3.13`` build image.'''
|
|
12727
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_PYTHON_3_13"))
|
|
12728
|
+
|
|
12729
|
+
@jsii.python.classproperty
|
|
12730
|
+
@jsii.member(jsii_name="AMAZON_LINUX_2023_RUBY_3_4")
|
|
12731
|
+
def AMAZON_LINUX_2023_RUBY_3_4(cls) -> IBuildImage:
|
|
12732
|
+
'''The ``aws/codebuild/amazonlinux-x86_64-lambda-standard:ruby3.4`` build image.'''
|
|
12733
|
+
return typing.cast(IBuildImage, jsii.sget(cls, "AMAZON_LINUX_2023_RUBY_3_4"))
|
|
12734
|
+
|
|
12687
12735
|
@builtins.property
|
|
12688
12736
|
@jsii.member(jsii_name="defaultComputeType")
|
|
12689
12737
|
def default_compute_type(self) -> ComputeType:
|
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -5231,6 +5231,7 @@ class CfnDomain(
|
|
|
5231
5231
|
kms_key_identifier="kmsKeyIdentifier",
|
|
5232
5232
|
service_role="serviceRole",
|
|
5233
5233
|
single_sign_on=datazone.CfnDomain.SingleSignOnProperty(
|
|
5234
|
+
idc_instance_arn="idcInstanceArn",
|
|
5234
5235
|
type="type",
|
|
5235
5236
|
user_assignment="userAssignment"
|
|
5236
5237
|
),
|
|
@@ -5509,17 +5510,23 @@ class CfnDomain(
|
|
|
5509
5510
|
@jsii.data_type(
|
|
5510
5511
|
jsii_type="aws-cdk-lib.aws_datazone.CfnDomain.SingleSignOnProperty",
|
|
5511
5512
|
jsii_struct_bases=[],
|
|
5512
|
-
name_mapping={
|
|
5513
|
+
name_mapping={
|
|
5514
|
+
"idc_instance_arn": "idcInstanceArn",
|
|
5515
|
+
"type": "type",
|
|
5516
|
+
"user_assignment": "userAssignment",
|
|
5517
|
+
},
|
|
5513
5518
|
)
|
|
5514
5519
|
class SingleSignOnProperty:
|
|
5515
5520
|
def __init__(
|
|
5516
5521
|
self,
|
|
5517
5522
|
*,
|
|
5523
|
+
idc_instance_arn: typing.Optional[builtins.str] = None,
|
|
5518
5524
|
type: typing.Optional[builtins.str] = None,
|
|
5519
5525
|
user_assignment: typing.Optional[builtins.str] = None,
|
|
5520
5526
|
) -> None:
|
|
5521
5527
|
'''The single sign-on details in Amazon DataZone.
|
|
5522
5528
|
|
|
5529
|
+
:param idc_instance_arn: The ARN of the AWS Identity Center instance.
|
|
5523
5530
|
:param type: The type of single sign-on in Amazon DataZone.
|
|
5524
5531
|
:param user_assignment: The single sign-on user assignment in Amazon DataZone.
|
|
5525
5532
|
|
|
@@ -5533,20 +5540,33 @@ class CfnDomain(
|
|
|
5533
5540
|
from aws_cdk import aws_datazone as datazone
|
|
5534
5541
|
|
|
5535
5542
|
single_sign_on_property = datazone.CfnDomain.SingleSignOnProperty(
|
|
5543
|
+
idc_instance_arn="idcInstanceArn",
|
|
5536
5544
|
type="type",
|
|
5537
5545
|
user_assignment="userAssignment"
|
|
5538
5546
|
)
|
|
5539
5547
|
'''
|
|
5540
5548
|
if __debug__:
|
|
5541
5549
|
type_hints = typing.get_type_hints(_typecheckingstub__f7f4cd03b79bceb07fb9f1366c739ee9cc49b8cbf6b9077a564689e81698df16)
|
|
5550
|
+
check_type(argname="argument idc_instance_arn", value=idc_instance_arn, expected_type=type_hints["idc_instance_arn"])
|
|
5542
5551
|
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
5543
5552
|
check_type(argname="argument user_assignment", value=user_assignment, expected_type=type_hints["user_assignment"])
|
|
5544
5553
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5554
|
+
if idc_instance_arn is not None:
|
|
5555
|
+
self._values["idc_instance_arn"] = idc_instance_arn
|
|
5545
5556
|
if type is not None:
|
|
5546
5557
|
self._values["type"] = type
|
|
5547
5558
|
if user_assignment is not None:
|
|
5548
5559
|
self._values["user_assignment"] = user_assignment
|
|
5549
5560
|
|
|
5561
|
+
@builtins.property
|
|
5562
|
+
def idc_instance_arn(self) -> typing.Optional[builtins.str]:
|
|
5563
|
+
'''The ARN of the AWS Identity Center instance.
|
|
5564
|
+
|
|
5565
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-singlesignon.html#cfn-datazone-domain-singlesignon-idcinstancearn
|
|
5566
|
+
'''
|
|
5567
|
+
result = self._values.get("idc_instance_arn")
|
|
5568
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5569
|
+
|
|
5550
5570
|
@builtins.property
|
|
5551
5571
|
def type(self) -> typing.Optional[builtins.str]:
|
|
5552
5572
|
'''The type of single sign-on in Amazon DataZone.
|
|
@@ -5634,6 +5654,7 @@ class CfnDomainProps:
|
|
|
5634
5654
|
kms_key_identifier="kmsKeyIdentifier",
|
|
5635
5655
|
service_role="serviceRole",
|
|
5636
5656
|
single_sign_on=datazone.CfnDomain.SingleSignOnProperty(
|
|
5657
|
+
idc_instance_arn="idcInstanceArn",
|
|
5637
5658
|
type="type",
|
|
5638
5659
|
user_assignment="userAssignment"
|
|
5639
5660
|
),
|
|
@@ -10431,6 +10452,7 @@ def _typecheckingstub__d899e2a4a220703956ab7f56e7c810107ec736f8c6281bedb3bc027e6
|
|
|
10431
10452
|
|
|
10432
10453
|
def _typecheckingstub__f7f4cd03b79bceb07fb9f1366c739ee9cc49b8cbf6b9077a564689e81698df16(
|
|
10433
10454
|
*,
|
|
10455
|
+
idc_instance_arn: typing.Optional[builtins.str] = None,
|
|
10434
10456
|
type: typing.Optional[builtins.str] = None,
|
|
10435
10457
|
user_assignment: typing.Optional[builtins.str] = None,
|
|
10436
10458
|
) -> None:
|
aws_cdk/aws_events/__init__.py
CHANGED
|
@@ -1710,6 +1710,7 @@ class CfnConnection(
|
|
|
1710
1710
|
resource_association_arn="resourceAssociationArn"
|
|
1711
1711
|
)
|
|
1712
1712
|
),
|
|
1713
|
+
kms_key_identifier="kmsKeyIdentifier",
|
|
1713
1714
|
name="name"
|
|
1714
1715
|
)
|
|
1715
1716
|
'''
|
|
@@ -1723,6 +1724,7 @@ class CfnConnection(
|
|
|
1723
1724
|
auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConnection.AuthParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1724
1725
|
description: typing.Optional[builtins.str] = None,
|
|
1725
1726
|
invocation_connectivity_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConnection.InvocationConnectivityParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1727
|
+
kms_key_identifier: typing.Optional[builtins.str] = None,
|
|
1726
1728
|
name: typing.Optional[builtins.str] = None,
|
|
1727
1729
|
) -> None:
|
|
1728
1730
|
'''
|
|
@@ -1732,6 +1734,7 @@ class CfnConnection(
|
|
|
1732
1734
|
:param auth_parameters: The authorization parameters to use to authorize with the endpoint. You must include only authorization parameters for the ``AuthorizationType`` you specify.
|
|
1733
1735
|
:param description: A description for the connection to create.
|
|
1734
1736
|
:param invocation_connectivity_parameters: For connections to private APIs, the parameters to use for invoking the API. For more information, see `Connecting to private APIs <https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html>`_ in the **Amazon EventBridge User Guide** .
|
|
1737
|
+
:param kms_key_identifier:
|
|
1735
1738
|
:param name: The name for the connection to create.
|
|
1736
1739
|
'''
|
|
1737
1740
|
if __debug__:
|
|
@@ -1743,6 +1746,7 @@ class CfnConnection(
|
|
|
1743
1746
|
auth_parameters=auth_parameters,
|
|
1744
1747
|
description=description,
|
|
1745
1748
|
invocation_connectivity_parameters=invocation_connectivity_parameters,
|
|
1749
|
+
kms_key_identifier=kms_key_identifier,
|
|
1746
1750
|
name=name,
|
|
1747
1751
|
)
|
|
1748
1752
|
|
|
@@ -1902,6 +1906,18 @@ class CfnConnection(
|
|
|
1902
1906
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1903
1907
|
jsii.set(self, "invocationConnectivityParameters", value) # pyright: ignore[reportArgumentType]
|
|
1904
1908
|
|
|
1909
|
+
@builtins.property
|
|
1910
|
+
@jsii.member(jsii_name="kmsKeyIdentifier")
|
|
1911
|
+
def kms_key_identifier(self) -> typing.Optional[builtins.str]:
|
|
1912
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyIdentifier"))
|
|
1913
|
+
|
|
1914
|
+
@kms_key_identifier.setter
|
|
1915
|
+
def kms_key_identifier(self, value: typing.Optional[builtins.str]) -> None:
|
|
1916
|
+
if __debug__:
|
|
1917
|
+
type_hints = typing.get_type_hints(_typecheckingstub__579f1ad92b1c0b7657d928d388da032a83ada8c6564dd3ab6da98459fced8ae1)
|
|
1918
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1919
|
+
jsii.set(self, "kmsKeyIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
1920
|
+
|
|
1905
1921
|
@builtins.property
|
|
1906
1922
|
@jsii.member(jsii_name="name")
|
|
1907
1923
|
def name(self) -> typing.Optional[builtins.str]:
|
|
@@ -2890,6 +2906,7 @@ class CfnConnection(
|
|
|
2890
2906
|
"auth_parameters": "authParameters",
|
|
2891
2907
|
"description": "description",
|
|
2892
2908
|
"invocation_connectivity_parameters": "invocationConnectivityParameters",
|
|
2909
|
+
"kms_key_identifier": "kmsKeyIdentifier",
|
|
2893
2910
|
"name": "name",
|
|
2894
2911
|
},
|
|
2895
2912
|
)
|
|
@@ -2901,6 +2918,7 @@ class CfnConnectionProps:
|
|
|
2901
2918
|
auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2902
2919
|
description: typing.Optional[builtins.str] = None,
|
|
2903
2920
|
invocation_connectivity_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.InvocationConnectivityParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2921
|
+
kms_key_identifier: typing.Optional[builtins.str] = None,
|
|
2904
2922
|
name: typing.Optional[builtins.str] = None,
|
|
2905
2923
|
) -> None:
|
|
2906
2924
|
'''Properties for defining a ``CfnConnection``.
|
|
@@ -2909,6 +2927,7 @@ class CfnConnectionProps:
|
|
|
2909
2927
|
:param auth_parameters: The authorization parameters to use to authorize with the endpoint. You must include only authorization parameters for the ``AuthorizationType`` you specify.
|
|
2910
2928
|
:param description: A description for the connection to create.
|
|
2911
2929
|
:param invocation_connectivity_parameters: For connections to private APIs, the parameters to use for invoking the API. For more information, see `Connecting to private APIs <https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html>`_ in the **Amazon EventBridge User Guide** .
|
|
2930
|
+
:param kms_key_identifier:
|
|
2912
2931
|
:param name: The name for the connection to create.
|
|
2913
2932
|
|
|
2914
2933
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html
|
|
@@ -3005,6 +3024,7 @@ class CfnConnectionProps:
|
|
|
3005
3024
|
resource_association_arn="resourceAssociationArn"
|
|
3006
3025
|
)
|
|
3007
3026
|
),
|
|
3027
|
+
kms_key_identifier="kmsKeyIdentifier",
|
|
3008
3028
|
name="name"
|
|
3009
3029
|
)
|
|
3010
3030
|
'''
|
|
@@ -3014,6 +3034,7 @@ class CfnConnectionProps:
|
|
|
3014
3034
|
check_type(argname="argument auth_parameters", value=auth_parameters, expected_type=type_hints["auth_parameters"])
|
|
3015
3035
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3016
3036
|
check_type(argname="argument invocation_connectivity_parameters", value=invocation_connectivity_parameters, expected_type=type_hints["invocation_connectivity_parameters"])
|
|
3037
|
+
check_type(argname="argument kms_key_identifier", value=kms_key_identifier, expected_type=type_hints["kms_key_identifier"])
|
|
3017
3038
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3018
3039
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3019
3040
|
if authorization_type is not None:
|
|
@@ -3024,6 +3045,8 @@ class CfnConnectionProps:
|
|
|
3024
3045
|
self._values["description"] = description
|
|
3025
3046
|
if invocation_connectivity_parameters is not None:
|
|
3026
3047
|
self._values["invocation_connectivity_parameters"] = invocation_connectivity_parameters
|
|
3048
|
+
if kms_key_identifier is not None:
|
|
3049
|
+
self._values["kms_key_identifier"] = kms_key_identifier
|
|
3027
3050
|
if name is not None:
|
|
3028
3051
|
self._values["name"] = name
|
|
3029
3052
|
|
|
@@ -3075,6 +3098,14 @@ class CfnConnectionProps:
|
|
|
3075
3098
|
result = self._values.get("invocation_connectivity_parameters")
|
|
3076
3099
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConnection.InvocationConnectivityParametersProperty]], result)
|
|
3077
3100
|
|
|
3101
|
+
@builtins.property
|
|
3102
|
+
def kms_key_identifier(self) -> typing.Optional[builtins.str]:
|
|
3103
|
+
'''
|
|
3104
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-kmskeyidentifier
|
|
3105
|
+
'''
|
|
3106
|
+
result = self._values.get("kms_key_identifier")
|
|
3107
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3108
|
+
|
|
3078
3109
|
@builtins.property
|
|
3079
3110
|
def name(self) -> typing.Optional[builtins.str]:
|
|
3080
3111
|
'''The name for the connection to create.
|
|
@@ -12474,6 +12505,7 @@ def _typecheckingstub__65bde9b35de094b905dd335652d04503af85c50ac027a006a1d7ec926
|
|
|
12474
12505
|
auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12475
12506
|
description: typing.Optional[builtins.str] = None,
|
|
12476
12507
|
invocation_connectivity_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.InvocationConnectivityParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12508
|
+
kms_key_identifier: typing.Optional[builtins.str] = None,
|
|
12477
12509
|
name: typing.Optional[builtins.str] = None,
|
|
12478
12510
|
) -> None:
|
|
12479
12511
|
"""Type checking stubs"""
|
|
@@ -12515,6 +12547,12 @@ def _typecheckingstub__81977d37ca8e880d59a06a5f2212ea535fd65a2615c824916ce07bd93
|
|
|
12515
12547
|
"""Type checking stubs"""
|
|
12516
12548
|
pass
|
|
12517
12549
|
|
|
12550
|
+
def _typecheckingstub__579f1ad92b1c0b7657d928d388da032a83ada8c6564dd3ab6da98459fced8ae1(
|
|
12551
|
+
value: typing.Optional[builtins.str],
|
|
12552
|
+
) -> None:
|
|
12553
|
+
"""Type checking stubs"""
|
|
12554
|
+
pass
|
|
12555
|
+
|
|
12518
12556
|
def _typecheckingstub__d93a7e7bebc6e390076ef7174623c4da1c018543554603bbb442c270a532a536(
|
|
12519
12557
|
value: typing.Optional[builtins.str],
|
|
12520
12558
|
) -> None:
|
|
@@ -12612,6 +12650,7 @@ def _typecheckingstub__2b32e6c6e8c1c2772bb604474216b07683c108c349058e240d272750b
|
|
|
12612
12650
|
auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12613
12651
|
description: typing.Optional[builtins.str] = None,
|
|
12614
12652
|
invocation_connectivity_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.InvocationConnectivityParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
12653
|
+
kms_key_identifier: typing.Optional[builtins.str] = None,
|
|
12615
12654
|
name: typing.Optional[builtins.str] = None,
|
|
12616
12655
|
) -> None:
|
|
12617
12656
|
"""Type checking stubs"""
|
|
@@ -102,12 +102,12 @@ class CfnDeployment(
|
|
|
102
102
|
cfn_deployment = launchwizard.CfnDeployment(self, "MyCfnDeployment",
|
|
103
103
|
deployment_pattern_name="deploymentPatternName",
|
|
104
104
|
name="name",
|
|
105
|
-
specifications={
|
|
106
|
-
"specifications_key": "specifications"
|
|
107
|
-
},
|
|
108
105
|
workload_name="workloadName",
|
|
109
106
|
|
|
110
107
|
# the properties below are optional
|
|
108
|
+
specifications={
|
|
109
|
+
"specifications_key": "specifications"
|
|
110
|
+
},
|
|
111
111
|
tags=[CfnTag(
|
|
112
112
|
key="key",
|
|
113
113
|
value="value"
|
|
@@ -122,8 +122,8 @@ class CfnDeployment(
|
|
|
122
122
|
*,
|
|
123
123
|
deployment_pattern_name: builtins.str,
|
|
124
124
|
name: builtins.str,
|
|
125
|
-
specifications: typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b],
|
|
126
125
|
workload_name: builtins.str,
|
|
126
|
+
specifications: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
127
127
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
128
128
|
) -> None:
|
|
129
129
|
'''
|
|
@@ -131,8 +131,8 @@ class CfnDeployment(
|
|
|
131
131
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
132
132
|
:param deployment_pattern_name: The name of the deployment pattern.
|
|
133
133
|
:param name: The name of the deployment.
|
|
134
|
-
:param specifications: The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see `SAP deployment specifications <https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html>`_ . To retrieve the specifications required to create a deployment for other workloads, use the ```GetWorkloadDeploymentPattern`` <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html>`_ operation.
|
|
135
134
|
:param workload_name: The name of the workload.
|
|
135
|
+
:param specifications: The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see `SAP deployment specifications <https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html>`_ . To retrieve the specifications required to create a deployment for other workloads, use the ```GetWorkloadDeploymentPattern`` <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html>`_ operation.
|
|
136
136
|
:param tags: Information about the tags attached to a deployment.
|
|
137
137
|
'''
|
|
138
138
|
if __debug__:
|
|
@@ -142,8 +142,8 @@ class CfnDeployment(
|
|
|
142
142
|
props = CfnDeploymentProps(
|
|
143
143
|
deployment_pattern_name=deployment_pattern_name,
|
|
144
144
|
name=name,
|
|
145
|
-
specifications=specifications,
|
|
146
145
|
workload_name=workload_name,
|
|
146
|
+
specifications=specifications,
|
|
147
147
|
tags=tags,
|
|
148
148
|
)
|
|
149
149
|
|
|
@@ -270,37 +270,37 @@ class CfnDeployment(
|
|
|
270
270
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
271
271
|
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
272
272
|
|
|
273
|
+
@builtins.property
|
|
274
|
+
@jsii.member(jsii_name="workloadName")
|
|
275
|
+
def workload_name(self) -> builtins.str:
|
|
276
|
+
'''The name of the workload.'''
|
|
277
|
+
return typing.cast(builtins.str, jsii.get(self, "workloadName"))
|
|
278
|
+
|
|
279
|
+
@workload_name.setter
|
|
280
|
+
def workload_name(self, value: builtins.str) -> None:
|
|
281
|
+
if __debug__:
|
|
282
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ddbc17d8abf4c6daba412028f139c421c42d9da86f2e5b12d5b5a149a84c309)
|
|
283
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
284
|
+
jsii.set(self, "workloadName", value) # pyright: ignore[reportArgumentType]
|
|
285
|
+
|
|
273
286
|
@builtins.property
|
|
274
287
|
@jsii.member(jsii_name="specifications")
|
|
275
288
|
def specifications(
|
|
276
289
|
self,
|
|
277
|
-
) -> typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]:
|
|
290
|
+
) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
|
|
278
291
|
'''The settings specified for the deployment.'''
|
|
279
|
-
return typing.cast(typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b], jsii.get(self, "specifications"))
|
|
292
|
+
return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], jsii.get(self, "specifications"))
|
|
280
293
|
|
|
281
294
|
@specifications.setter
|
|
282
295
|
def specifications(
|
|
283
296
|
self,
|
|
284
|
-
value: typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b],
|
|
297
|
+
value: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]],
|
|
285
298
|
) -> None:
|
|
286
299
|
if __debug__:
|
|
287
300
|
type_hints = typing.get_type_hints(_typecheckingstub__6343321573b3c3c84666431fb123811dbd97cb11a86c65d6c6d7d4c669c25d86)
|
|
288
301
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
289
302
|
jsii.set(self, "specifications", value) # pyright: ignore[reportArgumentType]
|
|
290
303
|
|
|
291
|
-
@builtins.property
|
|
292
|
-
@jsii.member(jsii_name="workloadName")
|
|
293
|
-
def workload_name(self) -> builtins.str:
|
|
294
|
-
'''The name of the workload.'''
|
|
295
|
-
return typing.cast(builtins.str, jsii.get(self, "workloadName"))
|
|
296
|
-
|
|
297
|
-
@workload_name.setter
|
|
298
|
-
def workload_name(self, value: builtins.str) -> None:
|
|
299
|
-
if __debug__:
|
|
300
|
-
type_hints = typing.get_type_hints(_typecheckingstub__4ddbc17d8abf4c6daba412028f139c421c42d9da86f2e5b12d5b5a149a84c309)
|
|
301
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
302
|
-
jsii.set(self, "workloadName", value) # pyright: ignore[reportArgumentType]
|
|
303
|
-
|
|
304
304
|
@builtins.property
|
|
305
305
|
@jsii.member(jsii_name="tags")
|
|
306
306
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -321,8 +321,8 @@ class CfnDeployment(
|
|
|
321
321
|
name_mapping={
|
|
322
322
|
"deployment_pattern_name": "deploymentPatternName",
|
|
323
323
|
"name": "name",
|
|
324
|
-
"specifications": "specifications",
|
|
325
324
|
"workload_name": "workloadName",
|
|
325
|
+
"specifications": "specifications",
|
|
326
326
|
"tags": "tags",
|
|
327
327
|
},
|
|
328
328
|
)
|
|
@@ -332,16 +332,16 @@ class CfnDeploymentProps:
|
|
|
332
332
|
*,
|
|
333
333
|
deployment_pattern_name: builtins.str,
|
|
334
334
|
name: builtins.str,
|
|
335
|
-
specifications: typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b],
|
|
336
335
|
workload_name: builtins.str,
|
|
336
|
+
specifications: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
337
337
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
338
338
|
) -> None:
|
|
339
339
|
'''Properties for defining a ``CfnDeployment``.
|
|
340
340
|
|
|
341
341
|
:param deployment_pattern_name: The name of the deployment pattern.
|
|
342
342
|
:param name: The name of the deployment.
|
|
343
|
-
:param specifications: The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see `SAP deployment specifications <https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html>`_ . To retrieve the specifications required to create a deployment for other workloads, use the ```GetWorkloadDeploymentPattern`` <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html>`_ operation.
|
|
344
343
|
:param workload_name: The name of the workload.
|
|
344
|
+
:param specifications: The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see `SAP deployment specifications <https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html>`_ . To retrieve the specifications required to create a deployment for other workloads, use the ```GetWorkloadDeploymentPattern`` <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html>`_ operation.
|
|
345
345
|
:param tags: Information about the tags attached to a deployment.
|
|
346
346
|
|
|
347
347
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html
|
|
@@ -356,12 +356,12 @@ class CfnDeploymentProps:
|
|
|
356
356
|
cfn_deployment_props = launchwizard.CfnDeploymentProps(
|
|
357
357
|
deployment_pattern_name="deploymentPatternName",
|
|
358
358
|
name="name",
|
|
359
|
-
specifications={
|
|
360
|
-
"specifications_key": "specifications"
|
|
361
|
-
},
|
|
362
359
|
workload_name="workloadName",
|
|
363
360
|
|
|
364
361
|
# the properties below are optional
|
|
362
|
+
specifications={
|
|
363
|
+
"specifications_key": "specifications"
|
|
364
|
+
},
|
|
365
365
|
tags=[CfnTag(
|
|
366
366
|
key="key",
|
|
367
367
|
value="value"
|
|
@@ -372,15 +372,16 @@ class CfnDeploymentProps:
|
|
|
372
372
|
type_hints = typing.get_type_hints(_typecheckingstub__a6e25238aa51033c6bfd52d31380bf8d8789e604e540fcfff33c0df8b15dcdcf)
|
|
373
373
|
check_type(argname="argument deployment_pattern_name", value=deployment_pattern_name, expected_type=type_hints["deployment_pattern_name"])
|
|
374
374
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
375
|
-
check_type(argname="argument specifications", value=specifications, expected_type=type_hints["specifications"])
|
|
376
375
|
check_type(argname="argument workload_name", value=workload_name, expected_type=type_hints["workload_name"])
|
|
376
|
+
check_type(argname="argument specifications", value=specifications, expected_type=type_hints["specifications"])
|
|
377
377
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
378
378
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
379
379
|
"deployment_pattern_name": deployment_pattern_name,
|
|
380
380
|
"name": name,
|
|
381
|
-
"specifications": specifications,
|
|
382
381
|
"workload_name": workload_name,
|
|
383
382
|
}
|
|
383
|
+
if specifications is not None:
|
|
384
|
+
self._values["specifications"] = specifications
|
|
384
385
|
if tags is not None:
|
|
385
386
|
self._values["tags"] = tags
|
|
386
387
|
|
|
@@ -404,10 +405,20 @@ class CfnDeploymentProps:
|
|
|
404
405
|
assert result is not None, "Required property 'name' is missing"
|
|
405
406
|
return typing.cast(builtins.str, result)
|
|
406
407
|
|
|
408
|
+
@builtins.property
|
|
409
|
+
def workload_name(self) -> builtins.str:
|
|
410
|
+
'''The name of the workload.
|
|
411
|
+
|
|
412
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html#cfn-launchwizard-deployment-workloadname
|
|
413
|
+
'''
|
|
414
|
+
result = self._values.get("workload_name")
|
|
415
|
+
assert result is not None, "Required property 'workload_name' is missing"
|
|
416
|
+
return typing.cast(builtins.str, result)
|
|
417
|
+
|
|
407
418
|
@builtins.property
|
|
408
419
|
def specifications(
|
|
409
420
|
self,
|
|
410
|
-
) -> typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]:
|
|
421
|
+
) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
|
|
411
422
|
'''The settings specified for the deployment.
|
|
412
423
|
|
|
413
424
|
These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see `SAP deployment specifications <https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html>`_ . To retrieve the specifications required to create a deployment for other workloads, use the ```GetWorkloadDeploymentPattern`` <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html>`_ operation.
|
|
@@ -415,18 +426,7 @@ class CfnDeploymentProps:
|
|
|
415
426
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html#cfn-launchwizard-deployment-specifications
|
|
416
427
|
'''
|
|
417
428
|
result = self._values.get("specifications")
|
|
418
|
-
|
|
419
|
-
return typing.cast(typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b], result)
|
|
420
|
-
|
|
421
|
-
@builtins.property
|
|
422
|
-
def workload_name(self) -> builtins.str:
|
|
423
|
-
'''The name of the workload.
|
|
424
|
-
|
|
425
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-launchwizard-deployment.html#cfn-launchwizard-deployment-workloadname
|
|
426
|
-
'''
|
|
427
|
-
result = self._values.get("workload_name")
|
|
428
|
-
assert result is not None, "Required property 'workload_name' is missing"
|
|
429
|
-
return typing.cast(builtins.str, result)
|
|
429
|
+
return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], result)
|
|
430
430
|
|
|
431
431
|
@builtins.property
|
|
432
432
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -462,8 +462,8 @@ def _typecheckingstub__fe77ed4e81ab71d948f0b03ed5f8780bcc2f324a23805bc45e7eef5f9
|
|
|
462
462
|
*,
|
|
463
463
|
deployment_pattern_name: builtins.str,
|
|
464
464
|
name: builtins.str,
|
|
465
|
-
specifications: typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b],
|
|
466
465
|
workload_name: builtins.str,
|
|
466
|
+
specifications: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
467
467
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
468
468
|
) -> None:
|
|
469
469
|
"""Type checking stubs"""
|
|
@@ -493,14 +493,14 @@ def _typecheckingstub__c0094e37b81e5d8f0b6e42001fe8da7cf6d149317e4ef32b73e5cef5a
|
|
|
493
493
|
"""Type checking stubs"""
|
|
494
494
|
pass
|
|
495
495
|
|
|
496
|
-
def
|
|
497
|
-
value:
|
|
496
|
+
def _typecheckingstub__4ddbc17d8abf4c6daba412028f139c421c42d9da86f2e5b12d5b5a149a84c309(
|
|
497
|
+
value: builtins.str,
|
|
498
498
|
) -> None:
|
|
499
499
|
"""Type checking stubs"""
|
|
500
500
|
pass
|
|
501
501
|
|
|
502
|
-
def
|
|
503
|
-
value: builtins.str,
|
|
502
|
+
def _typecheckingstub__6343321573b3c3c84666431fb123811dbd97cb11a86c65d6c6d7d4c669c25d86(
|
|
503
|
+
value: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]],
|
|
504
504
|
) -> None:
|
|
505
505
|
"""Type checking stubs"""
|
|
506
506
|
pass
|
|
@@ -515,8 +515,8 @@ def _typecheckingstub__a6e25238aa51033c6bfd52d31380bf8d8789e604e540fcfff33c0df8b
|
|
|
515
515
|
*,
|
|
516
516
|
deployment_pattern_name: builtins.str,
|
|
517
517
|
name: builtins.str,
|
|
518
|
-
specifications: typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b],
|
|
519
518
|
workload_name: builtins.str,
|
|
519
|
+
specifications: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
520
520
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
521
521
|
) -> None:
|
|
522
522
|
"""Type checking stubs"""
|
aws_cdk/aws_neptune/__init__.py
CHANGED
|
@@ -956,14 +956,6 @@ class CfnDBClusterParameterGroup(
|
|
|
956
956
|
'''The CloudFormation resource type name for this resource class.'''
|
|
957
957
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
958
958
|
|
|
959
|
-
@builtins.property
|
|
960
|
-
@jsii.member(jsii_name="attrId")
|
|
961
|
-
def attr_id(self) -> builtins.str:
|
|
962
|
-
'''
|
|
963
|
-
:cloudformationAttribute: Id
|
|
964
|
-
'''
|
|
965
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
966
|
-
|
|
967
959
|
@builtins.property
|
|
968
960
|
@jsii.member(jsii_name="cfnProperties")
|
|
969
961
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -2397,14 +2389,6 @@ class CfnDBParameterGroup(
|
|
|
2397
2389
|
'''The CloudFormation resource type name for this resource class.'''
|
|
2398
2390
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
2399
2391
|
|
|
2400
|
-
@builtins.property
|
|
2401
|
-
@jsii.member(jsii_name="attrId")
|
|
2402
|
-
def attr_id(self) -> builtins.str:
|
|
2403
|
-
'''
|
|
2404
|
-
:cloudformationAttribute: Id
|
|
2405
|
-
'''
|
|
2406
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
2407
|
-
|
|
2408
2392
|
@builtins.property
|
|
2409
2393
|
@jsii.member(jsii_name="cfnProperties")
|
|
2410
2394
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|