aws-cdk-lib 2.96.2__py3-none-any.whl → 2.97.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/__init__.py +246 -62
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.96.2.jsii.tgz → aws-cdk-lib@2.97.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1 -1
- aws_cdk/aws_appflow/__init__.py +205 -7
- aws_cdk/aws_appstream/__init__.py +33 -28
- aws_cdk/aws_appsync/__init__.py +555 -71
- aws_cdk/aws_autoscaling/__init__.py +5 -11
- aws_cdk/aws_billingconductor/__init__.py +145 -1
- aws_cdk/aws_cleanrooms/__init__.py +1198 -86
- aws_cdk/aws_cloudformation/__init__.py +221 -55
- aws_cdk/aws_cloudwatch/__init__.py +325 -2
- aws_cdk/aws_cognito/__init__.py +9 -13
- aws_cdk/aws_config/__init__.py +68 -73
- aws_cdk/aws_connect/__init__.py +909 -164
- aws_cdk/aws_customerprofiles/__init__.py +44 -0
- aws_cdk/aws_dms/__init__.py +198 -0
- aws_cdk/aws_ec2/__init__.py +593 -73
- aws_cdk/aws_ecr/__init__.py +7 -2
- aws_cdk/aws_ecs/__init__.py +2 -2
- aws_cdk/aws_efs/__init__.py +237 -0
- aws_cdk/aws_emr/__init__.py +232 -0
- aws_cdk/aws_entityresolution/__init__.py +1702 -0
- aws_cdk/aws_events/__init__.py +13 -18
- aws_cdk/aws_fms/__init__.py +3 -3
- aws_cdk/aws_gamelift/__init__.py +10 -15
- aws_cdk/aws_grafana/__init__.py +9 -5
- aws_cdk/aws_guardduty/__init__.py +272 -205
- aws_cdk/aws_iam/__init__.py +20 -18
- aws_cdk/aws_iotwireless/__init__.py +38 -54
- aws_cdk/aws_lakeformation/__init__.py +18 -6
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_lightsail/__init__.py +225 -0
- aws_cdk/aws_lookoutequipment/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +5 -3
- aws_cdk/aws_mediapackagev2/__init__.py +3227 -0
- aws_cdk/aws_pcaconnectorad/__init__.py +6785 -0
- aws_cdk/aws_quicksight/__init__.py +189 -116
- aws_cdk/aws_rds/__init__.py +316 -9
- aws_cdk/aws_resiliencehub/__init__.py +38 -21
- aws_cdk/aws_route53resolver/__init__.py +429 -0
- aws_cdk/aws_sagemaker/__init__.py +34 -34
- aws_cdk/aws_stepfunctions/__init__.py +111 -14
- aws_cdk/aws_transfer/__init__.py +2 -2
- aws_cdk/aws_vpclattice/__init__.py +128 -120
- aws_cdk/aws_workspacesweb/__init__.py +3790 -0
- aws_cdk/region_info/__init__.py +49 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/RECORD +53 -49
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py
CHANGED
|
@@ -795,7 +795,7 @@ CustomResource(self, "MyResource",
|
|
|
795
795
|
)
|
|
796
796
|
```
|
|
797
797
|
|
|
798
|
-
See the [documentation](https://docs.aws.amazon.com/cdk/api/latest/docs/
|
|
798
|
+
See the [documentation](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-cdk-lib.custom_resources-readme.html) for more details.
|
|
799
799
|
|
|
800
800
|
## AWS CloudFormation features
|
|
801
801
|
|
|
@@ -7945,10 +7945,10 @@ class CfnRuleProps:
|
|
|
7945
7945
|
jsii_type="aws-cdk-lib.CfnStackProps",
|
|
7946
7946
|
jsii_struct_bases=[],
|
|
7947
7947
|
name_mapping={
|
|
7948
|
-
"template_url": "templateUrl",
|
|
7949
7948
|
"notification_arns": "notificationArns",
|
|
7950
7949
|
"parameters": "parameters",
|
|
7951
7950
|
"tags": "tags",
|
|
7951
|
+
"template_url": "templateUrl",
|
|
7952
7952
|
"timeout_in_minutes": "timeoutInMinutes",
|
|
7953
7953
|
},
|
|
7954
7954
|
)
|
|
@@ -7956,18 +7956,18 @@ class CfnStackProps:
|
|
|
7956
7956
|
def __init__(
|
|
7957
7957
|
self,
|
|
7958
7958
|
*,
|
|
7959
|
-
template_url: builtins.str,
|
|
7960
7959
|
notification_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7961
7960
|
parameters: typing.Optional[typing.Union["IResolvable", typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
7962
7961
|
tags: typing.Optional[typing.Sequence[typing.Union["CfnTag", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7962
|
+
template_url: typing.Optional[builtins.str] = None,
|
|
7963
7963
|
timeout_in_minutes: typing.Optional[jsii.Number] = None,
|
|
7964
7964
|
) -> None:
|
|
7965
7965
|
'''Properties for defining a ``CfnStack``.
|
|
7966
7966
|
|
|
7967
|
-
:param template_url: Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
7968
7967
|
:param notification_arns: The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events. You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).
|
|
7969
7968
|
:param parameters: The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created. Each parameter has a name corresponding to a parameter defined in the embedded template and a value representing the value that you want to set for the parameter. .. epigraph:: If you use the ``Ref`` function to pass a parameter value to a nested stack, comma-delimited list parameters must be of type ``String`` . In other words, you can't pass values that are of type ``CommaDelimitedList`` to nested stacks. Conditional. Required if the nested stack requires input parameters. Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
7970
7969
|
:param tags: Key-value pairs to associate with this stack. AWS CloudFormation also propagates these tags to the resources created in the stack. A maximum number of 50 tags can be specified.
|
|
7970
|
+
:param template_url: Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
7971
7971
|
:param timeout_in_minutes: The length of time, in minutes, that CloudFormation waits for the nested stack to reach the ``CREATE_COMPLETE`` state. The default is no timeout. When CloudFormation detects that the nested stack has reached the ``CREATE_COMPLETE`` state, it marks the nested stack resource as ``CREATE_COMPLETE`` in the parent stack and resumes creating the parent stack. If the timeout period expires before the nested stack reaches ``CREATE_COMPLETE`` , CloudFormation marks the nested stack as failed and rolls back both the nested stack and parent stack. Updates aren't supported.
|
|
7972
7972
|
|
|
7973
7973
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html
|
|
@@ -7980,9 +7980,6 @@ class CfnStackProps:
|
|
|
7980
7980
|
import aws_cdk as cdk
|
|
7981
7981
|
|
|
7982
7982
|
cfn_stack_props = cdk.CfnStackProps(
|
|
7983
|
-
template_url="templateUrl",
|
|
7984
|
-
|
|
7985
|
-
# the properties below are optional
|
|
7986
7983
|
notification_arns=["notificationArns"],
|
|
7987
7984
|
parameters={
|
|
7988
7985
|
"parameters_key": "parameters"
|
|
@@ -7991,42 +7988,29 @@ class CfnStackProps:
|
|
|
7991
7988
|
key="key",
|
|
7992
7989
|
value="value"
|
|
7993
7990
|
)],
|
|
7991
|
+
template_url="templateUrl",
|
|
7994
7992
|
timeout_in_minutes=123
|
|
7995
7993
|
)
|
|
7996
7994
|
'''
|
|
7997
7995
|
if __debug__:
|
|
7998
7996
|
type_hints = typing.get_type_hints(_typecheckingstub__9fb527d4bac73dc363319bbe1cf2be973d3eb9db93eb4ec913a8151682c3f223)
|
|
7999
|
-
check_type(argname="argument template_url", value=template_url, expected_type=type_hints["template_url"])
|
|
8000
7997
|
check_type(argname="argument notification_arns", value=notification_arns, expected_type=type_hints["notification_arns"])
|
|
8001
7998
|
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
8002
7999
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
8000
|
+
check_type(argname="argument template_url", value=template_url, expected_type=type_hints["template_url"])
|
|
8003
8001
|
check_type(argname="argument timeout_in_minutes", value=timeout_in_minutes, expected_type=type_hints["timeout_in_minutes"])
|
|
8004
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8005
|
-
"template_url": template_url,
|
|
8006
|
-
}
|
|
8002
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8007
8003
|
if notification_arns is not None:
|
|
8008
8004
|
self._values["notification_arns"] = notification_arns
|
|
8009
8005
|
if parameters is not None:
|
|
8010
8006
|
self._values["parameters"] = parameters
|
|
8011
8007
|
if tags is not None:
|
|
8012
8008
|
self._values["tags"] = tags
|
|
8009
|
+
if template_url is not None:
|
|
8010
|
+
self._values["template_url"] = template_url
|
|
8013
8011
|
if timeout_in_minutes is not None:
|
|
8014
8012
|
self._values["timeout_in_minutes"] = timeout_in_minutes
|
|
8015
8013
|
|
|
8016
|
-
@builtins.property
|
|
8017
|
-
def template_url(self) -> builtins.str:
|
|
8018
|
-
'''Location of file containing the template body.
|
|
8019
|
-
|
|
8020
|
-
The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ .
|
|
8021
|
-
|
|
8022
|
-
Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
8023
|
-
|
|
8024
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-templateurl
|
|
8025
|
-
'''
|
|
8026
|
-
result = self._values.get("template_url")
|
|
8027
|
-
assert result is not None, "Required property 'template_url' is missing"
|
|
8028
|
-
return typing.cast(builtins.str, result)
|
|
8029
|
-
|
|
8030
8014
|
@builtins.property
|
|
8031
8015
|
def notification_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
8032
8016
|
'''The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events.
|
|
@@ -8069,6 +8053,19 @@ class CfnStackProps:
|
|
|
8069
8053
|
result = self._values.get("tags")
|
|
8070
8054
|
return typing.cast(typing.Optional[typing.List["CfnTag"]], result)
|
|
8071
8055
|
|
|
8056
|
+
@builtins.property
|
|
8057
|
+
def template_url(self) -> typing.Optional[builtins.str]:
|
|
8058
|
+
'''Location of file containing the template body.
|
|
8059
|
+
|
|
8060
|
+
The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ .
|
|
8061
|
+
|
|
8062
|
+
Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
8063
|
+
|
|
8064
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-templateurl
|
|
8065
|
+
'''
|
|
8066
|
+
result = self._values.get("template_url")
|
|
8067
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8068
|
+
|
|
8072
8069
|
@builtins.property
|
|
8073
8070
|
def timeout_in_minutes(self) -> typing.Optional[jsii.Number]:
|
|
8074
8071
|
'''The length of time, in minutes, that CloudFormation waits for the nested stack to reach the ``CREATE_COMPLETE`` state.
|
|
@@ -16572,15 +16569,12 @@ class Lazy(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.Lazy"):
|
|
|
16572
16569
|
)
|
|
16573
16570
|
|
|
16574
16571
|
# Merged API
|
|
16575
|
-
appsync.GraphqlApi(self, "MergedAPI",
|
|
16572
|
+
merged_api = appsync.GraphqlApi(self, "MergedAPI",
|
|
16576
16573
|
name="MergedAPI",
|
|
16577
16574
|
definition=appsync.Definition.from_source_apis(
|
|
16578
16575
|
source_apis=[appsync.SourceApi(
|
|
16579
16576
|
source_api=first_api,
|
|
16580
16577
|
merge_type=appsync.MergeType.MANUAL_MERGE
|
|
16581
|
-
), appsync.SourceApi(
|
|
16582
|
-
source_api=second_api,
|
|
16583
|
-
merge_type=appsync.MergeType.AUTO_MERGE
|
|
16584
16578
|
)
|
|
16585
16579
|
]
|
|
16586
16580
|
)
|
|
@@ -20289,9 +20283,16 @@ class Stack(
|
|
|
20289
20283
|
|
|
20290
20284
|
@builtins.property
|
|
20291
20285
|
@jsii.member(jsii_name="terminationProtection")
|
|
20292
|
-
def termination_protection(self) ->
|
|
20286
|
+
def termination_protection(self) -> builtins.bool:
|
|
20293
20287
|
'''Whether termination protection is enabled for this stack.'''
|
|
20294
|
-
return typing.cast(
|
|
20288
|
+
return typing.cast(builtins.bool, jsii.get(self, "terminationProtection"))
|
|
20289
|
+
|
|
20290
|
+
@termination_protection.setter
|
|
20291
|
+
def termination_protection(self, value: builtins.bool) -> None:
|
|
20292
|
+
if __debug__:
|
|
20293
|
+
type_hints = typing.get_type_hints(_typecheckingstub__11d4f0b6ee8029a38fd83d0a25ca35c29bbca4dddd12b58e84f2a35b7224c2eb)
|
|
20294
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
20295
|
+
jsii.set(self, "terminationProtection", value)
|
|
20295
20296
|
|
|
20296
20297
|
|
|
20297
20298
|
@jsii.data_type(
|
|
@@ -29071,9 +29072,6 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29071
29072
|
import aws_cdk as cdk
|
|
29072
29073
|
|
|
29073
29074
|
cfn_stack = cdk.CfnStack(self, "MyCfnStack",
|
|
29074
|
-
template_url="templateUrl",
|
|
29075
|
-
|
|
29076
|
-
# the properties below are optional
|
|
29077
29075
|
notification_arns=["notificationArns"],
|
|
29078
29076
|
parameters={
|
|
29079
29077
|
"parameters_key": "parameters"
|
|
@@ -29082,6 +29080,7 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29082
29080
|
key="key",
|
|
29083
29081
|
value="value"
|
|
29084
29082
|
)],
|
|
29083
|
+
template_url="templateUrl",
|
|
29085
29084
|
timeout_in_minutes=123
|
|
29086
29085
|
)
|
|
29087
29086
|
'''
|
|
@@ -29091,19 +29090,19 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29091
29090
|
scope: _constructs_77d1e7e8.Construct,
|
|
29092
29091
|
id: builtins.str,
|
|
29093
29092
|
*,
|
|
29094
|
-
template_url: builtins.str,
|
|
29095
29093
|
notification_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
29096
29094
|
parameters: typing.Optional[typing.Union[IResolvable, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
29097
29095
|
tags: typing.Optional[typing.Sequence[typing.Union[CfnTag, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29096
|
+
template_url: typing.Optional[builtins.str] = None,
|
|
29098
29097
|
timeout_in_minutes: typing.Optional[jsii.Number] = None,
|
|
29099
29098
|
) -> None:
|
|
29100
29099
|
'''
|
|
29101
29100
|
:param scope: Scope in which this resource is defined.
|
|
29102
29101
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
29103
|
-
:param template_url: Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
29104
29102
|
:param notification_arns: The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events. You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).
|
|
29105
29103
|
:param parameters: The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created. Each parameter has a name corresponding to a parameter defined in the embedded template and a value representing the value that you want to set for the parameter. .. epigraph:: If you use the ``Ref`` function to pass a parameter value to a nested stack, comma-delimited list parameters must be of type ``String`` . In other words, you can't pass values that are of type ``CommaDelimitedList`` to nested stacks. Conditional. Required if the nested stack requires input parameters. Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
29106
29104
|
:param tags: Key-value pairs to associate with this stack. AWS CloudFormation also propagates these tags to the resources created in the stack. A maximum number of 50 tags can be specified.
|
|
29105
|
+
:param template_url: Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
29107
29106
|
:param timeout_in_minutes: The length of time, in minutes, that CloudFormation waits for the nested stack to reach the ``CREATE_COMPLETE`` state. The default is no timeout. When CloudFormation detects that the nested stack has reached the ``CREATE_COMPLETE`` state, it marks the nested stack resource as ``CREATE_COMPLETE`` in the parent stack and resumes creating the parent stack. If the timeout period expires before the nested stack reaches ``CREATE_COMPLETE`` , CloudFormation marks the nested stack as failed and rolls back both the nested stack and parent stack. Updates aren't supported.
|
|
29108
29107
|
'''
|
|
29109
29108
|
if __debug__:
|
|
@@ -29111,10 +29110,10 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29111
29110
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
29112
29111
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
29113
29112
|
props = CfnStackProps(
|
|
29114
|
-
template_url=template_url,
|
|
29115
29113
|
notification_arns=notification_arns,
|
|
29116
29114
|
parameters=parameters,
|
|
29117
29115
|
tags=tags,
|
|
29116
|
+
template_url=template_url,
|
|
29118
29117
|
timeout_in_minutes=timeout_in_minutes,
|
|
29119
29118
|
)
|
|
29120
29119
|
|
|
@@ -29151,12 +29150,68 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29151
29150
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
29152
29151
|
|
|
29153
29152
|
@builtins.property
|
|
29154
|
-
@jsii.member(jsii_name="
|
|
29155
|
-
def
|
|
29153
|
+
@jsii.member(jsii_name="attrChangeSetId")
|
|
29154
|
+
def attr_change_set_id(self) -> builtins.str:
|
|
29156
29155
|
'''
|
|
29157
|
-
:cloudformationAttribute:
|
|
29156
|
+
:cloudformationAttribute: ChangeSetId
|
|
29158
29157
|
'''
|
|
29159
|
-
return typing.cast(builtins.str, jsii.get(self, "
|
|
29158
|
+
return typing.cast(builtins.str, jsii.get(self, "attrChangeSetId"))
|
|
29159
|
+
|
|
29160
|
+
@builtins.property
|
|
29161
|
+
@jsii.member(jsii_name="attrCreationTime")
|
|
29162
|
+
def attr_creation_time(self) -> builtins.str:
|
|
29163
|
+
'''
|
|
29164
|
+
:cloudformationAttribute: CreationTime
|
|
29165
|
+
'''
|
|
29166
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
|
|
29167
|
+
|
|
29168
|
+
@builtins.property
|
|
29169
|
+
@jsii.member(jsii_name="attrLastUpdateTime")
|
|
29170
|
+
def attr_last_update_time(self) -> builtins.str:
|
|
29171
|
+
'''
|
|
29172
|
+
:cloudformationAttribute: LastUpdateTime
|
|
29173
|
+
'''
|
|
29174
|
+
return typing.cast(builtins.str, jsii.get(self, "attrLastUpdateTime"))
|
|
29175
|
+
|
|
29176
|
+
@builtins.property
|
|
29177
|
+
@jsii.member(jsii_name="attrOutputs")
|
|
29178
|
+
def attr_outputs(self) -> IResolvable:
|
|
29179
|
+
'''
|
|
29180
|
+
:cloudformationAttribute: Outputs
|
|
29181
|
+
'''
|
|
29182
|
+
return typing.cast(IResolvable, jsii.get(self, "attrOutputs"))
|
|
29183
|
+
|
|
29184
|
+
@builtins.property
|
|
29185
|
+
@jsii.member(jsii_name="attrParentId")
|
|
29186
|
+
def attr_parent_id(self) -> builtins.str:
|
|
29187
|
+
'''
|
|
29188
|
+
:cloudformationAttribute: ParentId
|
|
29189
|
+
'''
|
|
29190
|
+
return typing.cast(builtins.str, jsii.get(self, "attrParentId"))
|
|
29191
|
+
|
|
29192
|
+
@builtins.property
|
|
29193
|
+
@jsii.member(jsii_name="attrRootId")
|
|
29194
|
+
def attr_root_id(self) -> builtins.str:
|
|
29195
|
+
'''
|
|
29196
|
+
:cloudformationAttribute: RootId
|
|
29197
|
+
'''
|
|
29198
|
+
return typing.cast(builtins.str, jsii.get(self, "attrRootId"))
|
|
29199
|
+
|
|
29200
|
+
@builtins.property
|
|
29201
|
+
@jsii.member(jsii_name="attrStackId")
|
|
29202
|
+
def attr_stack_id(self) -> builtins.str:
|
|
29203
|
+
'''
|
|
29204
|
+
:cloudformationAttribute: StackId
|
|
29205
|
+
'''
|
|
29206
|
+
return typing.cast(builtins.str, jsii.get(self, "attrStackId"))
|
|
29207
|
+
|
|
29208
|
+
@builtins.property
|
|
29209
|
+
@jsii.member(jsii_name="attrStackStatus")
|
|
29210
|
+
def attr_stack_status(self) -> builtins.str:
|
|
29211
|
+
'''
|
|
29212
|
+
:cloudformationAttribute: StackStatus
|
|
29213
|
+
'''
|
|
29214
|
+
return typing.cast(builtins.str, jsii.get(self, "attrStackStatus"))
|
|
29160
29215
|
|
|
29161
29216
|
@builtins.property
|
|
29162
29217
|
@jsii.member(jsii_name="cfnProperties")
|
|
@@ -29169,19 +29224,6 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29169
29224
|
'''Tag Manager which manages the tags for this resource.'''
|
|
29170
29225
|
return typing.cast(TagManager, jsii.get(self, "tags"))
|
|
29171
29226
|
|
|
29172
|
-
@builtins.property
|
|
29173
|
-
@jsii.member(jsii_name="templateUrl")
|
|
29174
|
-
def template_url(self) -> builtins.str:
|
|
29175
|
-
'''Location of file containing the template body.'''
|
|
29176
|
-
return typing.cast(builtins.str, jsii.get(self, "templateUrl"))
|
|
29177
|
-
|
|
29178
|
-
@template_url.setter
|
|
29179
|
-
def template_url(self, value: builtins.str) -> None:
|
|
29180
|
-
if __debug__:
|
|
29181
|
-
type_hints = typing.get_type_hints(_typecheckingstub__fca2333050ec1bc7ded0826e01e92f6e2eeb3665b01935ccce638b9997563a9b)
|
|
29182
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
29183
|
-
jsii.set(self, "templateUrl", value)
|
|
29184
|
-
|
|
29185
29227
|
@builtins.property
|
|
29186
29228
|
@jsii.member(jsii_name="notificationArns")
|
|
29187
29229
|
def notification_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -29229,6 +29271,19 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29229
29271
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
29230
29272
|
jsii.set(self, "tagsRaw", value)
|
|
29231
29273
|
|
|
29274
|
+
@builtins.property
|
|
29275
|
+
@jsii.member(jsii_name="templateUrl")
|
|
29276
|
+
def template_url(self) -> typing.Optional[builtins.str]:
|
|
29277
|
+
'''Location of file containing the template body.'''
|
|
29278
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "templateUrl"))
|
|
29279
|
+
|
|
29280
|
+
@template_url.setter
|
|
29281
|
+
def template_url(self, value: typing.Optional[builtins.str]) -> None:
|
|
29282
|
+
if __debug__:
|
|
29283
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fca2333050ec1bc7ded0826e01e92f6e2eeb3665b01935ccce638b9997563a9b)
|
|
29284
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
29285
|
+
jsii.set(self, "templateUrl", value)
|
|
29286
|
+
|
|
29232
29287
|
@builtins.property
|
|
29233
29288
|
@jsii.member(jsii_name="timeoutInMinutes")
|
|
29234
29289
|
def timeout_in_minutes(self) -> typing.Optional[jsii.Number]:
|
|
@@ -29242,6 +29297,111 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29242
29297
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
29243
29298
|
jsii.set(self, "timeoutInMinutes", value)
|
|
29244
29299
|
|
|
29300
|
+
@jsii.data_type(
|
|
29301
|
+
jsii_type="aws-cdk-lib.CfnStack.OutputProperty",
|
|
29302
|
+
jsii_struct_bases=[],
|
|
29303
|
+
name_mapping={
|
|
29304
|
+
"description": "description",
|
|
29305
|
+
"export_name": "exportName",
|
|
29306
|
+
"output_key": "outputKey",
|
|
29307
|
+
"output_value": "outputValue",
|
|
29308
|
+
},
|
|
29309
|
+
)
|
|
29310
|
+
class OutputProperty:
|
|
29311
|
+
def __init__(
|
|
29312
|
+
self,
|
|
29313
|
+
*,
|
|
29314
|
+
description: typing.Optional[builtins.str] = None,
|
|
29315
|
+
export_name: typing.Optional[builtins.str] = None,
|
|
29316
|
+
output_key: typing.Optional[builtins.str] = None,
|
|
29317
|
+
output_value: typing.Optional[builtins.str] = None,
|
|
29318
|
+
) -> None:
|
|
29319
|
+
'''The Output data type.
|
|
29320
|
+
|
|
29321
|
+
:param description: User defined description associated with the output.
|
|
29322
|
+
:param export_name: The name of the export associated with the output.
|
|
29323
|
+
:param output_key: The key associated with the output.
|
|
29324
|
+
:param output_value: The value associated with the output.
|
|
29325
|
+
|
|
29326
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html
|
|
29327
|
+
:exampleMetadata: fixture=_generated
|
|
29328
|
+
|
|
29329
|
+
Example::
|
|
29330
|
+
|
|
29331
|
+
# The code below shows an example of how to instantiate this type.
|
|
29332
|
+
# The values are placeholders you should change.
|
|
29333
|
+
import aws_cdk as cdk
|
|
29334
|
+
|
|
29335
|
+
output_property = cdk.CfnStack.OutputProperty(
|
|
29336
|
+
description="description",
|
|
29337
|
+
export_name="exportName",
|
|
29338
|
+
output_key="outputKey",
|
|
29339
|
+
output_value="outputValue"
|
|
29340
|
+
)
|
|
29341
|
+
'''
|
|
29342
|
+
if __debug__:
|
|
29343
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1866ca48b4379765fb3538a2f94188f868253fea40f3557181a39581feb38350)
|
|
29344
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
29345
|
+
check_type(argname="argument export_name", value=export_name, expected_type=type_hints["export_name"])
|
|
29346
|
+
check_type(argname="argument output_key", value=output_key, expected_type=type_hints["output_key"])
|
|
29347
|
+
check_type(argname="argument output_value", value=output_value, expected_type=type_hints["output_value"])
|
|
29348
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
29349
|
+
if description is not None:
|
|
29350
|
+
self._values["description"] = description
|
|
29351
|
+
if export_name is not None:
|
|
29352
|
+
self._values["export_name"] = export_name
|
|
29353
|
+
if output_key is not None:
|
|
29354
|
+
self._values["output_key"] = output_key
|
|
29355
|
+
if output_value is not None:
|
|
29356
|
+
self._values["output_value"] = output_value
|
|
29357
|
+
|
|
29358
|
+
@builtins.property
|
|
29359
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
29360
|
+
'''User defined description associated with the output.
|
|
29361
|
+
|
|
29362
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-description
|
|
29363
|
+
'''
|
|
29364
|
+
result = self._values.get("description")
|
|
29365
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
29366
|
+
|
|
29367
|
+
@builtins.property
|
|
29368
|
+
def export_name(self) -> typing.Optional[builtins.str]:
|
|
29369
|
+
'''The name of the export associated with the output.
|
|
29370
|
+
|
|
29371
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-exportname
|
|
29372
|
+
'''
|
|
29373
|
+
result = self._values.get("export_name")
|
|
29374
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
29375
|
+
|
|
29376
|
+
@builtins.property
|
|
29377
|
+
def output_key(self) -> typing.Optional[builtins.str]:
|
|
29378
|
+
'''The key associated with the output.
|
|
29379
|
+
|
|
29380
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-outputkey
|
|
29381
|
+
'''
|
|
29382
|
+
result = self._values.get("output_key")
|
|
29383
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
29384
|
+
|
|
29385
|
+
@builtins.property
|
|
29386
|
+
def output_value(self) -> typing.Optional[builtins.str]:
|
|
29387
|
+
'''The value associated with the output.
|
|
29388
|
+
|
|
29389
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stack-output.html#cfn-cloudformation-stack-output-outputvalue
|
|
29390
|
+
'''
|
|
29391
|
+
result = self._values.get("output_value")
|
|
29392
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
29393
|
+
|
|
29394
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
29395
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
29396
|
+
|
|
29397
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
29398
|
+
return not (rhs == self)
|
|
29399
|
+
|
|
29400
|
+
def __repr__(self) -> str:
|
|
29401
|
+
return "OutputProperty(%s)" % ", ".join(
|
|
29402
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
29403
|
+
)
|
|
29404
|
+
|
|
29245
29405
|
|
|
29246
29406
|
@jsii.implements(IInspectable, ITaggable)
|
|
29247
29407
|
class CfnStackSet(
|
|
@@ -33110,6 +33270,7 @@ __all__ = [
|
|
|
33110
33270
|
"aws_emr",
|
|
33111
33271
|
"aws_emrcontainers",
|
|
33112
33272
|
"aws_emrserverless",
|
|
33273
|
+
"aws_entityresolution",
|
|
33113
33274
|
"aws_events",
|
|
33114
33275
|
"aws_events_targets",
|
|
33115
33276
|
"aws_eventschemas",
|
|
@@ -33179,6 +33340,7 @@ __all__ = [
|
|
|
33179
33340
|
"aws_mediaconvert",
|
|
33180
33341
|
"aws_medialive",
|
|
33181
33342
|
"aws_mediapackage",
|
|
33343
|
+
"aws_mediapackagev2",
|
|
33182
33344
|
"aws_mediastore",
|
|
33183
33345
|
"aws_mediatailor",
|
|
33184
33346
|
"aws_memorydb",
|
|
@@ -33197,6 +33359,7 @@ __all__ = [
|
|
|
33197
33359
|
"aws_organizations",
|
|
33198
33360
|
"aws_osis",
|
|
33199
33361
|
"aws_panorama",
|
|
33362
|
+
"aws_pcaconnectorad",
|
|
33200
33363
|
"aws_personalize",
|
|
33201
33364
|
"aws_pinpoint",
|
|
33202
33365
|
"aws_pinpointemail",
|
|
@@ -33264,6 +33427,7 @@ __all__ = [
|
|
|
33264
33427
|
"aws_wafv2",
|
|
33265
33428
|
"aws_wisdom",
|
|
33266
33429
|
"aws_workspaces",
|
|
33430
|
+
"aws_workspacesweb",
|
|
33267
33431
|
"aws_xray",
|
|
33268
33432
|
"cloud_assembly_schema",
|
|
33269
33433
|
"cloudformation_include",
|
|
@@ -33371,6 +33535,7 @@ from . import aws_elasticsearch
|
|
|
33371
33535
|
from . import aws_emr
|
|
33372
33536
|
from . import aws_emrcontainers
|
|
33373
33537
|
from . import aws_emrserverless
|
|
33538
|
+
from . import aws_entityresolution
|
|
33374
33539
|
from . import aws_events
|
|
33375
33540
|
from . import aws_events_targets
|
|
33376
33541
|
from . import aws_eventschemas
|
|
@@ -33440,6 +33605,7 @@ from . import aws_mediaconnect
|
|
|
33440
33605
|
from . import aws_mediaconvert
|
|
33441
33606
|
from . import aws_medialive
|
|
33442
33607
|
from . import aws_mediapackage
|
|
33608
|
+
from . import aws_mediapackagev2
|
|
33443
33609
|
from . import aws_mediastore
|
|
33444
33610
|
from . import aws_mediatailor
|
|
33445
33611
|
from . import aws_memorydb
|
|
@@ -33458,6 +33624,7 @@ from . import aws_opsworkscm
|
|
|
33458
33624
|
from . import aws_organizations
|
|
33459
33625
|
from . import aws_osis
|
|
33460
33626
|
from . import aws_panorama
|
|
33627
|
+
from . import aws_pcaconnectorad
|
|
33461
33628
|
from . import aws_personalize
|
|
33462
33629
|
from . import aws_pinpoint
|
|
33463
33630
|
from . import aws_pinpointemail
|
|
@@ -33525,6 +33692,7 @@ from . import aws_wafregional
|
|
|
33525
33692
|
from . import aws_wafv2
|
|
33526
33693
|
from . import aws_wisdom
|
|
33527
33694
|
from . import aws_workspaces
|
|
33695
|
+
from . import aws_workspacesweb
|
|
33528
33696
|
from . import aws_xray
|
|
33529
33697
|
from . import cloud_assembly_schema
|
|
33530
33698
|
from . import cloudformation_include
|
|
@@ -34380,10 +34548,10 @@ def _typecheckingstub__b4a89ebbdf831c87a631869cbefb7a1b6d6a2f1ce5b8030f61d58f473
|
|
|
34380
34548
|
|
|
34381
34549
|
def _typecheckingstub__9fb527d4bac73dc363319bbe1cf2be973d3eb9db93eb4ec913a8151682c3f223(
|
|
34382
34550
|
*,
|
|
34383
|
-
template_url: builtins.str,
|
|
34384
34551
|
notification_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
34385
34552
|
parameters: typing.Optional[typing.Union[IResolvable, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
34386
34553
|
tags: typing.Optional[typing.Sequence[typing.Union[CfnTag, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
34554
|
+
template_url: typing.Optional[builtins.str] = None,
|
|
34387
34555
|
timeout_in_minutes: typing.Optional[jsii.Number] = None,
|
|
34388
34556
|
) -> None:
|
|
34389
34557
|
"""Type checking stubs"""
|
|
@@ -36042,6 +36210,12 @@ def _typecheckingstub__d11292dfb7c0b4e79f7b3aca3724b7a48b0d18733506af24e25299c48
|
|
|
36042
36210
|
"""Type checking stubs"""
|
|
36043
36211
|
pass
|
|
36044
36212
|
|
|
36213
|
+
def _typecheckingstub__11d4f0b6ee8029a38fd83d0a25ca35c29bbca4dddd12b58e84f2a35b7224c2eb(
|
|
36214
|
+
value: builtins.bool,
|
|
36215
|
+
) -> None:
|
|
36216
|
+
"""Type checking stubs"""
|
|
36217
|
+
pass
|
|
36218
|
+
|
|
36045
36219
|
def _typecheckingstub__a36aaf4edf2967c8ed36d2cad24d023f14778db721379dffbd74eb6dd2086848(
|
|
36046
36220
|
*,
|
|
36047
36221
|
analytics_reporting: typing.Optional[builtins.bool] = None,
|
|
@@ -37125,10 +37299,10 @@ def _typecheckingstub__a8594abaf48bfc733fdc85ceff8c2d40dba03f52ce866519ff597396f
|
|
|
37125
37299
|
scope: _constructs_77d1e7e8.Construct,
|
|
37126
37300
|
id: builtins.str,
|
|
37127
37301
|
*,
|
|
37128
|
-
template_url: builtins.str,
|
|
37129
37302
|
notification_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
37130
37303
|
parameters: typing.Optional[typing.Union[IResolvable, typing.Mapping[builtins.str, builtins.str]]] = None,
|
|
37131
37304
|
tags: typing.Optional[typing.Sequence[typing.Union[CfnTag, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
37305
|
+
template_url: typing.Optional[builtins.str] = None,
|
|
37132
37306
|
timeout_in_minutes: typing.Optional[jsii.Number] = None,
|
|
37133
37307
|
) -> None:
|
|
37134
37308
|
"""Type checking stubs"""
|
|
@@ -37146,12 +37320,6 @@ def _typecheckingstub__f54de01e03398f15d0eece2c394fd8529a0a45c02630be488a90b452b
|
|
|
37146
37320
|
"""Type checking stubs"""
|
|
37147
37321
|
pass
|
|
37148
37322
|
|
|
37149
|
-
def _typecheckingstub__fca2333050ec1bc7ded0826e01e92f6e2eeb3665b01935ccce638b9997563a9b(
|
|
37150
|
-
value: builtins.str,
|
|
37151
|
-
) -> None:
|
|
37152
|
-
"""Type checking stubs"""
|
|
37153
|
-
pass
|
|
37154
|
-
|
|
37155
37323
|
def _typecheckingstub__c9c77d10e222f51987b4f16f428d98153c077789a4dc99f5943c9a4b1c2da262(
|
|
37156
37324
|
value: typing.Optional[typing.List[builtins.str]],
|
|
37157
37325
|
) -> None:
|
|
@@ -37170,12 +37338,28 @@ def _typecheckingstub__01a1e89136d78f617e17761b0d0ff550a27df4b2af18d366390e08756
|
|
|
37170
37338
|
"""Type checking stubs"""
|
|
37171
37339
|
pass
|
|
37172
37340
|
|
|
37341
|
+
def _typecheckingstub__fca2333050ec1bc7ded0826e01e92f6e2eeb3665b01935ccce638b9997563a9b(
|
|
37342
|
+
value: typing.Optional[builtins.str],
|
|
37343
|
+
) -> None:
|
|
37344
|
+
"""Type checking stubs"""
|
|
37345
|
+
pass
|
|
37346
|
+
|
|
37173
37347
|
def _typecheckingstub__014f1ef9e7a515362b7a296620ed8a84c70f46604a2c87b2ec9c0925b167ddd3(
|
|
37174
37348
|
value: typing.Optional[jsii.Number],
|
|
37175
37349
|
) -> None:
|
|
37176
37350
|
"""Type checking stubs"""
|
|
37177
37351
|
pass
|
|
37178
37352
|
|
|
37353
|
+
def _typecheckingstub__1866ca48b4379765fb3538a2f94188f868253fea40f3557181a39581feb38350(
|
|
37354
|
+
*,
|
|
37355
|
+
description: typing.Optional[builtins.str] = None,
|
|
37356
|
+
export_name: typing.Optional[builtins.str] = None,
|
|
37357
|
+
output_key: typing.Optional[builtins.str] = None,
|
|
37358
|
+
output_value: typing.Optional[builtins.str] = None,
|
|
37359
|
+
) -> None:
|
|
37360
|
+
"""Type checking stubs"""
|
|
37361
|
+
pass
|
|
37362
|
+
|
|
37179
37363
|
def _typecheckingstub__18f5cbcbd69d140eff69172745aeef070057c3c18635b8197f16a411bf031298(
|
|
37180
37364
|
scope: _constructs_77d1e7e8.Construct,
|
|
37181
37365
|
id: builtins.str,
|
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -16,7 +16,7 @@ import aws_cdk.asset_node_proxy_agent_v6._jsii
|
|
|
16
16
|
import constructs._jsii
|
|
17
17
|
|
|
18
18
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
19
|
-
"aws-cdk-lib", "2.
|
|
19
|
+
"aws-cdk-lib", "2.97.1", __name__[0:-6], "aws-cdk-lib@2.97.1.jsii.tgz"
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
__all__ = [
|
|
Binary file
|
|
@@ -3415,7 +3415,7 @@ class CfnDomainName(
|
|
|
3415
3415
|
ownership_verification_certificate_arn: typing.Optional[builtins.str] = None,
|
|
3416
3416
|
security_policy: typing.Optional[builtins.str] = None,
|
|
3417
3417
|
) -> None:
|
|
3418
|
-
'''The ``DomainNameConfiguration`` property type specifies the configuration for
|
|
3418
|
+
'''The ``DomainNameConfiguration`` property type specifies the configuration for an API's domain name.
|
|
3419
3419
|
|
|
3420
3420
|
``DomainNameConfiguration`` is a property of the `AWS::ApiGatewayV2::DomainName <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html>`_ resource.
|
|
3421
3421
|
|