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
aws_cdk/aws_ses/__init__.py
CHANGED
|
@@ -4468,6 +4468,211 @@ class CfnMailManagerAddonSubscriptionProps:
|
|
|
4468
4468
|
)
|
|
4469
4469
|
|
|
4470
4470
|
|
|
4471
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
4472
|
+
class CfnMailManagerAddressList(
|
|
4473
|
+
_CfnResource_9df397a6,
|
|
4474
|
+
metaclass=jsii.JSIIMeta,
|
|
4475
|
+
jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerAddressList",
|
|
4476
|
+
):
|
|
4477
|
+
'''Definition of AWS::SES::MailManagerAddressList Resource Type.
|
|
4478
|
+
|
|
4479
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html
|
|
4480
|
+
:cloudformationResource: AWS::SES::MailManagerAddressList
|
|
4481
|
+
:exampleMetadata: fixture=_generated
|
|
4482
|
+
|
|
4483
|
+
Example::
|
|
4484
|
+
|
|
4485
|
+
# The code below shows an example of how to instantiate this type.
|
|
4486
|
+
# The values are placeholders you should change.
|
|
4487
|
+
from aws_cdk import aws_ses as ses
|
|
4488
|
+
|
|
4489
|
+
cfn_mail_manager_address_list = ses.CfnMailManagerAddressList(self, "MyCfnMailManagerAddressList",
|
|
4490
|
+
address_list_name="addressListName",
|
|
4491
|
+
tags=[CfnTag(
|
|
4492
|
+
key="key",
|
|
4493
|
+
value="value"
|
|
4494
|
+
)]
|
|
4495
|
+
)
|
|
4496
|
+
'''
|
|
4497
|
+
|
|
4498
|
+
def __init__(
|
|
4499
|
+
self,
|
|
4500
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
4501
|
+
id: builtins.str,
|
|
4502
|
+
*,
|
|
4503
|
+
address_list_name: typing.Optional[builtins.str] = None,
|
|
4504
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4505
|
+
) -> None:
|
|
4506
|
+
'''
|
|
4507
|
+
:param scope: Scope in which this resource is defined.
|
|
4508
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
4509
|
+
:param address_list_name:
|
|
4510
|
+
:param tags:
|
|
4511
|
+
'''
|
|
4512
|
+
if __debug__:
|
|
4513
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6a8a172d98fe048a3419d1b92dcaf2e59e8461e9b0baf073f812b3916bcd4974)
|
|
4514
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
4515
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4516
|
+
props = CfnMailManagerAddressListProps(
|
|
4517
|
+
address_list_name=address_list_name, tags=tags
|
|
4518
|
+
)
|
|
4519
|
+
|
|
4520
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
4521
|
+
|
|
4522
|
+
@jsii.member(jsii_name="inspect")
|
|
4523
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
4524
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
4525
|
+
|
|
4526
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
4527
|
+
'''
|
|
4528
|
+
if __debug__:
|
|
4529
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4f6a8901ab278ee698ce069b658195d6cc144f36006c6c634fd9c8598d24d83d)
|
|
4530
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
4531
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
4532
|
+
|
|
4533
|
+
@jsii.member(jsii_name="renderProperties")
|
|
4534
|
+
def _render_properties(
|
|
4535
|
+
self,
|
|
4536
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
4537
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4538
|
+
'''
|
|
4539
|
+
:param props: -
|
|
4540
|
+
'''
|
|
4541
|
+
if __debug__:
|
|
4542
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5a2a230c58a2c2b4b62e185b88fe729ffbc699c86e17f9fe3d25e95ae19ea40b)
|
|
4543
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
4544
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
4545
|
+
|
|
4546
|
+
@jsii.python.classproperty
|
|
4547
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
4548
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
4549
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
4550
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
4551
|
+
|
|
4552
|
+
@builtins.property
|
|
4553
|
+
@jsii.member(jsii_name="attrAddressListArn")
|
|
4554
|
+
def attr_address_list_arn(self) -> builtins.str:
|
|
4555
|
+
'''
|
|
4556
|
+
:cloudformationAttribute: AddressListArn
|
|
4557
|
+
'''
|
|
4558
|
+
return typing.cast(builtins.str, jsii.get(self, "attrAddressListArn"))
|
|
4559
|
+
|
|
4560
|
+
@builtins.property
|
|
4561
|
+
@jsii.member(jsii_name="attrAddressListId")
|
|
4562
|
+
def attr_address_list_id(self) -> builtins.str:
|
|
4563
|
+
'''
|
|
4564
|
+
:cloudformationAttribute: AddressListId
|
|
4565
|
+
'''
|
|
4566
|
+
return typing.cast(builtins.str, jsii.get(self, "attrAddressListId"))
|
|
4567
|
+
|
|
4568
|
+
@builtins.property
|
|
4569
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
4570
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
4571
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
4572
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
4573
|
+
|
|
4574
|
+
@builtins.property
|
|
4575
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
4576
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
4577
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
4578
|
+
|
|
4579
|
+
@builtins.property
|
|
4580
|
+
@jsii.member(jsii_name="addressListName")
|
|
4581
|
+
def address_list_name(self) -> typing.Optional[builtins.str]:
|
|
4582
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "addressListName"))
|
|
4583
|
+
|
|
4584
|
+
@address_list_name.setter
|
|
4585
|
+
def address_list_name(self, value: typing.Optional[builtins.str]) -> None:
|
|
4586
|
+
if __debug__:
|
|
4587
|
+
type_hints = typing.get_type_hints(_typecheckingstub__53d1505dab469f39095f9e22ba4d8bdae2405adbe8d8d641e4d4a1abbf6b3770)
|
|
4588
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4589
|
+
jsii.set(self, "addressListName", value) # pyright: ignore[reportArgumentType]
|
|
4590
|
+
|
|
4591
|
+
@builtins.property
|
|
4592
|
+
@jsii.member(jsii_name="tags")
|
|
4593
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
4594
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
4595
|
+
|
|
4596
|
+
@tags.setter
|
|
4597
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
4598
|
+
if __debug__:
|
|
4599
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f941c234d4973425d4ac187f87f54965bfdb82848d3fcf93664acc11143c1068)
|
|
4600
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4601
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
4602
|
+
|
|
4603
|
+
|
|
4604
|
+
@jsii.data_type(
|
|
4605
|
+
jsii_type="aws-cdk-lib.aws_ses.CfnMailManagerAddressListProps",
|
|
4606
|
+
jsii_struct_bases=[],
|
|
4607
|
+
name_mapping={"address_list_name": "addressListName", "tags": "tags"},
|
|
4608
|
+
)
|
|
4609
|
+
class CfnMailManagerAddressListProps:
|
|
4610
|
+
def __init__(
|
|
4611
|
+
self,
|
|
4612
|
+
*,
|
|
4613
|
+
address_list_name: typing.Optional[builtins.str] = None,
|
|
4614
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4615
|
+
) -> None:
|
|
4616
|
+
'''Properties for defining a ``CfnMailManagerAddressList``.
|
|
4617
|
+
|
|
4618
|
+
:param address_list_name:
|
|
4619
|
+
:param tags:
|
|
4620
|
+
|
|
4621
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html
|
|
4622
|
+
:exampleMetadata: fixture=_generated
|
|
4623
|
+
|
|
4624
|
+
Example::
|
|
4625
|
+
|
|
4626
|
+
# The code below shows an example of how to instantiate this type.
|
|
4627
|
+
# The values are placeholders you should change.
|
|
4628
|
+
from aws_cdk import aws_ses as ses
|
|
4629
|
+
|
|
4630
|
+
cfn_mail_manager_address_list_props = ses.CfnMailManagerAddressListProps(
|
|
4631
|
+
address_list_name="addressListName",
|
|
4632
|
+
tags=[CfnTag(
|
|
4633
|
+
key="key",
|
|
4634
|
+
value="value"
|
|
4635
|
+
)]
|
|
4636
|
+
)
|
|
4637
|
+
'''
|
|
4638
|
+
if __debug__:
|
|
4639
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ec45e85ebcc385f7d054df8a6b207754f0fa06560d7270f49432e2594f0626f9)
|
|
4640
|
+
check_type(argname="argument address_list_name", value=address_list_name, expected_type=type_hints["address_list_name"])
|
|
4641
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
4642
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4643
|
+
if address_list_name is not None:
|
|
4644
|
+
self._values["address_list_name"] = address_list_name
|
|
4645
|
+
if tags is not None:
|
|
4646
|
+
self._values["tags"] = tags
|
|
4647
|
+
|
|
4648
|
+
@builtins.property
|
|
4649
|
+
def address_list_name(self) -> typing.Optional[builtins.str]:
|
|
4650
|
+
'''
|
|
4651
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#cfn-ses-mailmanageraddresslist-addresslistname
|
|
4652
|
+
'''
|
|
4653
|
+
result = self._values.get("address_list_name")
|
|
4654
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4655
|
+
|
|
4656
|
+
@builtins.property
|
|
4657
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
4658
|
+
'''
|
|
4659
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddresslist.html#cfn-ses-mailmanageraddresslist-tags
|
|
4660
|
+
'''
|
|
4661
|
+
result = self._values.get("tags")
|
|
4662
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
4663
|
+
|
|
4664
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4665
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4666
|
+
|
|
4667
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4668
|
+
return not (rhs == self)
|
|
4669
|
+
|
|
4670
|
+
def __repr__(self) -> str:
|
|
4671
|
+
return "CfnMailManagerAddressListProps(%s)" % ", ".join(
|
|
4672
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4673
|
+
)
|
|
4674
|
+
|
|
4675
|
+
|
|
4471
4676
|
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
4472
4677
|
class CfnMailManagerArchive(
|
|
4473
4678
|
_CfnResource_9df397a6,
|
|
@@ -17812,6 +18017,8 @@ __all__ = [
|
|
|
17812
18017
|
"CfnMailManagerAddonInstanceProps",
|
|
17813
18018
|
"CfnMailManagerAddonSubscription",
|
|
17814
18019
|
"CfnMailManagerAddonSubscriptionProps",
|
|
18020
|
+
"CfnMailManagerAddressList",
|
|
18021
|
+
"CfnMailManagerAddressListProps",
|
|
17815
18022
|
"CfnMailManagerArchive",
|
|
17816
18023
|
"CfnMailManagerArchiveProps",
|
|
17817
18024
|
"CfnMailManagerIngressPoint",
|
|
@@ -18473,6 +18680,48 @@ def _typecheckingstub__60d068c00268064de7df238df2dd073326a0cbc422fee4d79433b91b5
|
|
|
18473
18680
|
"""Type checking stubs"""
|
|
18474
18681
|
pass
|
|
18475
18682
|
|
|
18683
|
+
def _typecheckingstub__6a8a172d98fe048a3419d1b92dcaf2e59e8461e9b0baf073f812b3916bcd4974(
|
|
18684
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
18685
|
+
id: builtins.str,
|
|
18686
|
+
*,
|
|
18687
|
+
address_list_name: typing.Optional[builtins.str] = None,
|
|
18688
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18689
|
+
) -> None:
|
|
18690
|
+
"""Type checking stubs"""
|
|
18691
|
+
pass
|
|
18692
|
+
|
|
18693
|
+
def _typecheckingstub__4f6a8901ab278ee698ce069b658195d6cc144f36006c6c634fd9c8598d24d83d(
|
|
18694
|
+
inspector: _TreeInspector_488e0dd5,
|
|
18695
|
+
) -> None:
|
|
18696
|
+
"""Type checking stubs"""
|
|
18697
|
+
pass
|
|
18698
|
+
|
|
18699
|
+
def _typecheckingstub__5a2a230c58a2c2b4b62e185b88fe729ffbc699c86e17f9fe3d25e95ae19ea40b(
|
|
18700
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
18701
|
+
) -> None:
|
|
18702
|
+
"""Type checking stubs"""
|
|
18703
|
+
pass
|
|
18704
|
+
|
|
18705
|
+
def _typecheckingstub__53d1505dab469f39095f9e22ba4d8bdae2405adbe8d8d641e4d4a1abbf6b3770(
|
|
18706
|
+
value: typing.Optional[builtins.str],
|
|
18707
|
+
) -> None:
|
|
18708
|
+
"""Type checking stubs"""
|
|
18709
|
+
pass
|
|
18710
|
+
|
|
18711
|
+
def _typecheckingstub__f941c234d4973425d4ac187f87f54965bfdb82848d3fcf93664acc11143c1068(
|
|
18712
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
18713
|
+
) -> None:
|
|
18714
|
+
"""Type checking stubs"""
|
|
18715
|
+
pass
|
|
18716
|
+
|
|
18717
|
+
def _typecheckingstub__ec45e85ebcc385f7d054df8a6b207754f0fa06560d7270f49432e2594f0626f9(
|
|
18718
|
+
*,
|
|
18719
|
+
address_list_name: typing.Optional[builtins.str] = None,
|
|
18720
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18721
|
+
) -> None:
|
|
18722
|
+
"""Type checking stubs"""
|
|
18723
|
+
pass
|
|
18724
|
+
|
|
18476
18725
|
def _typecheckingstub__22dd3c6f42e37a1d2959a6aa4871e671e1737ebb4110933d8bfa22c2c7f5d626(
|
|
18477
18726
|
scope: _constructs_77d1e7e8.Construct,
|
|
18478
18727
|
id: builtins.str,
|