aws-cdk-lib 2.215.0__py3-none-any.whl → 2.217.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 +90 -58
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.215.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +32 -21
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +162 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +91 -10
- aws_cdk/aws_cloudfront_origins/__init__.py +422 -47
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecr/__init__.py +4 -0
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +275 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_events/__init__.py +187 -0
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kinesisanalytics/__init__.py +315 -125
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +62 -8
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_route53/__init__.py +5926 -4376
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +669 -81
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +64 -62
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_datazone/__init__.py
CHANGED
|
@@ -1684,6 +1684,149 @@ class CfnEnvironmentProps:
|
|
|
1684
1684
|
)
|
|
1685
1685
|
|
|
1686
1686
|
|
|
1687
|
+
@jsii.data_type(
|
|
1688
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnFormTypeProps",
|
|
1689
|
+
jsii_struct_bases=[],
|
|
1690
|
+
name_mapping={
|
|
1691
|
+
"domain_identifier": "domainIdentifier",
|
|
1692
|
+
"model": "model",
|
|
1693
|
+
"name": "name",
|
|
1694
|
+
"owning_project_identifier": "owningProjectIdentifier",
|
|
1695
|
+
"description": "description",
|
|
1696
|
+
"status": "status",
|
|
1697
|
+
},
|
|
1698
|
+
)
|
|
1699
|
+
class CfnFormTypeProps:
|
|
1700
|
+
def __init__(
|
|
1701
|
+
self,
|
|
1702
|
+
*,
|
|
1703
|
+
domain_identifier: builtins.str,
|
|
1704
|
+
model: typing.Union[_IResolvable_da3f097b, typing.Union["CfnFormType.ModelProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1705
|
+
name: builtins.str,
|
|
1706
|
+
owning_project_identifier: builtins.str,
|
|
1707
|
+
description: typing.Optional[builtins.str] = None,
|
|
1708
|
+
status: typing.Optional[builtins.str] = None,
|
|
1709
|
+
) -> None:
|
|
1710
|
+
'''Properties for defining a ``CfnFormType``.
|
|
1711
|
+
|
|
1712
|
+
:param domain_identifier: The ID of the Amazon DataZone domain in which this metadata form type is created.
|
|
1713
|
+
:param model: Indicates the smithy model of the API.
|
|
1714
|
+
:param name: The name of this Amazon DataZone metadata form type.
|
|
1715
|
+
:param owning_project_identifier: The ID of the Amazon DataZone project that owns this metadata form type.
|
|
1716
|
+
:param description: The description of this Amazon DataZone metadata form type.
|
|
1717
|
+
:param status: The status of this Amazon DataZone metadata form type.
|
|
1718
|
+
|
|
1719
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html
|
|
1720
|
+
:exampleMetadata: fixture=_generated
|
|
1721
|
+
|
|
1722
|
+
Example::
|
|
1723
|
+
|
|
1724
|
+
# The code below shows an example of how to instantiate this type.
|
|
1725
|
+
# The values are placeholders you should change.
|
|
1726
|
+
from aws_cdk import aws_datazone as datazone
|
|
1727
|
+
|
|
1728
|
+
cfn_form_type_props = datazone.CfnFormTypeProps(
|
|
1729
|
+
domain_identifier="domainIdentifier",
|
|
1730
|
+
model=datazone.CfnFormType.ModelProperty(
|
|
1731
|
+
smithy="smithy"
|
|
1732
|
+
),
|
|
1733
|
+
name="name",
|
|
1734
|
+
owning_project_identifier="owningProjectIdentifier",
|
|
1735
|
+
|
|
1736
|
+
# the properties below are optional
|
|
1737
|
+
description="description",
|
|
1738
|
+
status="status"
|
|
1739
|
+
)
|
|
1740
|
+
'''
|
|
1741
|
+
if __debug__:
|
|
1742
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1d5d64f9db9d5db2b48658391fb0d79863073acb36e66a1bbe210ae89102e089)
|
|
1743
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
1744
|
+
check_type(argname="argument model", value=model, expected_type=type_hints["model"])
|
|
1745
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
1746
|
+
check_type(argname="argument owning_project_identifier", value=owning_project_identifier, expected_type=type_hints["owning_project_identifier"])
|
|
1747
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1748
|
+
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
1749
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1750
|
+
"domain_identifier": domain_identifier,
|
|
1751
|
+
"model": model,
|
|
1752
|
+
"name": name,
|
|
1753
|
+
"owning_project_identifier": owning_project_identifier,
|
|
1754
|
+
}
|
|
1755
|
+
if description is not None:
|
|
1756
|
+
self._values["description"] = description
|
|
1757
|
+
if status is not None:
|
|
1758
|
+
self._values["status"] = status
|
|
1759
|
+
|
|
1760
|
+
@builtins.property
|
|
1761
|
+
def domain_identifier(self) -> builtins.str:
|
|
1762
|
+
'''The ID of the Amazon DataZone domain in which this metadata form type is created.
|
|
1763
|
+
|
|
1764
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-domainidentifier
|
|
1765
|
+
'''
|
|
1766
|
+
result = self._values.get("domain_identifier")
|
|
1767
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
1768
|
+
return typing.cast(builtins.str, result)
|
|
1769
|
+
|
|
1770
|
+
@builtins.property
|
|
1771
|
+
def model(self) -> typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"]:
|
|
1772
|
+
'''Indicates the smithy model of the API.
|
|
1773
|
+
|
|
1774
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-model
|
|
1775
|
+
'''
|
|
1776
|
+
result = self._values.get("model")
|
|
1777
|
+
assert result is not None, "Required property 'model' is missing"
|
|
1778
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"], result)
|
|
1779
|
+
|
|
1780
|
+
@builtins.property
|
|
1781
|
+
def name(self) -> builtins.str:
|
|
1782
|
+
'''The name of this Amazon DataZone metadata form type.
|
|
1783
|
+
|
|
1784
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-name
|
|
1785
|
+
'''
|
|
1786
|
+
result = self._values.get("name")
|
|
1787
|
+
assert result is not None, "Required property 'name' is missing"
|
|
1788
|
+
return typing.cast(builtins.str, result)
|
|
1789
|
+
|
|
1790
|
+
@builtins.property
|
|
1791
|
+
def owning_project_identifier(self) -> builtins.str:
|
|
1792
|
+
'''The ID of the Amazon DataZone project that owns this metadata form type.
|
|
1793
|
+
|
|
1794
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-owningprojectidentifier
|
|
1795
|
+
'''
|
|
1796
|
+
result = self._values.get("owning_project_identifier")
|
|
1797
|
+
assert result is not None, "Required property 'owning_project_identifier' is missing"
|
|
1798
|
+
return typing.cast(builtins.str, result)
|
|
1799
|
+
|
|
1800
|
+
@builtins.property
|
|
1801
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
1802
|
+
'''The description of this Amazon DataZone metadata form type.
|
|
1803
|
+
|
|
1804
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-description
|
|
1805
|
+
'''
|
|
1806
|
+
result = self._values.get("description")
|
|
1807
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1808
|
+
|
|
1809
|
+
@builtins.property
|
|
1810
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
1811
|
+
'''The status of this Amazon DataZone metadata form type.
|
|
1812
|
+
|
|
1813
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-status
|
|
1814
|
+
'''
|
|
1815
|
+
result = self._values.get("status")
|
|
1816
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1817
|
+
|
|
1818
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1819
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1820
|
+
|
|
1821
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1822
|
+
return not (rhs == self)
|
|
1823
|
+
|
|
1824
|
+
def __repr__(self) -> str:
|
|
1825
|
+
return "CfnFormTypeProps(%s)" % ", ".join(
|
|
1826
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1827
|
+
)
|
|
1828
|
+
|
|
1829
|
+
|
|
1687
1830
|
@jsii.data_type(
|
|
1688
1831
|
jsii_type="aws-cdk-lib.aws_datazone.CfnGroupProfileProps",
|
|
1689
1832
|
jsii_struct_bases=[],
|
|
@@ -3410,6 +3553,74 @@ class EnvironmentReference:
|
|
|
3410
3553
|
)
|
|
3411
3554
|
|
|
3412
3555
|
|
|
3556
|
+
@jsii.data_type(
|
|
3557
|
+
jsii_type="aws-cdk-lib.aws_datazone.FormTypeReference",
|
|
3558
|
+
jsii_struct_bases=[],
|
|
3559
|
+
name_mapping={
|
|
3560
|
+
"domain_identifier": "domainIdentifier",
|
|
3561
|
+
"form_type_identifier": "formTypeIdentifier",
|
|
3562
|
+
},
|
|
3563
|
+
)
|
|
3564
|
+
class FormTypeReference:
|
|
3565
|
+
def __init__(
|
|
3566
|
+
self,
|
|
3567
|
+
*,
|
|
3568
|
+
domain_identifier: builtins.str,
|
|
3569
|
+
form_type_identifier: builtins.str,
|
|
3570
|
+
) -> None:
|
|
3571
|
+
'''A reference to a FormType resource.
|
|
3572
|
+
|
|
3573
|
+
:param domain_identifier: The DomainIdentifier of the FormType resource.
|
|
3574
|
+
:param form_type_identifier: The FormTypeIdentifier of the FormType resource.
|
|
3575
|
+
|
|
3576
|
+
:exampleMetadata: fixture=_generated
|
|
3577
|
+
|
|
3578
|
+
Example::
|
|
3579
|
+
|
|
3580
|
+
# The code below shows an example of how to instantiate this type.
|
|
3581
|
+
# The values are placeholders you should change.
|
|
3582
|
+
from aws_cdk import aws_datazone as datazone
|
|
3583
|
+
|
|
3584
|
+
form_type_reference = datazone.FormTypeReference(
|
|
3585
|
+
domain_identifier="domainIdentifier",
|
|
3586
|
+
form_type_identifier="formTypeIdentifier"
|
|
3587
|
+
)
|
|
3588
|
+
'''
|
|
3589
|
+
if __debug__:
|
|
3590
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7e9137523d26d74e056985919cf6df2d81e05562c4039a5d385b18594d48b472)
|
|
3591
|
+
check_type(argname="argument domain_identifier", value=domain_identifier, expected_type=type_hints["domain_identifier"])
|
|
3592
|
+
check_type(argname="argument form_type_identifier", value=form_type_identifier, expected_type=type_hints["form_type_identifier"])
|
|
3593
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3594
|
+
"domain_identifier": domain_identifier,
|
|
3595
|
+
"form_type_identifier": form_type_identifier,
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3598
|
+
@builtins.property
|
|
3599
|
+
def domain_identifier(self) -> builtins.str:
|
|
3600
|
+
'''The DomainIdentifier of the FormType resource.'''
|
|
3601
|
+
result = self._values.get("domain_identifier")
|
|
3602
|
+
assert result is not None, "Required property 'domain_identifier' is missing"
|
|
3603
|
+
return typing.cast(builtins.str, result)
|
|
3604
|
+
|
|
3605
|
+
@builtins.property
|
|
3606
|
+
def form_type_identifier(self) -> builtins.str:
|
|
3607
|
+
'''The FormTypeIdentifier of the FormType resource.'''
|
|
3608
|
+
result = self._values.get("form_type_identifier")
|
|
3609
|
+
assert result is not None, "Required property 'form_type_identifier' is missing"
|
|
3610
|
+
return typing.cast(builtins.str, result)
|
|
3611
|
+
|
|
3612
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3613
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3614
|
+
|
|
3615
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3616
|
+
return not (rhs == self)
|
|
3617
|
+
|
|
3618
|
+
def __repr__(self) -> str:
|
|
3619
|
+
return "FormTypeReference(%s)" % ", ".join(
|
|
3620
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3621
|
+
)
|
|
3622
|
+
|
|
3623
|
+
|
|
3413
3624
|
@jsii.data_type(
|
|
3414
3625
|
jsii_type="aws-cdk-lib.aws_datazone.GroupProfileReference",
|
|
3415
3626
|
jsii_struct_bases=[],
|
|
@@ -3810,6 +4021,46 @@ class _IEnvironmentRefProxy(
|
|
|
3810
4021
|
typing.cast(typing.Any, IEnvironmentRef).__jsii_proxy_class__ = lambda : _IEnvironmentRefProxy
|
|
3811
4022
|
|
|
3812
4023
|
|
|
4024
|
+
@jsii.interface(jsii_type="aws-cdk-lib.aws_datazone.IFormTypeRef")
|
|
4025
|
+
class IFormTypeRef(_constructs_77d1e7e8.IConstruct, typing_extensions.Protocol):
|
|
4026
|
+
'''(experimental) Indicates that this resource can be referenced as a FormType.
|
|
4027
|
+
|
|
4028
|
+
:stability: experimental
|
|
4029
|
+
'''
|
|
4030
|
+
|
|
4031
|
+
@builtins.property
|
|
4032
|
+
@jsii.member(jsii_name="formTypeRef")
|
|
4033
|
+
def form_type_ref(self) -> FormTypeReference:
|
|
4034
|
+
'''(experimental) A reference to a FormType resource.
|
|
4035
|
+
|
|
4036
|
+
:stability: experimental
|
|
4037
|
+
'''
|
|
4038
|
+
...
|
|
4039
|
+
|
|
4040
|
+
|
|
4041
|
+
class _IFormTypeRefProxy(
|
|
4042
|
+
jsii.proxy_for(_constructs_77d1e7e8.IConstruct), # type: ignore[misc]
|
|
4043
|
+
):
|
|
4044
|
+
'''(experimental) Indicates that this resource can be referenced as a FormType.
|
|
4045
|
+
|
|
4046
|
+
:stability: experimental
|
|
4047
|
+
'''
|
|
4048
|
+
|
|
4049
|
+
__jsii_type__: typing.ClassVar[str] = "aws-cdk-lib.aws_datazone.IFormTypeRef"
|
|
4050
|
+
|
|
4051
|
+
@builtins.property
|
|
4052
|
+
@jsii.member(jsii_name="formTypeRef")
|
|
4053
|
+
def form_type_ref(self) -> FormTypeReference:
|
|
4054
|
+
'''(experimental) A reference to a FormType resource.
|
|
4055
|
+
|
|
4056
|
+
:stability: experimental
|
|
4057
|
+
'''
|
|
4058
|
+
return typing.cast(FormTypeReference, jsii.get(self, "formTypeRef"))
|
|
4059
|
+
|
|
4060
|
+
# Adding a "__jsii_proxy_class__(): typing.Type" function to the interface
|
|
4061
|
+
typing.cast(typing.Any, IFormTypeRef).__jsii_proxy_class__ = lambda : _IFormTypeRefProxy
|
|
4062
|
+
|
|
4063
|
+
|
|
3813
4064
|
@jsii.interface(jsii_type="aws-cdk-lib.aws_datazone.IGroupProfileRef")
|
|
3814
4065
|
class IGroupProfileRef(_constructs_77d1e7e8.IConstruct, typing_extensions.Protocol):
|
|
3815
4066
|
'''(experimental) Indicates that this resource can be referenced as a GroupProfile.
|
|
@@ -11445,6 +11696,302 @@ class CfnEnvironmentProfile(
|
|
|
11445
11696
|
)
|
|
11446
11697
|
|
|
11447
11698
|
|
|
11699
|
+
@jsii.implements(_IInspectable_c2943556, IFormTypeRef)
|
|
11700
|
+
class CfnFormType(
|
|
11701
|
+
_CfnResource_9df397a6,
|
|
11702
|
+
metaclass=jsii.JSIIMeta,
|
|
11703
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnFormType",
|
|
11704
|
+
):
|
|
11705
|
+
'''Create and manage form types in Amazon Datazone.
|
|
11706
|
+
|
|
11707
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html
|
|
11708
|
+
:cloudformationResource: AWS::DataZone::FormType
|
|
11709
|
+
:exampleMetadata: fixture=_generated
|
|
11710
|
+
|
|
11711
|
+
Example::
|
|
11712
|
+
|
|
11713
|
+
# The code below shows an example of how to instantiate this type.
|
|
11714
|
+
# The values are placeholders you should change.
|
|
11715
|
+
from aws_cdk import aws_datazone as datazone
|
|
11716
|
+
|
|
11717
|
+
cfn_form_type = datazone.CfnFormType(self, "MyCfnFormType",
|
|
11718
|
+
domain_identifier="domainIdentifier",
|
|
11719
|
+
model=datazone.CfnFormType.ModelProperty(
|
|
11720
|
+
smithy="smithy"
|
|
11721
|
+
),
|
|
11722
|
+
name="name",
|
|
11723
|
+
owning_project_identifier="owningProjectIdentifier",
|
|
11724
|
+
|
|
11725
|
+
# the properties below are optional
|
|
11726
|
+
description="description",
|
|
11727
|
+
status="status"
|
|
11728
|
+
)
|
|
11729
|
+
'''
|
|
11730
|
+
|
|
11731
|
+
def __init__(
|
|
11732
|
+
self,
|
|
11733
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
11734
|
+
id: builtins.str,
|
|
11735
|
+
*,
|
|
11736
|
+
domain_identifier: builtins.str,
|
|
11737
|
+
model: typing.Union[_IResolvable_da3f097b, typing.Union["CfnFormType.ModelProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
11738
|
+
name: builtins.str,
|
|
11739
|
+
owning_project_identifier: builtins.str,
|
|
11740
|
+
description: typing.Optional[builtins.str] = None,
|
|
11741
|
+
status: typing.Optional[builtins.str] = None,
|
|
11742
|
+
) -> None:
|
|
11743
|
+
'''
|
|
11744
|
+
:param scope: Scope in which this resource is defined.
|
|
11745
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
11746
|
+
:param domain_identifier: The ID of the Amazon DataZone domain in which this metadata form type is created.
|
|
11747
|
+
:param model: Indicates the smithy model of the API.
|
|
11748
|
+
:param name: The name of this Amazon DataZone metadata form type.
|
|
11749
|
+
:param owning_project_identifier: The ID of the Amazon DataZone project that owns this metadata form type.
|
|
11750
|
+
:param description: The description of this Amazon DataZone metadata form type.
|
|
11751
|
+
:param status: The status of this Amazon DataZone metadata form type.
|
|
11752
|
+
'''
|
|
11753
|
+
if __debug__:
|
|
11754
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f81071a1a99e5415d6626de96c93bf3bae9973b224056b0dd081b7dea58b9c42)
|
|
11755
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
11756
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
11757
|
+
props = CfnFormTypeProps(
|
|
11758
|
+
domain_identifier=domain_identifier,
|
|
11759
|
+
model=model,
|
|
11760
|
+
name=name,
|
|
11761
|
+
owning_project_identifier=owning_project_identifier,
|
|
11762
|
+
description=description,
|
|
11763
|
+
status=status,
|
|
11764
|
+
)
|
|
11765
|
+
|
|
11766
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
11767
|
+
|
|
11768
|
+
@jsii.member(jsii_name="inspect")
|
|
11769
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
11770
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
11771
|
+
|
|
11772
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
11773
|
+
'''
|
|
11774
|
+
if __debug__:
|
|
11775
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b464c1e8d9caba7ca12d282335a590316faa2a9e44c06ef3fcfcf2bf658e2f59)
|
|
11776
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
11777
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
11778
|
+
|
|
11779
|
+
@jsii.member(jsii_name="renderProperties")
|
|
11780
|
+
def _render_properties(
|
|
11781
|
+
self,
|
|
11782
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
11783
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
11784
|
+
'''
|
|
11785
|
+
:param props: -
|
|
11786
|
+
'''
|
|
11787
|
+
if __debug__:
|
|
11788
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bad9fae448f7834a64bdc6ac75126955a5d220edd03996d839f25e40662c1840)
|
|
11789
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
11790
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
11791
|
+
|
|
11792
|
+
@jsii.python.classproperty
|
|
11793
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
11794
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
11795
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
11796
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
11797
|
+
|
|
11798
|
+
@builtins.property
|
|
11799
|
+
@jsii.member(jsii_name="attrCreatedAt")
|
|
11800
|
+
def attr_created_at(self) -> builtins.str:
|
|
11801
|
+
'''The timestamp of when this Amazon DataZone metadata form type was created.
|
|
11802
|
+
|
|
11803
|
+
:cloudformationAttribute: CreatedAt
|
|
11804
|
+
'''
|
|
11805
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
11806
|
+
|
|
11807
|
+
@builtins.property
|
|
11808
|
+
@jsii.member(jsii_name="attrCreatedBy")
|
|
11809
|
+
def attr_created_by(self) -> builtins.str:
|
|
11810
|
+
'''The user who created this Amazon DataZone metadata form type.
|
|
11811
|
+
|
|
11812
|
+
:cloudformationAttribute: CreatedBy
|
|
11813
|
+
'''
|
|
11814
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreatedBy"))
|
|
11815
|
+
|
|
11816
|
+
@builtins.property
|
|
11817
|
+
@jsii.member(jsii_name="attrDomainId")
|
|
11818
|
+
def attr_domain_id(self) -> builtins.str:
|
|
11819
|
+
'''The ID of the Amazon DataZone domain in which this metadata form type is created.
|
|
11820
|
+
|
|
11821
|
+
:cloudformationAttribute: DomainId
|
|
11822
|
+
'''
|
|
11823
|
+
return typing.cast(builtins.str, jsii.get(self, "attrDomainId"))
|
|
11824
|
+
|
|
11825
|
+
@builtins.property
|
|
11826
|
+
@jsii.member(jsii_name="attrFormTypeIdentifier")
|
|
11827
|
+
def attr_form_type_identifier(self) -> builtins.str:
|
|
11828
|
+
'''The ID of this Amazon DataZone metadata form type.
|
|
11829
|
+
|
|
11830
|
+
:cloudformationAttribute: FormTypeIdentifier
|
|
11831
|
+
'''
|
|
11832
|
+
return typing.cast(builtins.str, jsii.get(self, "attrFormTypeIdentifier"))
|
|
11833
|
+
|
|
11834
|
+
@builtins.property
|
|
11835
|
+
@jsii.member(jsii_name="attrOwningProjectId")
|
|
11836
|
+
def attr_owning_project_id(self) -> builtins.str:
|
|
11837
|
+
'''The ID of the project that owns this Amazon DataZone metadata form type.
|
|
11838
|
+
|
|
11839
|
+
:cloudformationAttribute: OwningProjectId
|
|
11840
|
+
'''
|
|
11841
|
+
return typing.cast(builtins.str, jsii.get(self, "attrOwningProjectId"))
|
|
11842
|
+
|
|
11843
|
+
@builtins.property
|
|
11844
|
+
@jsii.member(jsii_name="attrRevision")
|
|
11845
|
+
def attr_revision(self) -> builtins.str:
|
|
11846
|
+
'''The revision of this Amazon DataZone metadata form type.
|
|
11847
|
+
|
|
11848
|
+
:cloudformationAttribute: Revision
|
|
11849
|
+
'''
|
|
11850
|
+
return typing.cast(builtins.str, jsii.get(self, "attrRevision"))
|
|
11851
|
+
|
|
11852
|
+
@builtins.property
|
|
11853
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
11854
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
11855
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
11856
|
+
|
|
11857
|
+
@builtins.property
|
|
11858
|
+
@jsii.member(jsii_name="formTypeRef")
|
|
11859
|
+
def form_type_ref(self) -> FormTypeReference:
|
|
11860
|
+
'''A reference to a FormType resource.'''
|
|
11861
|
+
return typing.cast(FormTypeReference, jsii.get(self, "formTypeRef"))
|
|
11862
|
+
|
|
11863
|
+
@builtins.property
|
|
11864
|
+
@jsii.member(jsii_name="domainIdentifier")
|
|
11865
|
+
def domain_identifier(self) -> builtins.str:
|
|
11866
|
+
'''The ID of the Amazon DataZone domain in which this metadata form type is created.'''
|
|
11867
|
+
return typing.cast(builtins.str, jsii.get(self, "domainIdentifier"))
|
|
11868
|
+
|
|
11869
|
+
@domain_identifier.setter
|
|
11870
|
+
def domain_identifier(self, value: builtins.str) -> None:
|
|
11871
|
+
if __debug__:
|
|
11872
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2b46e3b1065bc071b7c178d8c453b0749af37045869bbbf51fcbc9495351a9c8)
|
|
11873
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
11874
|
+
jsii.set(self, "domainIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
11875
|
+
|
|
11876
|
+
@builtins.property
|
|
11877
|
+
@jsii.member(jsii_name="model")
|
|
11878
|
+
def model(self) -> typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"]:
|
|
11879
|
+
'''Indicates the smithy model of the API.'''
|
|
11880
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"], jsii.get(self, "model"))
|
|
11881
|
+
|
|
11882
|
+
@model.setter
|
|
11883
|
+
def model(
|
|
11884
|
+
self,
|
|
11885
|
+
value: typing.Union[_IResolvable_da3f097b, "CfnFormType.ModelProperty"],
|
|
11886
|
+
) -> None:
|
|
11887
|
+
if __debug__:
|
|
11888
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b3f1c11a2e22affbdfa75c3598ef0670bfa54222c19e080d1f27477fceab0b08)
|
|
11889
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
11890
|
+
jsii.set(self, "model", value) # pyright: ignore[reportArgumentType]
|
|
11891
|
+
|
|
11892
|
+
@builtins.property
|
|
11893
|
+
@jsii.member(jsii_name="name")
|
|
11894
|
+
def name(self) -> builtins.str:
|
|
11895
|
+
'''The name of this Amazon DataZone metadata form type.'''
|
|
11896
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
11897
|
+
|
|
11898
|
+
@name.setter
|
|
11899
|
+
def name(self, value: builtins.str) -> None:
|
|
11900
|
+
if __debug__:
|
|
11901
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4db67c3acb5b6a0032679e096fc2e3c4890bed280f7a8375900977292223c9c9)
|
|
11902
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
11903
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
11904
|
+
|
|
11905
|
+
@builtins.property
|
|
11906
|
+
@jsii.member(jsii_name="owningProjectIdentifier")
|
|
11907
|
+
def owning_project_identifier(self) -> builtins.str:
|
|
11908
|
+
'''The ID of the Amazon DataZone project that owns this metadata form type.'''
|
|
11909
|
+
return typing.cast(builtins.str, jsii.get(self, "owningProjectIdentifier"))
|
|
11910
|
+
|
|
11911
|
+
@owning_project_identifier.setter
|
|
11912
|
+
def owning_project_identifier(self, value: builtins.str) -> None:
|
|
11913
|
+
if __debug__:
|
|
11914
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ef621e28b6e4f4b3ff8d056fd5590e62a42d672e8eb7f3178e4433052f99b78f)
|
|
11915
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
11916
|
+
jsii.set(self, "owningProjectIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
11917
|
+
|
|
11918
|
+
@builtins.property
|
|
11919
|
+
@jsii.member(jsii_name="description")
|
|
11920
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
11921
|
+
'''The description of this Amazon DataZone metadata form type.'''
|
|
11922
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
11923
|
+
|
|
11924
|
+
@description.setter
|
|
11925
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
11926
|
+
if __debug__:
|
|
11927
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9e202387db1832295d6567c2f10923cb43415fa7c54595651d97565f41d96ac5)
|
|
11928
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
11929
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
11930
|
+
|
|
11931
|
+
@builtins.property
|
|
11932
|
+
@jsii.member(jsii_name="status")
|
|
11933
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
11934
|
+
'''The status of this Amazon DataZone metadata form type.'''
|
|
11935
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "status"))
|
|
11936
|
+
|
|
11937
|
+
@status.setter
|
|
11938
|
+
def status(self, value: typing.Optional[builtins.str]) -> None:
|
|
11939
|
+
if __debug__:
|
|
11940
|
+
type_hints = typing.get_type_hints(_typecheckingstub__020adc02f22142ea5477f1a153c01137dede2ab4e6371a06591cf06f6c428d61)
|
|
11941
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
11942
|
+
jsii.set(self, "status", value) # pyright: ignore[reportArgumentType]
|
|
11943
|
+
|
|
11944
|
+
@jsii.data_type(
|
|
11945
|
+
jsii_type="aws-cdk-lib.aws_datazone.CfnFormType.ModelProperty",
|
|
11946
|
+
jsii_struct_bases=[],
|
|
11947
|
+
name_mapping={"smithy": "smithy"},
|
|
11948
|
+
)
|
|
11949
|
+
class ModelProperty:
|
|
11950
|
+
def __init__(self, *, smithy: typing.Optional[builtins.str] = None) -> None:
|
|
11951
|
+
'''Indicates the smithy model of the API.
|
|
11952
|
+
|
|
11953
|
+
:param smithy:
|
|
11954
|
+
|
|
11955
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-formtype-model.html
|
|
11956
|
+
:exampleMetadata: fixture=_generated
|
|
11957
|
+
|
|
11958
|
+
Example::
|
|
11959
|
+
|
|
11960
|
+
# The code below shows an example of how to instantiate this type.
|
|
11961
|
+
# The values are placeholders you should change.
|
|
11962
|
+
from aws_cdk import aws_datazone as datazone
|
|
11963
|
+
|
|
11964
|
+
model_property = datazone.CfnFormType.ModelProperty(
|
|
11965
|
+
smithy="smithy"
|
|
11966
|
+
)
|
|
11967
|
+
'''
|
|
11968
|
+
if __debug__:
|
|
11969
|
+
type_hints = typing.get_type_hints(_typecheckingstub__eaaec1a7e6bb1ed0f7ee04f5ba73618200b18c1dc4719937dd04e1c76c1d7854)
|
|
11970
|
+
check_type(argname="argument smithy", value=smithy, expected_type=type_hints["smithy"])
|
|
11971
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
11972
|
+
if smithy is not None:
|
|
11973
|
+
self._values["smithy"] = smithy
|
|
11974
|
+
|
|
11975
|
+
@builtins.property
|
|
11976
|
+
def smithy(self) -> typing.Optional[builtins.str]:
|
|
11977
|
+
'''
|
|
11978
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-formtype-model.html#cfn-datazone-formtype-model-smithy
|
|
11979
|
+
'''
|
|
11980
|
+
result = self._values.get("smithy")
|
|
11981
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
11982
|
+
|
|
11983
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
11984
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
11985
|
+
|
|
11986
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
11987
|
+
return not (rhs == self)
|
|
11988
|
+
|
|
11989
|
+
def __repr__(self) -> str:
|
|
11990
|
+
return "ModelProperty(%s)" % ", ".join(
|
|
11991
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
11992
|
+
)
|
|
11993
|
+
|
|
11994
|
+
|
|
11448
11995
|
@jsii.implements(_IInspectable_c2943556, IGroupProfileRef)
|
|
11449
11996
|
class CfnGroupProfile(
|
|
11450
11997
|
_CfnResource_9df397a6,
|
|
@@ -11702,6 +12249,22 @@ class CfnOwner(
|
|
|
11702
12249
|
'''The CloudFormation resource type name for this resource class.'''
|
|
11703
12250
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
11704
12251
|
|
|
12252
|
+
@builtins.property
|
|
12253
|
+
@jsii.member(jsii_name="attrOwnerIdentifier")
|
|
12254
|
+
def attr_owner_identifier(self) -> builtins.str:
|
|
12255
|
+
'''
|
|
12256
|
+
:cloudformationAttribute: OwnerIdentifier
|
|
12257
|
+
'''
|
|
12258
|
+
return typing.cast(builtins.str, jsii.get(self, "attrOwnerIdentifier"))
|
|
12259
|
+
|
|
12260
|
+
@builtins.property
|
|
12261
|
+
@jsii.member(jsii_name="attrOwnerType")
|
|
12262
|
+
def attr_owner_type(self) -> builtins.str:
|
|
12263
|
+
'''
|
|
12264
|
+
:cloudformationAttribute: OwnerType
|
|
12265
|
+
'''
|
|
12266
|
+
return typing.cast(builtins.str, jsii.get(self, "attrOwnerType"))
|
|
12267
|
+
|
|
11705
12268
|
@builtins.property
|
|
11706
12269
|
@jsii.member(jsii_name="cfnProperties")
|
|
11707
12270
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -13165,7 +13728,7 @@ class CfnPolicyGrant(
|
|
|
13165
13728
|
:param create_environment_from_blueprint: The details of the policy of creating an environment.
|
|
13166
13729
|
:param create_environment_profile: Specifies that this is a create environment profile policy.
|
|
13167
13730
|
:param create_form_type: Specifies that this is a create form type policy.
|
|
13168
|
-
:param create_glossary:
|
|
13731
|
+
:param create_glossary: Specifies that this is a create glossary policy.
|
|
13169
13732
|
:param create_project: Specifies that this is a create project policy.
|
|
13170
13733
|
:param create_project_from_project_profile: Specifies whether to create a project from project profile.
|
|
13171
13734
|
:param delegate_create_environment_profile: Specifies that this is the delegation of the create environment profile policy.
|
|
@@ -13342,7 +13905,8 @@ class CfnPolicyGrant(
|
|
|
13342
13905
|
def create_glossary(
|
|
13343
13906
|
self,
|
|
13344
13907
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPolicyGrant.CreateGlossaryPolicyGrantDetailProperty"]]:
|
|
13345
|
-
'''
|
|
13908
|
+
'''Specifies that this is a create glossary policy.
|
|
13909
|
+
|
|
13346
13910
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-policygrant-policygrantdetail.html#cfn-datazone-policygrant-policygrantdetail-createglossary
|
|
13347
13911
|
'''
|
|
13348
13912
|
result = self._values.get("create_glossary")
|
|
@@ -14332,6 +14896,22 @@ class CfnProjectMembership(
|
|
|
14332
14896
|
'''The CloudFormation resource type name for this resource class.'''
|
|
14333
14897
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
14334
14898
|
|
|
14899
|
+
@builtins.property
|
|
14900
|
+
@jsii.member(jsii_name="attrMemberIdentifier")
|
|
14901
|
+
def attr_member_identifier(self) -> builtins.str:
|
|
14902
|
+
'''
|
|
14903
|
+
:cloudformationAttribute: MemberIdentifier
|
|
14904
|
+
'''
|
|
14905
|
+
return typing.cast(builtins.str, jsii.get(self, "attrMemberIdentifier"))
|
|
14906
|
+
|
|
14907
|
+
@builtins.property
|
|
14908
|
+
@jsii.member(jsii_name="attrMemberIdentifierType")
|
|
14909
|
+
def attr_member_identifier_type(self) -> builtins.str:
|
|
14910
|
+
'''
|
|
14911
|
+
:cloudformationAttribute: MemberIdentifierType
|
|
14912
|
+
'''
|
|
14913
|
+
return typing.cast(builtins.str, jsii.get(self, "attrMemberIdentifierType"))
|
|
14914
|
+
|
|
14335
14915
|
@builtins.property
|
|
14336
14916
|
@jsii.member(jsii_name="cfnProperties")
|
|
14337
14917
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -16072,6 +16652,8 @@ __all__ = [
|
|
|
16072
16652
|
"CfnEnvironmentProfile",
|
|
16073
16653
|
"CfnEnvironmentProfileProps",
|
|
16074
16654
|
"CfnEnvironmentProps",
|
|
16655
|
+
"CfnFormType",
|
|
16656
|
+
"CfnFormTypeProps",
|
|
16075
16657
|
"CfnGroupProfile",
|
|
16076
16658
|
"CfnGroupProfileProps",
|
|
16077
16659
|
"CfnOwner",
|
|
@@ -16096,6 +16678,7 @@ __all__ = [
|
|
|
16096
16678
|
"EnvironmentBlueprintConfigurationReference",
|
|
16097
16679
|
"EnvironmentProfileReference",
|
|
16098
16680
|
"EnvironmentReference",
|
|
16681
|
+
"FormTypeReference",
|
|
16099
16682
|
"GroupProfileReference",
|
|
16100
16683
|
"IConnectionRef",
|
|
16101
16684
|
"IDataSourceRef",
|
|
@@ -16105,6 +16688,7 @@ __all__ = [
|
|
|
16105
16688
|
"IEnvironmentBlueprintConfigurationRef",
|
|
16106
16689
|
"IEnvironmentProfileRef",
|
|
16107
16690
|
"IEnvironmentRef",
|
|
16691
|
+
"IFormTypeRef",
|
|
16108
16692
|
"IGroupProfileRef",
|
|
16109
16693
|
"IOwnerRef",
|
|
16110
16694
|
"IPolicyGrantRef",
|
|
@@ -16235,6 +16819,18 @@ def _typecheckingstub__52cb17aae6cf0b0cbeef010a71f7f53573517f0a8e973b5881ae34c16
|
|
|
16235
16819
|
"""Type checking stubs"""
|
|
16236
16820
|
pass
|
|
16237
16821
|
|
|
16822
|
+
def _typecheckingstub__1d5d64f9db9d5db2b48658391fb0d79863073acb36e66a1bbe210ae89102e089(
|
|
16823
|
+
*,
|
|
16824
|
+
domain_identifier: builtins.str,
|
|
16825
|
+
model: typing.Union[_IResolvable_da3f097b, typing.Union[CfnFormType.ModelProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
16826
|
+
name: builtins.str,
|
|
16827
|
+
owning_project_identifier: builtins.str,
|
|
16828
|
+
description: typing.Optional[builtins.str] = None,
|
|
16829
|
+
status: typing.Optional[builtins.str] = None,
|
|
16830
|
+
) -> None:
|
|
16831
|
+
"""Type checking stubs"""
|
|
16832
|
+
pass
|
|
16833
|
+
|
|
16238
16834
|
def _typecheckingstub__4f4f2d05f4850cb07cd88e6e5af875d2c16fa3ae4bcbc384b9a51f7f0d0ca2e4(
|
|
16239
16835
|
*,
|
|
16240
16836
|
domain_identifier: builtins.str,
|
|
@@ -16392,6 +16988,14 @@ def _typecheckingstub__370a2d27cc92ceba84e36d72845193f2510637d09de1d67c6b2b2984d
|
|
|
16392
16988
|
"""Type checking stubs"""
|
|
16393
16989
|
pass
|
|
16394
16990
|
|
|
16991
|
+
def _typecheckingstub__7e9137523d26d74e056985919cf6df2d81e05562c4039a5d385b18594d48b472(
|
|
16992
|
+
*,
|
|
16993
|
+
domain_identifier: builtins.str,
|
|
16994
|
+
form_type_identifier: builtins.str,
|
|
16995
|
+
) -> None:
|
|
16996
|
+
"""Type checking stubs"""
|
|
16997
|
+
pass
|
|
16998
|
+
|
|
16395
16999
|
def _typecheckingstub__6ce66ea6bf7b5361f65d65ddde4876e6193bf5469d720e89d59399ffb9a6ab0e(
|
|
16396
17000
|
*,
|
|
16397
17001
|
domain_id: builtins.str,
|
|
@@ -17450,6 +18054,75 @@ def _typecheckingstub__7d9a0947f6555aed5fe498e71fb0065f6dff69f004c35341f60523d1d
|
|
|
17450
18054
|
"""Type checking stubs"""
|
|
17451
18055
|
pass
|
|
17452
18056
|
|
|
18057
|
+
def _typecheckingstub__f81071a1a99e5415d6626de96c93bf3bae9973b224056b0dd081b7dea58b9c42(
|
|
18058
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
18059
|
+
id: builtins.str,
|
|
18060
|
+
*,
|
|
18061
|
+
domain_identifier: builtins.str,
|
|
18062
|
+
model: typing.Union[_IResolvable_da3f097b, typing.Union[CfnFormType.ModelProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
18063
|
+
name: builtins.str,
|
|
18064
|
+
owning_project_identifier: builtins.str,
|
|
18065
|
+
description: typing.Optional[builtins.str] = None,
|
|
18066
|
+
status: typing.Optional[builtins.str] = None,
|
|
18067
|
+
) -> None:
|
|
18068
|
+
"""Type checking stubs"""
|
|
18069
|
+
pass
|
|
18070
|
+
|
|
18071
|
+
def _typecheckingstub__b464c1e8d9caba7ca12d282335a590316faa2a9e44c06ef3fcfcf2bf658e2f59(
|
|
18072
|
+
inspector: _TreeInspector_488e0dd5,
|
|
18073
|
+
) -> None:
|
|
18074
|
+
"""Type checking stubs"""
|
|
18075
|
+
pass
|
|
18076
|
+
|
|
18077
|
+
def _typecheckingstub__bad9fae448f7834a64bdc6ac75126955a5d220edd03996d839f25e40662c1840(
|
|
18078
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
18079
|
+
) -> None:
|
|
18080
|
+
"""Type checking stubs"""
|
|
18081
|
+
pass
|
|
18082
|
+
|
|
18083
|
+
def _typecheckingstub__2b46e3b1065bc071b7c178d8c453b0749af37045869bbbf51fcbc9495351a9c8(
|
|
18084
|
+
value: builtins.str,
|
|
18085
|
+
) -> None:
|
|
18086
|
+
"""Type checking stubs"""
|
|
18087
|
+
pass
|
|
18088
|
+
|
|
18089
|
+
def _typecheckingstub__b3f1c11a2e22affbdfa75c3598ef0670bfa54222c19e080d1f27477fceab0b08(
|
|
18090
|
+
value: typing.Union[_IResolvable_da3f097b, CfnFormType.ModelProperty],
|
|
18091
|
+
) -> None:
|
|
18092
|
+
"""Type checking stubs"""
|
|
18093
|
+
pass
|
|
18094
|
+
|
|
18095
|
+
def _typecheckingstub__4db67c3acb5b6a0032679e096fc2e3c4890bed280f7a8375900977292223c9c9(
|
|
18096
|
+
value: builtins.str,
|
|
18097
|
+
) -> None:
|
|
18098
|
+
"""Type checking stubs"""
|
|
18099
|
+
pass
|
|
18100
|
+
|
|
18101
|
+
def _typecheckingstub__ef621e28b6e4f4b3ff8d056fd5590e62a42d672e8eb7f3178e4433052f99b78f(
|
|
18102
|
+
value: builtins.str,
|
|
18103
|
+
) -> None:
|
|
18104
|
+
"""Type checking stubs"""
|
|
18105
|
+
pass
|
|
18106
|
+
|
|
18107
|
+
def _typecheckingstub__9e202387db1832295d6567c2f10923cb43415fa7c54595651d97565f41d96ac5(
|
|
18108
|
+
value: typing.Optional[builtins.str],
|
|
18109
|
+
) -> None:
|
|
18110
|
+
"""Type checking stubs"""
|
|
18111
|
+
pass
|
|
18112
|
+
|
|
18113
|
+
def _typecheckingstub__020adc02f22142ea5477f1a153c01137dede2ab4e6371a06591cf06f6c428d61(
|
|
18114
|
+
value: typing.Optional[builtins.str],
|
|
18115
|
+
) -> None:
|
|
18116
|
+
"""Type checking stubs"""
|
|
18117
|
+
pass
|
|
18118
|
+
|
|
18119
|
+
def _typecheckingstub__eaaec1a7e6bb1ed0f7ee04f5ba73618200b18c1dc4719937dd04e1c76c1d7854(
|
|
18120
|
+
*,
|
|
18121
|
+
smithy: typing.Optional[builtins.str] = None,
|
|
18122
|
+
) -> None:
|
|
18123
|
+
"""Type checking stubs"""
|
|
18124
|
+
pass
|
|
18125
|
+
|
|
17453
18126
|
def _typecheckingstub__6bccafb3ac5ccb0c73cc0aaea6cf365a78e841d8d731ffbfa84165d7f8100f7a(
|
|
17454
18127
|
scope: _constructs_77d1e7e8.Construct,
|
|
17455
18128
|
id: builtins.str,
|