aws-cdk-lib 2.198.0__py3-none-any.whl → 2.199.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.198.0.jsii.tgz → aws-cdk-lib@2.199.0.jsii.tgz} +0 -0
- aws_cdk/aws_appconfig/__init__.py +296 -48
- aws_cdk/aws_aps/__init__.py +343 -0
- aws_cdk/aws_bedrock/__init__.py +387 -4
- aws_cdk/aws_ec2/__init__.py +19 -8
- aws_cdk/aws_ecs_patterns/__init__.py +49 -3
- aws_cdk/aws_eks/__init__.py +40 -9
- aws_cdk/aws_events_targets/__init__.py +78 -1
- aws_cdk/aws_rds/__init__.py +6 -6
- aws_cdk/aws_ses/__init__.py +249 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +1502 -2
- aws_cdk/aws_vpclattice/__init__.py +219 -209
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.199.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.199.0.dist-info}/RECORD +19 -19
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.199.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.199.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.199.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.199.0.dist-info}/top_level.txt +0 -0
|
@@ -1297,8 +1297,11 @@ class CfnResourceConfiguration(
|
|
|
1297
1297
|
from aws_cdk import aws_vpclattice as vpclattice
|
|
1298
1298
|
|
|
1299
1299
|
cfn_resource_configuration = vpclattice.CfnResourceConfiguration(self, "MyCfnResourceConfiguration",
|
|
1300
|
-
allow_association_to_sharable_service_network=False,
|
|
1301
1300
|
name="name",
|
|
1301
|
+
resource_configuration_type="resourceConfigurationType",
|
|
1302
|
+
|
|
1303
|
+
# the properties below are optional
|
|
1304
|
+
allow_association_to_sharable_service_network=False,
|
|
1302
1305
|
port_ranges=["portRanges"],
|
|
1303
1306
|
protocol_type="protocolType",
|
|
1304
1307
|
resource_configuration_auth_type="resourceConfigurationAuthType",
|
|
@@ -1311,7 +1314,6 @@ class CfnResourceConfiguration(
|
|
|
1311
1314
|
ip_resource="ipResource"
|
|
1312
1315
|
),
|
|
1313
1316
|
resource_configuration_group_id="resourceConfigurationGroupId",
|
|
1314
|
-
resource_configuration_type="resourceConfigurationType",
|
|
1315
1317
|
resource_gateway_id="resourceGatewayId",
|
|
1316
1318
|
tags=[CfnTag(
|
|
1317
1319
|
key="key",
|
|
@@ -1325,28 +1327,28 @@ class CfnResourceConfiguration(
|
|
|
1325
1327
|
scope: _constructs_77d1e7e8.Construct,
|
|
1326
1328
|
id: builtins.str,
|
|
1327
1329
|
*,
|
|
1330
|
+
name: builtins.str,
|
|
1331
|
+
resource_configuration_type: builtins.str,
|
|
1328
1332
|
allow_association_to_sharable_service_network: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1329
|
-
name: typing.Optional[builtins.str] = None,
|
|
1330
1333
|
port_ranges: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1331
1334
|
protocol_type: typing.Optional[builtins.str] = None,
|
|
1332
1335
|
resource_configuration_auth_type: typing.Optional[builtins.str] = None,
|
|
1333
1336
|
resource_configuration_definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnResourceConfiguration.ResourceConfigurationDefinitionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1334
1337
|
resource_configuration_group_id: typing.Optional[builtins.str] = None,
|
|
1335
|
-
resource_configuration_type: typing.Optional[builtins.str] = None,
|
|
1336
1338
|
resource_gateway_id: typing.Optional[builtins.str] = None,
|
|
1337
1339
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1338
1340
|
) -> None:
|
|
1339
1341
|
'''
|
|
1340
1342
|
:param scope: Scope in which this resource is defined.
|
|
1341
1343
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1342
|
-
:param allow_association_to_sharable_service_network: Specifies whether the resource configuration can be associated with a sharable service network.
|
|
1343
1344
|
:param name: The name of the resource configuration.
|
|
1345
|
+
:param resource_configuration_type: The type of resource configuration. A resource configuration can be one of the following types:. - *SINGLE* - A single resource. - *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration. - *CHILD* - A single resource that is part of a group resource configuration. - *ARN* - An AWS resource.
|
|
1346
|
+
:param allow_association_to_sharable_service_network: Specifies whether the resource configuration can be associated with a sharable service network.
|
|
1344
1347
|
:param port_ranges: (SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example: 1-65535). You can separate port ranges using commas (for example: 1,2,22-30).
|
|
1345
1348
|
:param protocol_type: (SINGLE, GROUP) The protocol accepted by the resource configuration.
|
|
1346
1349
|
:param resource_configuration_auth_type: The auth type for the resource configuration.
|
|
1347
1350
|
:param resource_configuration_definition: Identifies the resource configuration in one of the following ways:. - *Amazon Resource Name (ARN)* - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN. - *Domain name* - Any domain name that is publicly resolvable. - *IP address* - For IPv4 and IPv6, only IP addresses in the VPC are supported.
|
|
1348
1351
|
:param resource_configuration_group_id: The ID of the group resource configuration.
|
|
1349
|
-
:param resource_configuration_type: The type of resource configuration. A resource configuration can be one of the following types:. - *SINGLE* - A single resource. - *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration. - *CHILD* - A single resource that is part of a group resource configuration. - *ARN* - An AWS resource.
|
|
1350
1352
|
:param resource_gateway_id: The ID of the resource gateway.
|
|
1351
1353
|
:param tags: The tags for the resource configuration.
|
|
1352
1354
|
'''
|
|
@@ -1355,14 +1357,14 @@ class CfnResourceConfiguration(
|
|
|
1355
1357
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1356
1358
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1357
1359
|
props = CfnResourceConfigurationProps(
|
|
1358
|
-
allow_association_to_sharable_service_network=allow_association_to_sharable_service_network,
|
|
1359
1360
|
name=name,
|
|
1361
|
+
resource_configuration_type=resource_configuration_type,
|
|
1362
|
+
allow_association_to_sharable_service_network=allow_association_to_sharable_service_network,
|
|
1360
1363
|
port_ranges=port_ranges,
|
|
1361
1364
|
protocol_type=protocol_type,
|
|
1362
1365
|
resource_configuration_auth_type=resource_configuration_auth_type,
|
|
1363
1366
|
resource_configuration_definition=resource_configuration_definition,
|
|
1364
1367
|
resource_configuration_group_id=resource_configuration_group_id,
|
|
1365
|
-
resource_configuration_type=resource_configuration_type,
|
|
1366
1368
|
resource_gateway_id=resource_gateway_id,
|
|
1367
1369
|
tags=tags,
|
|
1368
1370
|
)
|
|
@@ -1428,6 +1430,35 @@ class CfnResourceConfiguration(
|
|
|
1428
1430
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1429
1431
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
1430
1432
|
|
|
1433
|
+
@builtins.property
|
|
1434
|
+
@jsii.member(jsii_name="name")
|
|
1435
|
+
def name(self) -> builtins.str:
|
|
1436
|
+
'''The name of the resource configuration.'''
|
|
1437
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
1438
|
+
|
|
1439
|
+
@name.setter
|
|
1440
|
+
def name(self, value: builtins.str) -> None:
|
|
1441
|
+
if __debug__:
|
|
1442
|
+
type_hints = typing.get_type_hints(_typecheckingstub__05c6c80cd49033d3aa0afe190c923dcae73156dcab6ce48936861ca4ccc73ef0)
|
|
1443
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1444
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
1445
|
+
|
|
1446
|
+
@builtins.property
|
|
1447
|
+
@jsii.member(jsii_name="resourceConfigurationType")
|
|
1448
|
+
def resource_configuration_type(self) -> builtins.str:
|
|
1449
|
+
'''The type of resource configuration.
|
|
1450
|
+
|
|
1451
|
+
A resource configuration can be one of the following types:.
|
|
1452
|
+
'''
|
|
1453
|
+
return typing.cast(builtins.str, jsii.get(self, "resourceConfigurationType"))
|
|
1454
|
+
|
|
1455
|
+
@resource_configuration_type.setter
|
|
1456
|
+
def resource_configuration_type(self, value: builtins.str) -> None:
|
|
1457
|
+
if __debug__:
|
|
1458
|
+
type_hints = typing.get_type_hints(_typecheckingstub__78c78698636e3ca61354c53cb8cdfc165b65a1ae7d941087c00f199b89c59f80)
|
|
1459
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1460
|
+
jsii.set(self, "resourceConfigurationType", value) # pyright: ignore[reportArgumentType]
|
|
1461
|
+
|
|
1431
1462
|
@builtins.property
|
|
1432
1463
|
@jsii.member(jsii_name="allowAssociationToSharableServiceNetwork")
|
|
1433
1464
|
def allow_association_to_sharable_service_network(
|
|
@@ -1446,19 +1477,6 @@ class CfnResourceConfiguration(
|
|
|
1446
1477
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1447
1478
|
jsii.set(self, "allowAssociationToSharableServiceNetwork", value) # pyright: ignore[reportArgumentType]
|
|
1448
1479
|
|
|
1449
|
-
@builtins.property
|
|
1450
|
-
@jsii.member(jsii_name="name")
|
|
1451
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
1452
|
-
'''The name of the resource configuration.'''
|
|
1453
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
1454
|
-
|
|
1455
|
-
@name.setter
|
|
1456
|
-
def name(self, value: typing.Optional[builtins.str]) -> None:
|
|
1457
|
-
if __debug__:
|
|
1458
|
-
type_hints = typing.get_type_hints(_typecheckingstub__05c6c80cd49033d3aa0afe190c923dcae73156dcab6ce48936861ca4ccc73ef0)
|
|
1459
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1460
|
-
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
1461
|
-
|
|
1462
1480
|
@builtins.property
|
|
1463
1481
|
@jsii.member(jsii_name="portRanges")
|
|
1464
1482
|
def port_ranges(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -1535,22 +1553,6 @@ class CfnResourceConfiguration(
|
|
|
1535
1553
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1536
1554
|
jsii.set(self, "resourceConfigurationGroupId", value) # pyright: ignore[reportArgumentType]
|
|
1537
1555
|
|
|
1538
|
-
@builtins.property
|
|
1539
|
-
@jsii.member(jsii_name="resourceConfigurationType")
|
|
1540
|
-
def resource_configuration_type(self) -> typing.Optional[builtins.str]:
|
|
1541
|
-
'''The type of resource configuration.
|
|
1542
|
-
|
|
1543
|
-
A resource configuration can be one of the following types:.
|
|
1544
|
-
'''
|
|
1545
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "resourceConfigurationType"))
|
|
1546
|
-
|
|
1547
|
-
@resource_configuration_type.setter
|
|
1548
|
-
def resource_configuration_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
1549
|
-
if __debug__:
|
|
1550
|
-
type_hints = typing.get_type_hints(_typecheckingstub__78c78698636e3ca61354c53cb8cdfc165b65a1ae7d941087c00f199b89c59f80)
|
|
1551
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1552
|
-
jsii.set(self, "resourceConfigurationType", value) # pyright: ignore[reportArgumentType]
|
|
1553
|
-
|
|
1554
1556
|
@builtins.property
|
|
1555
1557
|
@jsii.member(jsii_name="resourceGatewayId")
|
|
1556
1558
|
def resource_gateway_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -1755,14 +1757,14 @@ class CfnResourceConfiguration(
|
|
|
1755
1757
|
jsii_type="aws-cdk-lib.aws_vpclattice.CfnResourceConfigurationProps",
|
|
1756
1758
|
jsii_struct_bases=[],
|
|
1757
1759
|
name_mapping={
|
|
1758
|
-
"allow_association_to_sharable_service_network": "allowAssociationToSharableServiceNetwork",
|
|
1759
1760
|
"name": "name",
|
|
1761
|
+
"resource_configuration_type": "resourceConfigurationType",
|
|
1762
|
+
"allow_association_to_sharable_service_network": "allowAssociationToSharableServiceNetwork",
|
|
1760
1763
|
"port_ranges": "portRanges",
|
|
1761
1764
|
"protocol_type": "protocolType",
|
|
1762
1765
|
"resource_configuration_auth_type": "resourceConfigurationAuthType",
|
|
1763
1766
|
"resource_configuration_definition": "resourceConfigurationDefinition",
|
|
1764
1767
|
"resource_configuration_group_id": "resourceConfigurationGroupId",
|
|
1765
|
-
"resource_configuration_type": "resourceConfigurationType",
|
|
1766
1768
|
"resource_gateway_id": "resourceGatewayId",
|
|
1767
1769
|
"tags": "tags",
|
|
1768
1770
|
},
|
|
@@ -1771,27 +1773,27 @@ class CfnResourceConfigurationProps:
|
|
|
1771
1773
|
def __init__(
|
|
1772
1774
|
self,
|
|
1773
1775
|
*,
|
|
1776
|
+
name: builtins.str,
|
|
1777
|
+
resource_configuration_type: builtins.str,
|
|
1774
1778
|
allow_association_to_sharable_service_network: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
1775
|
-
name: typing.Optional[builtins.str] = None,
|
|
1776
1779
|
port_ranges: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1777
1780
|
protocol_type: typing.Optional[builtins.str] = None,
|
|
1778
1781
|
resource_configuration_auth_type: typing.Optional[builtins.str] = None,
|
|
1779
1782
|
resource_configuration_definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnResourceConfiguration.ResourceConfigurationDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1780
1783
|
resource_configuration_group_id: typing.Optional[builtins.str] = None,
|
|
1781
|
-
resource_configuration_type: typing.Optional[builtins.str] = None,
|
|
1782
1784
|
resource_gateway_id: typing.Optional[builtins.str] = None,
|
|
1783
1785
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1784
1786
|
) -> None:
|
|
1785
1787
|
'''Properties for defining a ``CfnResourceConfiguration``.
|
|
1786
1788
|
|
|
1787
|
-
:param allow_association_to_sharable_service_network: Specifies whether the resource configuration can be associated with a sharable service network.
|
|
1788
1789
|
:param name: The name of the resource configuration.
|
|
1790
|
+
:param resource_configuration_type: The type of resource configuration. A resource configuration can be one of the following types:. - *SINGLE* - A single resource. - *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration. - *CHILD* - A single resource that is part of a group resource configuration. - *ARN* - An AWS resource.
|
|
1791
|
+
:param allow_association_to_sharable_service_network: Specifies whether the resource configuration can be associated with a sharable service network.
|
|
1789
1792
|
:param port_ranges: (SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example: 1-65535). You can separate port ranges using commas (for example: 1,2,22-30).
|
|
1790
1793
|
:param protocol_type: (SINGLE, GROUP) The protocol accepted by the resource configuration.
|
|
1791
1794
|
:param resource_configuration_auth_type: The auth type for the resource configuration.
|
|
1792
1795
|
:param resource_configuration_definition: Identifies the resource configuration in one of the following ways:. - *Amazon Resource Name (ARN)* - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN. - *Domain name* - Any domain name that is publicly resolvable. - *IP address* - For IPv4 and IPv6, only IP addresses in the VPC are supported.
|
|
1793
1796
|
:param resource_configuration_group_id: The ID of the group resource configuration.
|
|
1794
|
-
:param resource_configuration_type: The type of resource configuration. A resource configuration can be one of the following types:. - *SINGLE* - A single resource. - *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration. - *CHILD* - A single resource that is part of a group resource configuration. - *ARN* - An AWS resource.
|
|
1795
1797
|
:param resource_gateway_id: The ID of the resource gateway.
|
|
1796
1798
|
:param tags: The tags for the resource configuration.
|
|
1797
1799
|
|
|
@@ -1805,8 +1807,11 @@ class CfnResourceConfigurationProps:
|
|
|
1805
1807
|
from aws_cdk import aws_vpclattice as vpclattice
|
|
1806
1808
|
|
|
1807
1809
|
cfn_resource_configuration_props = vpclattice.CfnResourceConfigurationProps(
|
|
1808
|
-
allow_association_to_sharable_service_network=False,
|
|
1809
1810
|
name="name",
|
|
1811
|
+
resource_configuration_type="resourceConfigurationType",
|
|
1812
|
+
|
|
1813
|
+
# the properties below are optional
|
|
1814
|
+
allow_association_to_sharable_service_network=False,
|
|
1810
1815
|
port_ranges=["portRanges"],
|
|
1811
1816
|
protocol_type="protocolType",
|
|
1812
1817
|
resource_configuration_auth_type="resourceConfigurationAuthType",
|
|
@@ -1819,7 +1824,6 @@ class CfnResourceConfigurationProps:
|
|
|
1819
1824
|
ip_resource="ipResource"
|
|
1820
1825
|
),
|
|
1821
1826
|
resource_configuration_group_id="resourceConfigurationGroupId",
|
|
1822
|
-
resource_configuration_type="resourceConfigurationType",
|
|
1823
1827
|
resource_gateway_id="resourceGatewayId",
|
|
1824
1828
|
tags=[CfnTag(
|
|
1825
1829
|
key="key",
|
|
@@ -1829,21 +1833,22 @@ class CfnResourceConfigurationProps:
|
|
|
1829
1833
|
'''
|
|
1830
1834
|
if __debug__:
|
|
1831
1835
|
type_hints = typing.get_type_hints(_typecheckingstub__797cfcb00db81ec7627009ae5f799c38c09652aee4a602480e341f9e4049b098)
|
|
1832
|
-
check_type(argname="argument allow_association_to_sharable_service_network", value=allow_association_to_sharable_service_network, expected_type=type_hints["allow_association_to_sharable_service_network"])
|
|
1833
1836
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
1837
|
+
check_type(argname="argument resource_configuration_type", value=resource_configuration_type, expected_type=type_hints["resource_configuration_type"])
|
|
1838
|
+
check_type(argname="argument allow_association_to_sharable_service_network", value=allow_association_to_sharable_service_network, expected_type=type_hints["allow_association_to_sharable_service_network"])
|
|
1834
1839
|
check_type(argname="argument port_ranges", value=port_ranges, expected_type=type_hints["port_ranges"])
|
|
1835
1840
|
check_type(argname="argument protocol_type", value=protocol_type, expected_type=type_hints["protocol_type"])
|
|
1836
1841
|
check_type(argname="argument resource_configuration_auth_type", value=resource_configuration_auth_type, expected_type=type_hints["resource_configuration_auth_type"])
|
|
1837
1842
|
check_type(argname="argument resource_configuration_definition", value=resource_configuration_definition, expected_type=type_hints["resource_configuration_definition"])
|
|
1838
1843
|
check_type(argname="argument resource_configuration_group_id", value=resource_configuration_group_id, expected_type=type_hints["resource_configuration_group_id"])
|
|
1839
|
-
check_type(argname="argument resource_configuration_type", value=resource_configuration_type, expected_type=type_hints["resource_configuration_type"])
|
|
1840
1844
|
check_type(argname="argument resource_gateway_id", value=resource_gateway_id, expected_type=type_hints["resource_gateway_id"])
|
|
1841
1845
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1842
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1846
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1847
|
+
"name": name,
|
|
1848
|
+
"resource_configuration_type": resource_configuration_type,
|
|
1849
|
+
}
|
|
1843
1850
|
if allow_association_to_sharable_service_network is not None:
|
|
1844
1851
|
self._values["allow_association_to_sharable_service_network"] = allow_association_to_sharable_service_network
|
|
1845
|
-
if name is not None:
|
|
1846
|
-
self._values["name"] = name
|
|
1847
1852
|
if port_ranges is not None:
|
|
1848
1853
|
self._values["port_ranges"] = port_ranges
|
|
1849
1854
|
if protocol_type is not None:
|
|
@@ -1854,13 +1859,36 @@ class CfnResourceConfigurationProps:
|
|
|
1854
1859
|
self._values["resource_configuration_definition"] = resource_configuration_definition
|
|
1855
1860
|
if resource_configuration_group_id is not None:
|
|
1856
1861
|
self._values["resource_configuration_group_id"] = resource_configuration_group_id
|
|
1857
|
-
if resource_configuration_type is not None:
|
|
1858
|
-
self._values["resource_configuration_type"] = resource_configuration_type
|
|
1859
1862
|
if resource_gateway_id is not None:
|
|
1860
1863
|
self._values["resource_gateway_id"] = resource_gateway_id
|
|
1861
1864
|
if tags is not None:
|
|
1862
1865
|
self._values["tags"] = tags
|
|
1863
1866
|
|
|
1867
|
+
@builtins.property
|
|
1868
|
+
def name(self) -> builtins.str:
|
|
1869
|
+
'''The name of the resource configuration.
|
|
1870
|
+
|
|
1871
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-name
|
|
1872
|
+
'''
|
|
1873
|
+
result = self._values.get("name")
|
|
1874
|
+
assert result is not None, "Required property 'name' is missing"
|
|
1875
|
+
return typing.cast(builtins.str, result)
|
|
1876
|
+
|
|
1877
|
+
@builtins.property
|
|
1878
|
+
def resource_configuration_type(self) -> builtins.str:
|
|
1879
|
+
'''The type of resource configuration. A resource configuration can be one of the following types:.
|
|
1880
|
+
|
|
1881
|
+
- *SINGLE* - A single resource.
|
|
1882
|
+
- *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration.
|
|
1883
|
+
- *CHILD* - A single resource that is part of a group resource configuration.
|
|
1884
|
+
- *ARN* - An AWS resource.
|
|
1885
|
+
|
|
1886
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourceconfigurationtype
|
|
1887
|
+
'''
|
|
1888
|
+
result = self._values.get("resource_configuration_type")
|
|
1889
|
+
assert result is not None, "Required property 'resource_configuration_type' is missing"
|
|
1890
|
+
return typing.cast(builtins.str, result)
|
|
1891
|
+
|
|
1864
1892
|
@builtins.property
|
|
1865
1893
|
def allow_association_to_sharable_service_network(
|
|
1866
1894
|
self,
|
|
@@ -1872,15 +1900,6 @@ class CfnResourceConfigurationProps:
|
|
|
1872
1900
|
result = self._values.get("allow_association_to_sharable_service_network")
|
|
1873
1901
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
1874
1902
|
|
|
1875
|
-
@builtins.property
|
|
1876
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
1877
|
-
'''The name of the resource configuration.
|
|
1878
|
-
|
|
1879
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-name
|
|
1880
|
-
'''
|
|
1881
|
-
result = self._values.get("name")
|
|
1882
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
1883
|
-
|
|
1884
1903
|
@builtins.property
|
|
1885
1904
|
def port_ranges(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
1886
1905
|
'''(SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example: 1-65535).
|
|
@@ -1934,20 +1953,6 @@ class CfnResourceConfigurationProps:
|
|
|
1934
1953
|
result = self._values.get("resource_configuration_group_id")
|
|
1935
1954
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1936
1955
|
|
|
1937
|
-
@builtins.property
|
|
1938
|
-
def resource_configuration_type(self) -> typing.Optional[builtins.str]:
|
|
1939
|
-
'''The type of resource configuration. A resource configuration can be one of the following types:.
|
|
1940
|
-
|
|
1941
|
-
- *SINGLE* - A single resource.
|
|
1942
|
-
- *GROUP* - A group of resources. You must create a group resource configuration before you create a child resource configuration.
|
|
1943
|
-
- *CHILD* - A single resource that is part of a group resource configuration.
|
|
1944
|
-
- *ARN* - An AWS resource.
|
|
1945
|
-
|
|
1946
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourceconfigurationtype
|
|
1947
|
-
'''
|
|
1948
|
-
result = self._values.get("resource_configuration_type")
|
|
1949
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
1950
|
-
|
|
1951
1956
|
@builtins.property
|
|
1952
1957
|
def resource_gateway_id(self) -> typing.Optional[builtins.str]:
|
|
1953
1958
|
'''The ID of the resource gateway.
|
|
@@ -1999,15 +2004,17 @@ class CfnResourceGateway(
|
|
|
1999
2004
|
from aws_cdk import aws_vpclattice as vpclattice
|
|
2000
2005
|
|
|
2001
2006
|
cfn_resource_gateway = vpclattice.CfnResourceGateway(self, "MyCfnResourceGateway",
|
|
2002
|
-
ip_address_type="ipAddressType",
|
|
2003
2007
|
name="name",
|
|
2004
|
-
security_group_ids=["securityGroupIds"],
|
|
2005
2008
|
subnet_ids=["subnetIds"],
|
|
2009
|
+
vpc_identifier="vpcIdentifier",
|
|
2010
|
+
|
|
2011
|
+
# the properties below are optional
|
|
2012
|
+
ip_address_type="ipAddressType",
|
|
2013
|
+
security_group_ids=["securityGroupIds"],
|
|
2006
2014
|
tags=[CfnTag(
|
|
2007
2015
|
key="key",
|
|
2008
2016
|
value="value"
|
|
2009
|
-
)]
|
|
2010
|
-
vpc_identifier="vpcIdentifier"
|
|
2017
|
+
)]
|
|
2011
2018
|
)
|
|
2012
2019
|
'''
|
|
2013
2020
|
|
|
@@ -2016,34 +2023,34 @@ class CfnResourceGateway(
|
|
|
2016
2023
|
scope: _constructs_77d1e7e8.Construct,
|
|
2017
2024
|
id: builtins.str,
|
|
2018
2025
|
*,
|
|
2026
|
+
name: builtins.str,
|
|
2027
|
+
subnet_ids: typing.Sequence[builtins.str],
|
|
2028
|
+
vpc_identifier: builtins.str,
|
|
2019
2029
|
ip_address_type: typing.Optional[builtins.str] = None,
|
|
2020
|
-
name: typing.Optional[builtins.str] = None,
|
|
2021
2030
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2022
|
-
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2023
2031
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2024
|
-
vpc_identifier: typing.Optional[builtins.str] = None,
|
|
2025
2032
|
) -> None:
|
|
2026
2033
|
'''
|
|
2027
2034
|
:param scope: Scope in which this resource is defined.
|
|
2028
2035
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2029
|
-
:param ip_address_type: The type of IP address used by the resource gateway.
|
|
2030
2036
|
:param name: The name of the resource gateway.
|
|
2031
|
-
:param security_group_ids: The IDs of the security groups applied to the resource gateway.
|
|
2032
2037
|
:param subnet_ids: The IDs of the VPC subnets for the resource gateway.
|
|
2033
|
-
:param tags: The tags for the resource gateway.
|
|
2034
2038
|
:param vpc_identifier: The ID of the VPC for the resource gateway.
|
|
2039
|
+
:param ip_address_type: The type of IP address used by the resource gateway.
|
|
2040
|
+
:param security_group_ids: The IDs of the security groups applied to the resource gateway.
|
|
2041
|
+
:param tags: The tags for the resource gateway.
|
|
2035
2042
|
'''
|
|
2036
2043
|
if __debug__:
|
|
2037
2044
|
type_hints = typing.get_type_hints(_typecheckingstub__c33d35acb93670756de87bb99dc9b48c5bdce217c8b7068ec8d831a66a1b9be2)
|
|
2038
2045
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
2039
2046
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
2040
2047
|
props = CfnResourceGatewayProps(
|
|
2041
|
-
ip_address_type=ip_address_type,
|
|
2042
2048
|
name=name,
|
|
2043
|
-
security_group_ids=security_group_ids,
|
|
2044
2049
|
subnet_ids=subnet_ids,
|
|
2045
|
-
tags=tags,
|
|
2046
2050
|
vpc_identifier=vpc_identifier,
|
|
2051
|
+
ip_address_type=ip_address_type,
|
|
2052
|
+
security_group_ids=security_group_ids,
|
|
2053
|
+
tags=tags,
|
|
2047
2054
|
)
|
|
2048
2055
|
|
|
2049
2056
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -2107,6 +2114,45 @@ class CfnResourceGateway(
|
|
|
2107
2114
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
2108
2115
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
2109
2116
|
|
|
2117
|
+
@builtins.property
|
|
2118
|
+
@jsii.member(jsii_name="name")
|
|
2119
|
+
def name(self) -> builtins.str:
|
|
2120
|
+
'''The name of the resource gateway.'''
|
|
2121
|
+
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
2122
|
+
|
|
2123
|
+
@name.setter
|
|
2124
|
+
def name(self, value: builtins.str) -> None:
|
|
2125
|
+
if __debug__:
|
|
2126
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6348f03faf91ccdea29f2fa6d88ff150ead094ceb4483d7c650b7fcee3937500)
|
|
2127
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2128
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
2129
|
+
|
|
2130
|
+
@builtins.property
|
|
2131
|
+
@jsii.member(jsii_name="subnetIds")
|
|
2132
|
+
def subnet_ids(self) -> typing.List[builtins.str]:
|
|
2133
|
+
'''The IDs of the VPC subnets for the resource gateway.'''
|
|
2134
|
+
return typing.cast(typing.List[builtins.str], jsii.get(self, "subnetIds"))
|
|
2135
|
+
|
|
2136
|
+
@subnet_ids.setter
|
|
2137
|
+
def subnet_ids(self, value: typing.List[builtins.str]) -> None:
|
|
2138
|
+
if __debug__:
|
|
2139
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b80d0378bcb62c6afdab4c3852b32a936d35964b8dc8a67be99af3f3d016b584)
|
|
2140
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2141
|
+
jsii.set(self, "subnetIds", value) # pyright: ignore[reportArgumentType]
|
|
2142
|
+
|
|
2143
|
+
@builtins.property
|
|
2144
|
+
@jsii.member(jsii_name="vpcIdentifier")
|
|
2145
|
+
def vpc_identifier(self) -> builtins.str:
|
|
2146
|
+
'''The ID of the VPC for the resource gateway.'''
|
|
2147
|
+
return typing.cast(builtins.str, jsii.get(self, "vpcIdentifier"))
|
|
2148
|
+
|
|
2149
|
+
@vpc_identifier.setter
|
|
2150
|
+
def vpc_identifier(self, value: builtins.str) -> None:
|
|
2151
|
+
if __debug__:
|
|
2152
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9f006ab0220c58f3a982987d77cde2d3d365338eafe9cc6abcd387432475e2c1)
|
|
2153
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2154
|
+
jsii.set(self, "vpcIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2155
|
+
|
|
2110
2156
|
@builtins.property
|
|
2111
2157
|
@jsii.member(jsii_name="ipAddressType")
|
|
2112
2158
|
def ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
@@ -2120,19 +2166,6 @@ class CfnResourceGateway(
|
|
|
2120
2166
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2121
2167
|
jsii.set(self, "ipAddressType", value) # pyright: ignore[reportArgumentType]
|
|
2122
2168
|
|
|
2123
|
-
@builtins.property
|
|
2124
|
-
@jsii.member(jsii_name="name")
|
|
2125
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
2126
|
-
'''The name of the resource gateway.'''
|
|
2127
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
2128
|
-
|
|
2129
|
-
@name.setter
|
|
2130
|
-
def name(self, value: typing.Optional[builtins.str]) -> None:
|
|
2131
|
-
if __debug__:
|
|
2132
|
-
type_hints = typing.get_type_hints(_typecheckingstub__6348f03faf91ccdea29f2fa6d88ff150ead094ceb4483d7c650b7fcee3937500)
|
|
2133
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2134
|
-
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
2135
|
-
|
|
2136
2169
|
@builtins.property
|
|
2137
2170
|
@jsii.member(jsii_name="securityGroupIds")
|
|
2138
2171
|
def security_group_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -2149,19 +2182,6 @@ class CfnResourceGateway(
|
|
|
2149
2182
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2150
2183
|
jsii.set(self, "securityGroupIds", value) # pyright: ignore[reportArgumentType]
|
|
2151
2184
|
|
|
2152
|
-
@builtins.property
|
|
2153
|
-
@jsii.member(jsii_name="subnetIds")
|
|
2154
|
-
def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2155
|
-
'''The IDs of the VPC subnets for the resource gateway.'''
|
|
2156
|
-
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "subnetIds"))
|
|
2157
|
-
|
|
2158
|
-
@subnet_ids.setter
|
|
2159
|
-
def subnet_ids(self, value: typing.Optional[typing.List[builtins.str]]) -> None:
|
|
2160
|
-
if __debug__:
|
|
2161
|
-
type_hints = typing.get_type_hints(_typecheckingstub__b80d0378bcb62c6afdab4c3852b32a936d35964b8dc8a67be99af3f3d016b584)
|
|
2162
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2163
|
-
jsii.set(self, "subnetIds", value) # pyright: ignore[reportArgumentType]
|
|
2164
|
-
|
|
2165
2185
|
@builtins.property
|
|
2166
2186
|
@jsii.member(jsii_name="tags")
|
|
2167
2187
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -2175,51 +2195,38 @@ class CfnResourceGateway(
|
|
|
2175
2195
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2176
2196
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
2177
2197
|
|
|
2178
|
-
@builtins.property
|
|
2179
|
-
@jsii.member(jsii_name="vpcIdentifier")
|
|
2180
|
-
def vpc_identifier(self) -> typing.Optional[builtins.str]:
|
|
2181
|
-
'''The ID of the VPC for the resource gateway.'''
|
|
2182
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vpcIdentifier"))
|
|
2183
|
-
|
|
2184
|
-
@vpc_identifier.setter
|
|
2185
|
-
def vpc_identifier(self, value: typing.Optional[builtins.str]) -> None:
|
|
2186
|
-
if __debug__:
|
|
2187
|
-
type_hints = typing.get_type_hints(_typecheckingstub__9f006ab0220c58f3a982987d77cde2d3d365338eafe9cc6abcd387432475e2c1)
|
|
2188
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2189
|
-
jsii.set(self, "vpcIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
2190
|
-
|
|
2191
2198
|
|
|
2192
2199
|
@jsii.data_type(
|
|
2193
2200
|
jsii_type="aws-cdk-lib.aws_vpclattice.CfnResourceGatewayProps",
|
|
2194
2201
|
jsii_struct_bases=[],
|
|
2195
2202
|
name_mapping={
|
|
2196
|
-
"ip_address_type": "ipAddressType",
|
|
2197
2203
|
"name": "name",
|
|
2198
|
-
"security_group_ids": "securityGroupIds",
|
|
2199
2204
|
"subnet_ids": "subnetIds",
|
|
2200
|
-
"tags": "tags",
|
|
2201
2205
|
"vpc_identifier": "vpcIdentifier",
|
|
2206
|
+
"ip_address_type": "ipAddressType",
|
|
2207
|
+
"security_group_ids": "securityGroupIds",
|
|
2208
|
+
"tags": "tags",
|
|
2202
2209
|
},
|
|
2203
2210
|
)
|
|
2204
2211
|
class CfnResourceGatewayProps:
|
|
2205
2212
|
def __init__(
|
|
2206
2213
|
self,
|
|
2207
2214
|
*,
|
|
2215
|
+
name: builtins.str,
|
|
2216
|
+
subnet_ids: typing.Sequence[builtins.str],
|
|
2217
|
+
vpc_identifier: builtins.str,
|
|
2208
2218
|
ip_address_type: typing.Optional[builtins.str] = None,
|
|
2209
|
-
name: typing.Optional[builtins.str] = None,
|
|
2210
2219
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2211
|
-
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2212
2220
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2213
|
-
vpc_identifier: typing.Optional[builtins.str] = None,
|
|
2214
2221
|
) -> None:
|
|
2215
2222
|
'''Properties for defining a ``CfnResourceGateway``.
|
|
2216
2223
|
|
|
2217
|
-
:param ip_address_type: The type of IP address used by the resource gateway.
|
|
2218
2224
|
:param name: The name of the resource gateway.
|
|
2219
|
-
:param security_group_ids: The IDs of the security groups applied to the resource gateway.
|
|
2220
2225
|
:param subnet_ids: The IDs of the VPC subnets for the resource gateway.
|
|
2221
|
-
:param tags: The tags for the resource gateway.
|
|
2222
2226
|
:param vpc_identifier: The ID of the VPC for the resource gateway.
|
|
2227
|
+
:param ip_address_type: The type of IP address used by the resource gateway.
|
|
2228
|
+
:param security_group_ids: The IDs of the security groups applied to the resource gateway.
|
|
2229
|
+
:param tags: The tags for the resource gateway.
|
|
2223
2230
|
|
|
2224
2231
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html
|
|
2225
2232
|
:exampleMetadata: fixture=_generated
|
|
@@ -2231,55 +2238,76 @@ class CfnResourceGatewayProps:
|
|
|
2231
2238
|
from aws_cdk import aws_vpclattice as vpclattice
|
|
2232
2239
|
|
|
2233
2240
|
cfn_resource_gateway_props = vpclattice.CfnResourceGatewayProps(
|
|
2234
|
-
ip_address_type="ipAddressType",
|
|
2235
2241
|
name="name",
|
|
2236
|
-
security_group_ids=["securityGroupIds"],
|
|
2237
2242
|
subnet_ids=["subnetIds"],
|
|
2243
|
+
vpc_identifier="vpcIdentifier",
|
|
2244
|
+
|
|
2245
|
+
# the properties below are optional
|
|
2246
|
+
ip_address_type="ipAddressType",
|
|
2247
|
+
security_group_ids=["securityGroupIds"],
|
|
2238
2248
|
tags=[CfnTag(
|
|
2239
2249
|
key="key",
|
|
2240
2250
|
value="value"
|
|
2241
|
-
)]
|
|
2242
|
-
vpc_identifier="vpcIdentifier"
|
|
2251
|
+
)]
|
|
2243
2252
|
)
|
|
2244
2253
|
'''
|
|
2245
2254
|
if __debug__:
|
|
2246
2255
|
type_hints = typing.get_type_hints(_typecheckingstub__ed2c643634b9016a56acc1cdf5c3044eaa6f62d982922519a82cdbd49bdae174)
|
|
2247
|
-
check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
|
|
2248
2256
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2249
|
-
check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
|
|
2250
2257
|
check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
|
|
2251
|
-
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2252
2258
|
check_type(argname="argument vpc_identifier", value=vpc_identifier, expected_type=type_hints["vpc_identifier"])
|
|
2253
|
-
|
|
2259
|
+
check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
|
|
2260
|
+
check_type(argname="argument security_group_ids", value=security_group_ids, expected_type=type_hints["security_group_ids"])
|
|
2261
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2262
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2263
|
+
"name": name,
|
|
2264
|
+
"subnet_ids": subnet_ids,
|
|
2265
|
+
"vpc_identifier": vpc_identifier,
|
|
2266
|
+
}
|
|
2254
2267
|
if ip_address_type is not None:
|
|
2255
2268
|
self._values["ip_address_type"] = ip_address_type
|
|
2256
|
-
if name is not None:
|
|
2257
|
-
self._values["name"] = name
|
|
2258
2269
|
if security_group_ids is not None:
|
|
2259
2270
|
self._values["security_group_ids"] = security_group_ids
|
|
2260
|
-
if subnet_ids is not None:
|
|
2261
|
-
self._values["subnet_ids"] = subnet_ids
|
|
2262
2271
|
if tags is not None:
|
|
2263
2272
|
self._values["tags"] = tags
|
|
2264
|
-
if vpc_identifier is not None:
|
|
2265
|
-
self._values["vpc_identifier"] = vpc_identifier
|
|
2266
2273
|
|
|
2267
2274
|
@builtins.property
|
|
2268
|
-
def
|
|
2269
|
-
'''The
|
|
2275
|
+
def name(self) -> builtins.str:
|
|
2276
|
+
'''The name of the resource gateway.
|
|
2270
2277
|
|
|
2271
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-
|
|
2278
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-name
|
|
2272
2279
|
'''
|
|
2273
|
-
result = self._values.get("
|
|
2274
|
-
|
|
2280
|
+
result = self._values.get("name")
|
|
2281
|
+
assert result is not None, "Required property 'name' is missing"
|
|
2282
|
+
return typing.cast(builtins.str, result)
|
|
2275
2283
|
|
|
2276
2284
|
@builtins.property
|
|
2277
|
-
def
|
|
2278
|
-
'''The
|
|
2285
|
+
def subnet_ids(self) -> typing.List[builtins.str]:
|
|
2286
|
+
'''The IDs of the VPC subnets for the resource gateway.
|
|
2279
2287
|
|
|
2280
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-
|
|
2288
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-subnetids
|
|
2281
2289
|
'''
|
|
2282
|
-
result = self._values.get("
|
|
2290
|
+
result = self._values.get("subnet_ids")
|
|
2291
|
+
assert result is not None, "Required property 'subnet_ids' is missing"
|
|
2292
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
2293
|
+
|
|
2294
|
+
@builtins.property
|
|
2295
|
+
def vpc_identifier(self) -> builtins.str:
|
|
2296
|
+
'''The ID of the VPC for the resource gateway.
|
|
2297
|
+
|
|
2298
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-vpcidentifier
|
|
2299
|
+
'''
|
|
2300
|
+
result = self._values.get("vpc_identifier")
|
|
2301
|
+
assert result is not None, "Required property 'vpc_identifier' is missing"
|
|
2302
|
+
return typing.cast(builtins.str, result)
|
|
2303
|
+
|
|
2304
|
+
@builtins.property
|
|
2305
|
+
def ip_address_type(self) -> typing.Optional[builtins.str]:
|
|
2306
|
+
'''The type of IP address used by the resource gateway.
|
|
2307
|
+
|
|
2308
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-ipaddresstype
|
|
2309
|
+
'''
|
|
2310
|
+
result = self._values.get("ip_address_type")
|
|
2283
2311
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2284
2312
|
|
|
2285
2313
|
@builtins.property
|
|
@@ -2291,15 +2319,6 @@ class CfnResourceGatewayProps:
|
|
|
2291
2319
|
result = self._values.get("security_group_ids")
|
|
2292
2320
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2293
2321
|
|
|
2294
|
-
@builtins.property
|
|
2295
|
-
def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2296
|
-
'''The IDs of the VPC subnets for the resource gateway.
|
|
2297
|
-
|
|
2298
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-subnetids
|
|
2299
|
-
'''
|
|
2300
|
-
result = self._values.get("subnet_ids")
|
|
2301
|
-
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
2302
|
-
|
|
2303
2322
|
@builtins.property
|
|
2304
2323
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
2305
2324
|
'''The tags for the resource gateway.
|
|
@@ -2309,15 +2328,6 @@ class CfnResourceGatewayProps:
|
|
|
2309
2328
|
result = self._values.get("tags")
|
|
2310
2329
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
2311
2330
|
|
|
2312
|
-
@builtins.property
|
|
2313
|
-
def vpc_identifier(self) -> typing.Optional[builtins.str]:
|
|
2314
|
-
'''The ID of the VPC for the resource gateway.
|
|
2315
|
-
|
|
2316
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-vpcidentifier
|
|
2317
|
-
'''
|
|
2318
|
-
result = self._values.get("vpc_identifier")
|
|
2319
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
2320
|
-
|
|
2321
2331
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2322
2332
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2323
2333
|
|
|
@@ -6935,14 +6945,14 @@ def _typecheckingstub__6d403f9161b4d427bd92d4b1a1a263447b680ac47cb5036d62501f7fb
|
|
|
6935
6945
|
scope: _constructs_77d1e7e8.Construct,
|
|
6936
6946
|
id: builtins.str,
|
|
6937
6947
|
*,
|
|
6948
|
+
name: builtins.str,
|
|
6949
|
+
resource_configuration_type: builtins.str,
|
|
6938
6950
|
allow_association_to_sharable_service_network: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6939
|
-
name: typing.Optional[builtins.str] = None,
|
|
6940
6951
|
port_ranges: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6941
6952
|
protocol_type: typing.Optional[builtins.str] = None,
|
|
6942
6953
|
resource_configuration_auth_type: typing.Optional[builtins.str] = None,
|
|
6943
6954
|
resource_configuration_definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnResourceConfiguration.ResourceConfigurationDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6944
6955
|
resource_configuration_group_id: typing.Optional[builtins.str] = None,
|
|
6945
|
-
resource_configuration_type: typing.Optional[builtins.str] = None,
|
|
6946
6956
|
resource_gateway_id: typing.Optional[builtins.str] = None,
|
|
6947
6957
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6948
6958
|
) -> None:
|
|
@@ -6961,14 +6971,20 @@ def _typecheckingstub__3754b09494f8006d837368599eb7dfc715e33b3e7d30d21f635a62e53
|
|
|
6961
6971
|
"""Type checking stubs"""
|
|
6962
6972
|
pass
|
|
6963
6973
|
|
|
6964
|
-
def
|
|
6965
|
-
value:
|
|
6974
|
+
def _typecheckingstub__05c6c80cd49033d3aa0afe190c923dcae73156dcab6ce48936861ca4ccc73ef0(
|
|
6975
|
+
value: builtins.str,
|
|
6966
6976
|
) -> None:
|
|
6967
6977
|
"""Type checking stubs"""
|
|
6968
6978
|
pass
|
|
6969
6979
|
|
|
6970
|
-
def
|
|
6971
|
-
value:
|
|
6980
|
+
def _typecheckingstub__78c78698636e3ca61354c53cb8cdfc165b65a1ae7d941087c00f199b89c59f80(
|
|
6981
|
+
value: builtins.str,
|
|
6982
|
+
) -> None:
|
|
6983
|
+
"""Type checking stubs"""
|
|
6984
|
+
pass
|
|
6985
|
+
|
|
6986
|
+
def _typecheckingstub__d1ef450fae7a40fb3e9c4ee0eb161050d61b06bd98ab10bb1187f14c7b5c9ceb(
|
|
6987
|
+
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
6972
6988
|
) -> None:
|
|
6973
6989
|
"""Type checking stubs"""
|
|
6974
6990
|
pass
|
|
@@ -7003,12 +7019,6 @@ def _typecheckingstub__1121abed475cd3e475b62bd8b47dabfd15e44d41d9771f06cad88fe0c
|
|
|
7003
7019
|
"""Type checking stubs"""
|
|
7004
7020
|
pass
|
|
7005
7021
|
|
|
7006
|
-
def _typecheckingstub__78c78698636e3ca61354c53cb8cdfc165b65a1ae7d941087c00f199b89c59f80(
|
|
7007
|
-
value: typing.Optional[builtins.str],
|
|
7008
|
-
) -> None:
|
|
7009
|
-
"""Type checking stubs"""
|
|
7010
|
-
pass
|
|
7011
|
-
|
|
7012
7022
|
def _typecheckingstub__3823c802f0ca61b478a6bc105102ac700a4091dd81e698a0148bcfd91ec5332a(
|
|
7013
7023
|
value: typing.Optional[builtins.str],
|
|
7014
7024
|
) -> None:
|
|
@@ -7040,14 +7050,14 @@ def _typecheckingstub__9121263d95571010bd6dc19e1c8287b50bf9733de5f1bdf0bc8a14a7f
|
|
|
7040
7050
|
|
|
7041
7051
|
def _typecheckingstub__797cfcb00db81ec7627009ae5f799c38c09652aee4a602480e341f9e4049b098(
|
|
7042
7052
|
*,
|
|
7053
|
+
name: builtins.str,
|
|
7054
|
+
resource_configuration_type: builtins.str,
|
|
7043
7055
|
allow_association_to_sharable_service_network: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
7044
|
-
name: typing.Optional[builtins.str] = None,
|
|
7045
7056
|
port_ranges: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7046
7057
|
protocol_type: typing.Optional[builtins.str] = None,
|
|
7047
7058
|
resource_configuration_auth_type: typing.Optional[builtins.str] = None,
|
|
7048
7059
|
resource_configuration_definition: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnResourceConfiguration.ResourceConfigurationDefinitionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7049
7060
|
resource_configuration_group_id: typing.Optional[builtins.str] = None,
|
|
7050
|
-
resource_configuration_type: typing.Optional[builtins.str] = None,
|
|
7051
7061
|
resource_gateway_id: typing.Optional[builtins.str] = None,
|
|
7052
7062
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7053
7063
|
) -> None:
|
|
@@ -7058,12 +7068,12 @@ def _typecheckingstub__c33d35acb93670756de87bb99dc9b48c5bdce217c8b7068ec8d831a66
|
|
|
7058
7068
|
scope: _constructs_77d1e7e8.Construct,
|
|
7059
7069
|
id: builtins.str,
|
|
7060
7070
|
*,
|
|
7071
|
+
name: builtins.str,
|
|
7072
|
+
subnet_ids: typing.Sequence[builtins.str],
|
|
7073
|
+
vpc_identifier: builtins.str,
|
|
7061
7074
|
ip_address_type: typing.Optional[builtins.str] = None,
|
|
7062
|
-
name: typing.Optional[builtins.str] = None,
|
|
7063
7075
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7064
|
-
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7065
7076
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7066
|
-
vpc_identifier: typing.Optional[builtins.str] = None,
|
|
7067
7077
|
) -> None:
|
|
7068
7078
|
"""Type checking stubs"""
|
|
7069
7079
|
pass
|
|
@@ -7080,50 +7090,50 @@ def _typecheckingstub__961cdaca88b2adc0c4bd56e6891207c7285b0ef143ebf35c7492768ed
|
|
|
7080
7090
|
"""Type checking stubs"""
|
|
7081
7091
|
pass
|
|
7082
7092
|
|
|
7083
|
-
def
|
|
7084
|
-
value:
|
|
7093
|
+
def _typecheckingstub__6348f03faf91ccdea29f2fa6d88ff150ead094ceb4483d7c650b7fcee3937500(
|
|
7094
|
+
value: builtins.str,
|
|
7085
7095
|
) -> None:
|
|
7086
7096
|
"""Type checking stubs"""
|
|
7087
7097
|
pass
|
|
7088
7098
|
|
|
7089
|
-
def
|
|
7090
|
-
value: typing.
|
|
7099
|
+
def _typecheckingstub__b80d0378bcb62c6afdab4c3852b32a936d35964b8dc8a67be99af3f3d016b584(
|
|
7100
|
+
value: typing.List[builtins.str],
|
|
7091
7101
|
) -> None:
|
|
7092
7102
|
"""Type checking stubs"""
|
|
7093
7103
|
pass
|
|
7094
7104
|
|
|
7095
|
-
def
|
|
7096
|
-
value:
|
|
7105
|
+
def _typecheckingstub__9f006ab0220c58f3a982987d77cde2d3d365338eafe9cc6abcd387432475e2c1(
|
|
7106
|
+
value: builtins.str,
|
|
7097
7107
|
) -> None:
|
|
7098
7108
|
"""Type checking stubs"""
|
|
7099
7109
|
pass
|
|
7100
7110
|
|
|
7101
|
-
def
|
|
7102
|
-
value: typing.Optional[
|
|
7111
|
+
def _typecheckingstub__da193673158e2d7b463232edae7461c41e04d65f3e9a6058fb5136fae629871c(
|
|
7112
|
+
value: typing.Optional[builtins.str],
|
|
7103
7113
|
) -> None:
|
|
7104
7114
|
"""Type checking stubs"""
|
|
7105
7115
|
pass
|
|
7106
7116
|
|
|
7107
|
-
def
|
|
7108
|
-
value: typing.Optional[typing.List[
|
|
7117
|
+
def _typecheckingstub__7e2e4828934d008108e9f5f74e2c02dbd9f159db6f7be2e11295977601d1296b(
|
|
7118
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
7109
7119
|
) -> None:
|
|
7110
7120
|
"""Type checking stubs"""
|
|
7111
7121
|
pass
|
|
7112
7122
|
|
|
7113
|
-
def
|
|
7114
|
-
value: typing.Optional[
|
|
7123
|
+
def _typecheckingstub__bf6ddd6a110cbcda973426d8df8b1e68b145ff32b0292ba9db84cd36b76d4da5(
|
|
7124
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
7115
7125
|
) -> None:
|
|
7116
7126
|
"""Type checking stubs"""
|
|
7117
7127
|
pass
|
|
7118
7128
|
|
|
7119
7129
|
def _typecheckingstub__ed2c643634b9016a56acc1cdf5c3044eaa6f62d982922519a82cdbd49bdae174(
|
|
7120
7130
|
*,
|
|
7131
|
+
name: builtins.str,
|
|
7132
|
+
subnet_ids: typing.Sequence[builtins.str],
|
|
7133
|
+
vpc_identifier: builtins.str,
|
|
7121
7134
|
ip_address_type: typing.Optional[builtins.str] = None,
|
|
7122
|
-
name: typing.Optional[builtins.str] = None,
|
|
7123
7135
|
security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7124
|
-
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7125
7136
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7126
|
-
vpc_identifier: typing.Optional[builtins.str] = None,
|
|
7127
7137
|
) -> None:
|
|
7128
7138
|
"""Type checking stubs"""
|
|
7129
7139
|
pass
|