aws-cdk-lib 2.167.2__py3-none-any.whl → 2.169.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 +2083 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.167.2.jsii.tgz → aws-cdk-lib@2.169.0.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +244 -13
- aws_cdk/aws_applicationautoscaling/__init__.py +1691 -95
- aws_cdk/aws_applicationinsights/__init__.py +41 -0
- aws_cdk/aws_applicationsignals/__init__.py +124 -0
- aws_cdk/aws_autoscaling/__init__.py +743 -7
- aws_cdk/aws_batch/__init__.py +202 -5
- aws_cdk/aws_bedrock/__init__.py +12 -12
- aws_cdk/aws_cleanrooms/__init__.py +17 -8
- aws_cdk/aws_cloudformation/__init__.py +2571 -492
- aws_cdk/aws_cloudfront/__init__.py +281 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +5 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +714 -132
- aws_cdk/aws_cloudtrail/__init__.py +52 -14
- aws_cdk/aws_codebuild/__init__.py +670 -4
- aws_cdk/aws_connect/__init__.py +378 -0
- aws_cdk/aws_connectcampaignsv2/__init__.py +3376 -0
- aws_cdk/aws_customerprofiles/__init__.py +44 -0
- aws_cdk/aws_deadline/__init__.py +299 -6
- aws_cdk/aws_dynamodb/__init__.py +359 -16
- aws_cdk/aws_ec2/__init__.py +19 -6
- aws_cdk/aws_ecs/__init__.py +231 -12
- aws_cdk/aws_efs/__init__.py +61 -4
- aws_cdk/aws_eks/__init__.py +116 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +160 -11
- aws_cdk/aws_fis/__init__.py +495 -0
- aws_cdk/aws_gamelift/__init__.py +3204 -1104
- aws_cdk/aws_iot/__init__.py +209 -0
- aws_cdk/aws_iotfleetwise/__init__.py +550 -0
- aws_cdk/aws_iotsitewise/__init__.py +6 -3
- aws_cdk/aws_ivs/__init__.py +458 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +756 -8
- aws_cdk/aws_lambda/__init__.py +634 -259
- aws_cdk/aws_lambda_destinations/__init__.py +73 -0
- aws_cdk/aws_lambda_event_sources/__init__.py +102 -2
- aws_cdk/aws_location/__init__.py +18 -18
- aws_cdk/aws_mediastore/__init__.py +22 -10
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +35 -19
- aws_cdk/aws_rbin/__init__.py +902 -0
- aws_cdk/aws_rds/__init__.py +166 -3
- aws_cdk/aws_route53resolver/__init__.py +76 -19
- aws_cdk/aws_sagemaker/__init__.py +32 -0
- aws_cdk/aws_securityhub/__init__.py +11 -14
- aws_cdk/aws_ses/__init__.py +58 -5
- aws_cdk/aws_sns/__init__.py +593 -8
- aws_cdk/aws_sns_subscriptions/__init__.py +68 -22
- aws_cdk/aws_stepfunctions_tasks/__init__.py +1601 -8
- aws_cdk/aws_synthetics/__init__.py +46 -0
- aws_cdk/aws_transfer/__init__.py +0 -8
- aws_cdk/aws_vpclattice/__init__.py +157 -2
- aws_cdk/aws_wisdom/__init__.py +113 -69
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/RECORD +60 -58
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -1427,6 +1427,316 @@ class CfnContactFlowProps:
|
|
|
1427
1427
|
)
|
|
1428
1428
|
|
|
1429
1429
|
|
|
1430
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
1431
|
+
class CfnEmailAddress(
|
|
1432
|
+
_CfnResource_9df397a6,
|
|
1433
|
+
metaclass=jsii.JSIIMeta,
|
|
1434
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnEmailAddress",
|
|
1435
|
+
):
|
|
1436
|
+
'''Resource Type definition for AWS::Connect::EmailAddress.
|
|
1437
|
+
|
|
1438
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
|
|
1439
|
+
:cloudformationResource: AWS::Connect::EmailAddress
|
|
1440
|
+
:exampleMetadata: fixture=_generated
|
|
1441
|
+
|
|
1442
|
+
Example::
|
|
1443
|
+
|
|
1444
|
+
# The code below shows an example of how to instantiate this type.
|
|
1445
|
+
# The values are placeholders you should change.
|
|
1446
|
+
from aws_cdk import aws_connect as connect
|
|
1447
|
+
|
|
1448
|
+
cfn_email_address = connect.CfnEmailAddress(self, "MyCfnEmailAddress",
|
|
1449
|
+
email_address="emailAddress",
|
|
1450
|
+
instance_arn="instanceArn",
|
|
1451
|
+
|
|
1452
|
+
# the properties below are optional
|
|
1453
|
+
description="description",
|
|
1454
|
+
display_name="displayName",
|
|
1455
|
+
tags=[CfnTag(
|
|
1456
|
+
key="key",
|
|
1457
|
+
value="value"
|
|
1458
|
+
)]
|
|
1459
|
+
)
|
|
1460
|
+
'''
|
|
1461
|
+
|
|
1462
|
+
def __init__(
|
|
1463
|
+
self,
|
|
1464
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
1465
|
+
id: builtins.str,
|
|
1466
|
+
*,
|
|
1467
|
+
email_address: builtins.str,
|
|
1468
|
+
instance_arn: builtins.str,
|
|
1469
|
+
description: typing.Optional[builtins.str] = None,
|
|
1470
|
+
display_name: typing.Optional[builtins.str] = None,
|
|
1471
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1472
|
+
) -> None:
|
|
1473
|
+
'''
|
|
1474
|
+
:param scope: Scope in which this resource is defined.
|
|
1475
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
1476
|
+
:param email_address: Email address to be created for this instance.
|
|
1477
|
+
:param instance_arn: The identifier of the Amazon Connect instance.
|
|
1478
|
+
:param description: A description for the email address.
|
|
1479
|
+
:param display_name: The display name for the email address.
|
|
1480
|
+
:param tags: One or more tags.
|
|
1481
|
+
'''
|
|
1482
|
+
if __debug__:
|
|
1483
|
+
type_hints = typing.get_type_hints(_typecheckingstub__82663491f0adb2dbe44ce9a95c4b21bf5d7529ba2b8adcceab5da9bedc3d1370)
|
|
1484
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1485
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1486
|
+
props = CfnEmailAddressProps(
|
|
1487
|
+
email_address=email_address,
|
|
1488
|
+
instance_arn=instance_arn,
|
|
1489
|
+
description=description,
|
|
1490
|
+
display_name=display_name,
|
|
1491
|
+
tags=tags,
|
|
1492
|
+
)
|
|
1493
|
+
|
|
1494
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
1495
|
+
|
|
1496
|
+
@jsii.member(jsii_name="inspect")
|
|
1497
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
1498
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
1499
|
+
|
|
1500
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
1501
|
+
'''
|
|
1502
|
+
if __debug__:
|
|
1503
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c4fe51dacac1b484c4e303934d80f7bb4cfcbe3351b63a935760ef841d11b0b7)
|
|
1504
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
1505
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
1506
|
+
|
|
1507
|
+
@jsii.member(jsii_name="renderProperties")
|
|
1508
|
+
def _render_properties(
|
|
1509
|
+
self,
|
|
1510
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
1511
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1512
|
+
'''
|
|
1513
|
+
:param props: -
|
|
1514
|
+
'''
|
|
1515
|
+
if __debug__:
|
|
1516
|
+
type_hints = typing.get_type_hints(_typecheckingstub__33b6216cbb956627e9dc575454fc3e8d5aea1a3207ec56ce9cb765691a426336)
|
|
1517
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
1518
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
1519
|
+
|
|
1520
|
+
@jsii.python.classproperty
|
|
1521
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
1522
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
1523
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
1524
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
1525
|
+
|
|
1526
|
+
@builtins.property
|
|
1527
|
+
@jsii.member(jsii_name="attrEmailAddressArn")
|
|
1528
|
+
def attr_email_address_arn(self) -> builtins.str:
|
|
1529
|
+
'''The identifier of the email address.
|
|
1530
|
+
|
|
1531
|
+
:cloudformationAttribute: EmailAddressArn
|
|
1532
|
+
'''
|
|
1533
|
+
return typing.cast(builtins.str, jsii.get(self, "attrEmailAddressArn"))
|
|
1534
|
+
|
|
1535
|
+
@builtins.property
|
|
1536
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
1537
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
1538
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
1539
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
1540
|
+
|
|
1541
|
+
@builtins.property
|
|
1542
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
1543
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1544
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
1545
|
+
|
|
1546
|
+
@builtins.property
|
|
1547
|
+
@jsii.member(jsii_name="emailAddress")
|
|
1548
|
+
def email_address(self) -> builtins.str:
|
|
1549
|
+
'''Email address to be created for this instance.'''
|
|
1550
|
+
return typing.cast(builtins.str, jsii.get(self, "emailAddress"))
|
|
1551
|
+
|
|
1552
|
+
@email_address.setter
|
|
1553
|
+
def email_address(self, value: builtins.str) -> None:
|
|
1554
|
+
if __debug__:
|
|
1555
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e26e2300df70e94e938287749de7109892ad93f49e461b69b020622739163c1c)
|
|
1556
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1557
|
+
jsii.set(self, "emailAddress", value) # pyright: ignore[reportArgumentType]
|
|
1558
|
+
|
|
1559
|
+
@builtins.property
|
|
1560
|
+
@jsii.member(jsii_name="instanceArn")
|
|
1561
|
+
def instance_arn(self) -> builtins.str:
|
|
1562
|
+
'''The identifier of the Amazon Connect instance.'''
|
|
1563
|
+
return typing.cast(builtins.str, jsii.get(self, "instanceArn"))
|
|
1564
|
+
|
|
1565
|
+
@instance_arn.setter
|
|
1566
|
+
def instance_arn(self, value: builtins.str) -> None:
|
|
1567
|
+
if __debug__:
|
|
1568
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4897e979b60cf9112f8c5f689498588562efda825c4b629f911babccfbbd14f3)
|
|
1569
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1570
|
+
jsii.set(self, "instanceArn", value) # pyright: ignore[reportArgumentType]
|
|
1571
|
+
|
|
1572
|
+
@builtins.property
|
|
1573
|
+
@jsii.member(jsii_name="description")
|
|
1574
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
1575
|
+
'''A description for the email address.'''
|
|
1576
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
1577
|
+
|
|
1578
|
+
@description.setter
|
|
1579
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
1580
|
+
if __debug__:
|
|
1581
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9ecb3e2768e9a204b64d2a27ff4d4239810f03f60c999f10faf989234a4aa95f)
|
|
1582
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1583
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
1584
|
+
|
|
1585
|
+
@builtins.property
|
|
1586
|
+
@jsii.member(jsii_name="displayName")
|
|
1587
|
+
def display_name(self) -> typing.Optional[builtins.str]:
|
|
1588
|
+
'''The display name for the email address.'''
|
|
1589
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "displayName"))
|
|
1590
|
+
|
|
1591
|
+
@display_name.setter
|
|
1592
|
+
def display_name(self, value: typing.Optional[builtins.str]) -> None:
|
|
1593
|
+
if __debug__:
|
|
1594
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ea8987f3e91ef810959c56c99b1cff317c190bc87329ffea9f144b19adab4460)
|
|
1595
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1596
|
+
jsii.set(self, "displayName", value) # pyright: ignore[reportArgumentType]
|
|
1597
|
+
|
|
1598
|
+
@builtins.property
|
|
1599
|
+
@jsii.member(jsii_name="tags")
|
|
1600
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1601
|
+
'''One or more tags.'''
|
|
1602
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
1603
|
+
|
|
1604
|
+
@tags.setter
|
|
1605
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
1606
|
+
if __debug__:
|
|
1607
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0842a9bd625bd6676921b5b4d09d963f3c01dd351f002f2878919bed280da0c1)
|
|
1608
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1609
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
1610
|
+
|
|
1611
|
+
|
|
1612
|
+
@jsii.data_type(
|
|
1613
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnEmailAddressProps",
|
|
1614
|
+
jsii_struct_bases=[],
|
|
1615
|
+
name_mapping={
|
|
1616
|
+
"email_address": "emailAddress",
|
|
1617
|
+
"instance_arn": "instanceArn",
|
|
1618
|
+
"description": "description",
|
|
1619
|
+
"display_name": "displayName",
|
|
1620
|
+
"tags": "tags",
|
|
1621
|
+
},
|
|
1622
|
+
)
|
|
1623
|
+
class CfnEmailAddressProps:
|
|
1624
|
+
def __init__(
|
|
1625
|
+
self,
|
|
1626
|
+
*,
|
|
1627
|
+
email_address: builtins.str,
|
|
1628
|
+
instance_arn: builtins.str,
|
|
1629
|
+
description: typing.Optional[builtins.str] = None,
|
|
1630
|
+
display_name: typing.Optional[builtins.str] = None,
|
|
1631
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1632
|
+
) -> None:
|
|
1633
|
+
'''Properties for defining a ``CfnEmailAddress``.
|
|
1634
|
+
|
|
1635
|
+
:param email_address: Email address to be created for this instance.
|
|
1636
|
+
:param instance_arn: The identifier of the Amazon Connect instance.
|
|
1637
|
+
:param description: A description for the email address.
|
|
1638
|
+
:param display_name: The display name for the email address.
|
|
1639
|
+
:param tags: One or more tags.
|
|
1640
|
+
|
|
1641
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
|
|
1642
|
+
:exampleMetadata: fixture=_generated
|
|
1643
|
+
|
|
1644
|
+
Example::
|
|
1645
|
+
|
|
1646
|
+
# The code below shows an example of how to instantiate this type.
|
|
1647
|
+
# The values are placeholders you should change.
|
|
1648
|
+
from aws_cdk import aws_connect as connect
|
|
1649
|
+
|
|
1650
|
+
cfn_email_address_props = connect.CfnEmailAddressProps(
|
|
1651
|
+
email_address="emailAddress",
|
|
1652
|
+
instance_arn="instanceArn",
|
|
1653
|
+
|
|
1654
|
+
# the properties below are optional
|
|
1655
|
+
description="description",
|
|
1656
|
+
display_name="displayName",
|
|
1657
|
+
tags=[CfnTag(
|
|
1658
|
+
key="key",
|
|
1659
|
+
value="value"
|
|
1660
|
+
)]
|
|
1661
|
+
)
|
|
1662
|
+
'''
|
|
1663
|
+
if __debug__:
|
|
1664
|
+
type_hints = typing.get_type_hints(_typecheckingstub__925fc69049d4896dd3262cfb6f2706a7c9f3ca052fe3aac9c63f99ad79e7def4)
|
|
1665
|
+
check_type(argname="argument email_address", value=email_address, expected_type=type_hints["email_address"])
|
|
1666
|
+
check_type(argname="argument instance_arn", value=instance_arn, expected_type=type_hints["instance_arn"])
|
|
1667
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1668
|
+
check_type(argname="argument display_name", value=display_name, expected_type=type_hints["display_name"])
|
|
1669
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1670
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1671
|
+
"email_address": email_address,
|
|
1672
|
+
"instance_arn": instance_arn,
|
|
1673
|
+
}
|
|
1674
|
+
if description is not None:
|
|
1675
|
+
self._values["description"] = description
|
|
1676
|
+
if display_name is not None:
|
|
1677
|
+
self._values["display_name"] = display_name
|
|
1678
|
+
if tags is not None:
|
|
1679
|
+
self._values["tags"] = tags
|
|
1680
|
+
|
|
1681
|
+
@builtins.property
|
|
1682
|
+
def email_address(self) -> builtins.str:
|
|
1683
|
+
'''Email address to be created for this instance.
|
|
1684
|
+
|
|
1685
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-emailaddress
|
|
1686
|
+
'''
|
|
1687
|
+
result = self._values.get("email_address")
|
|
1688
|
+
assert result is not None, "Required property 'email_address' is missing"
|
|
1689
|
+
return typing.cast(builtins.str, result)
|
|
1690
|
+
|
|
1691
|
+
@builtins.property
|
|
1692
|
+
def instance_arn(self) -> builtins.str:
|
|
1693
|
+
'''The identifier of the Amazon Connect instance.
|
|
1694
|
+
|
|
1695
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-instancearn
|
|
1696
|
+
'''
|
|
1697
|
+
result = self._values.get("instance_arn")
|
|
1698
|
+
assert result is not None, "Required property 'instance_arn' is missing"
|
|
1699
|
+
return typing.cast(builtins.str, result)
|
|
1700
|
+
|
|
1701
|
+
@builtins.property
|
|
1702
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
1703
|
+
'''A description for the email address.
|
|
1704
|
+
|
|
1705
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-description
|
|
1706
|
+
'''
|
|
1707
|
+
result = self._values.get("description")
|
|
1708
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1709
|
+
|
|
1710
|
+
@builtins.property
|
|
1711
|
+
def display_name(self) -> typing.Optional[builtins.str]:
|
|
1712
|
+
'''The display name for the email address.
|
|
1713
|
+
|
|
1714
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-displayname
|
|
1715
|
+
'''
|
|
1716
|
+
result = self._values.get("display_name")
|
|
1717
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1718
|
+
|
|
1719
|
+
@builtins.property
|
|
1720
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1721
|
+
'''One or more tags.
|
|
1722
|
+
|
|
1723
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html#cfn-connect-emailaddress-tags
|
|
1724
|
+
'''
|
|
1725
|
+
result = self._values.get("tags")
|
|
1726
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
1727
|
+
|
|
1728
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1729
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1730
|
+
|
|
1731
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1732
|
+
return not (rhs == self)
|
|
1733
|
+
|
|
1734
|
+
def __repr__(self) -> str:
|
|
1735
|
+
return "CfnEmailAddressProps(%s)" % ", ".join(
|
|
1736
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1737
|
+
)
|
|
1738
|
+
|
|
1739
|
+
|
|
1430
1740
|
@jsii.implements(_IInspectable_c2943556, _ITaggable_36806126)
|
|
1431
1741
|
class CfnEvaluationForm(
|
|
1432
1742
|
_CfnResource_9df397a6,
|
|
@@ -15452,6 +15762,8 @@ __all__ = [
|
|
|
15452
15762
|
"CfnContactFlowModule",
|
|
15453
15763
|
"CfnContactFlowModuleProps",
|
|
15454
15764
|
"CfnContactFlowProps",
|
|
15765
|
+
"CfnEmailAddress",
|
|
15766
|
+
"CfnEmailAddressProps",
|
|
15455
15767
|
"CfnEvaluationForm",
|
|
15456
15768
|
"CfnEvaluationFormProps",
|
|
15457
15769
|
"CfnHoursOfOperation",
|
|
@@ -15786,6 +16098,72 @@ def _typecheckingstub__c0555b19a226cc1a8bd054951921ffd23e0c635fe29a3d69a330d8262
|
|
|
15786
16098
|
"""Type checking stubs"""
|
|
15787
16099
|
pass
|
|
15788
16100
|
|
|
16101
|
+
def _typecheckingstub__82663491f0adb2dbe44ce9a95c4b21bf5d7529ba2b8adcceab5da9bedc3d1370(
|
|
16102
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
16103
|
+
id: builtins.str,
|
|
16104
|
+
*,
|
|
16105
|
+
email_address: builtins.str,
|
|
16106
|
+
instance_arn: builtins.str,
|
|
16107
|
+
description: typing.Optional[builtins.str] = None,
|
|
16108
|
+
display_name: typing.Optional[builtins.str] = None,
|
|
16109
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16110
|
+
) -> None:
|
|
16111
|
+
"""Type checking stubs"""
|
|
16112
|
+
pass
|
|
16113
|
+
|
|
16114
|
+
def _typecheckingstub__c4fe51dacac1b484c4e303934d80f7bb4cfcbe3351b63a935760ef841d11b0b7(
|
|
16115
|
+
inspector: _TreeInspector_488e0dd5,
|
|
16116
|
+
) -> None:
|
|
16117
|
+
"""Type checking stubs"""
|
|
16118
|
+
pass
|
|
16119
|
+
|
|
16120
|
+
def _typecheckingstub__33b6216cbb956627e9dc575454fc3e8d5aea1a3207ec56ce9cb765691a426336(
|
|
16121
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
16122
|
+
) -> None:
|
|
16123
|
+
"""Type checking stubs"""
|
|
16124
|
+
pass
|
|
16125
|
+
|
|
16126
|
+
def _typecheckingstub__e26e2300df70e94e938287749de7109892ad93f49e461b69b020622739163c1c(
|
|
16127
|
+
value: builtins.str,
|
|
16128
|
+
) -> None:
|
|
16129
|
+
"""Type checking stubs"""
|
|
16130
|
+
pass
|
|
16131
|
+
|
|
16132
|
+
def _typecheckingstub__4897e979b60cf9112f8c5f689498588562efda825c4b629f911babccfbbd14f3(
|
|
16133
|
+
value: builtins.str,
|
|
16134
|
+
) -> None:
|
|
16135
|
+
"""Type checking stubs"""
|
|
16136
|
+
pass
|
|
16137
|
+
|
|
16138
|
+
def _typecheckingstub__9ecb3e2768e9a204b64d2a27ff4d4239810f03f60c999f10faf989234a4aa95f(
|
|
16139
|
+
value: typing.Optional[builtins.str],
|
|
16140
|
+
) -> None:
|
|
16141
|
+
"""Type checking stubs"""
|
|
16142
|
+
pass
|
|
16143
|
+
|
|
16144
|
+
def _typecheckingstub__ea8987f3e91ef810959c56c99b1cff317c190bc87329ffea9f144b19adab4460(
|
|
16145
|
+
value: typing.Optional[builtins.str],
|
|
16146
|
+
) -> None:
|
|
16147
|
+
"""Type checking stubs"""
|
|
16148
|
+
pass
|
|
16149
|
+
|
|
16150
|
+
def _typecheckingstub__0842a9bd625bd6676921b5b4d09d963f3c01dd351f002f2878919bed280da0c1(
|
|
16151
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
16152
|
+
) -> None:
|
|
16153
|
+
"""Type checking stubs"""
|
|
16154
|
+
pass
|
|
16155
|
+
|
|
16156
|
+
def _typecheckingstub__925fc69049d4896dd3262cfb6f2706a7c9f3ca052fe3aac9c63f99ad79e7def4(
|
|
16157
|
+
*,
|
|
16158
|
+
email_address: builtins.str,
|
|
16159
|
+
instance_arn: builtins.str,
|
|
16160
|
+
description: typing.Optional[builtins.str] = None,
|
|
16161
|
+
display_name: typing.Optional[builtins.str] = None,
|
|
16162
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16163
|
+
) -> None:
|
|
16164
|
+
"""Type checking stubs"""
|
|
16165
|
+
pass
|
|
16166
|
+
|
|
15789
16167
|
def _typecheckingstub__67672e07b9b284918b4f61d0c04df64749fd2f5f1f5a07e093b1e338fae6f20d(
|
|
15790
16168
|
scope: _constructs_77d1e7e8.Construct,
|
|
15791
16169
|
id: builtins.str,
|