aws-cdk-lib 2.179.0__py3-none-any.whl → 2.180.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 +14 -6
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.179.0.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +47 -0
- aws_cdk/aws_apigateway/__init__.py +6 -6
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_backup/__init__.py +89 -0
- aws_cdk/aws_batch/__init__.py +89 -50
- aws_cdk/aws_bedrock/__init__.py +506 -62
- aws_cdk/aws_cloudfront/__init__.py +1046 -155
- aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
- aws_cdk/aws_cloudtrail/__init__.py +4 -8
- aws_cdk/aws_cloudwatch/__init__.py +1 -1
- aws_cdk/aws_codebuild/__init__.py +2 -2
- aws_cdk/aws_codepipeline/__init__.py +24 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +28 -1
- aws_cdk/aws_codestar/__init__.py +2 -1
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_connect/__init__.py +257 -0
- aws_cdk/aws_datasync/__init__.py +279 -50
- aws_cdk/aws_deadline/__init__.py +683 -6
- aws_cdk/aws_directoryservice/__init__.py +9 -4
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +0 -54
- aws_cdk/aws_ec2/__init__.py +377 -121
- aws_cdk/aws_ecs/__init__.py +20 -35
- aws_cdk/aws_efs/__init__.py +1 -1
- aws_cdk/aws_eks/__init__.py +5 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +13 -27
- aws_cdk/aws_emrcontainers/__init__.py +44 -1
- aws_cdk/aws_events/__init__.py +8 -11
- aws_cdk/aws_fms/__init__.py +5 -5
- aws_cdk/aws_fsx/__init__.py +5 -4
- aws_cdk/aws_glue/__init__.py +161 -0
- aws_cdk/aws_groundstation/__init__.py +23 -1
- aws_cdk/aws_iam/__init__.py +12 -12
- aws_cdk/aws_iot/__init__.py +7 -0
- aws_cdk/aws_ivs/__init__.py +17 -8
- aws_cdk/aws_kinesis/__init__.py +689 -35
- aws_cdk/aws_lambda/__init__.py +10 -15
- aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
- aws_cdk/aws_medialive/__init__.py +314 -4
- aws_cdk/aws_opensearchserverless/__init__.py +19 -0
- aws_cdk/aws_rds/__init__.py +78 -58
- aws_cdk/aws_s3/__init__.py +278 -0
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +228 -8
- aws_cdk/aws_ssm/__init__.py +4 -5
- aws_cdk/aws_stepfunctions/__init__.py +301 -70
- aws_cdk/aws_stepfunctions_tasks/__init__.py +142 -142
- aws_cdk/aws_supportapp/__init__.py +7 -7
- aws_cdk/aws_transfer/__init__.py +820 -2
- aws_cdk/aws_wafv2/__init__.py +17 -9
- aws_cdk/custom_resources/__init__.py +23 -26
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +62 -62
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -1427,6 +1427,219 @@ class CfnContactFlowProps:
|
|
|
1427
1427
|
)
|
|
1428
1428
|
|
|
1429
1429
|
|
|
1430
|
+
@jsii.implements(_IInspectable_c2943556)
|
|
1431
|
+
class CfnContactFlowVersion(
|
|
1432
|
+
_CfnResource_9df397a6,
|
|
1433
|
+
metaclass=jsii.JSIIMeta,
|
|
1434
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnContactFlowVersion",
|
|
1435
|
+
):
|
|
1436
|
+
'''Creates a version for the specified customer-managed flow within the specified instance.
|
|
1437
|
+
|
|
1438
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html
|
|
1439
|
+
:cloudformationResource: AWS::Connect::ContactFlowVersion
|
|
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_contact_flow_version = connect.CfnContactFlowVersion(self, "MyCfnContactFlowVersion",
|
|
1449
|
+
contact_flow_id="contactFlowId",
|
|
1450
|
+
|
|
1451
|
+
# the properties below are optional
|
|
1452
|
+
description="description"
|
|
1453
|
+
)
|
|
1454
|
+
'''
|
|
1455
|
+
|
|
1456
|
+
def __init__(
|
|
1457
|
+
self,
|
|
1458
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
1459
|
+
id: builtins.str,
|
|
1460
|
+
*,
|
|
1461
|
+
contact_flow_id: builtins.str,
|
|
1462
|
+
description: typing.Optional[builtins.str] = None,
|
|
1463
|
+
) -> None:
|
|
1464
|
+
'''
|
|
1465
|
+
:param scope: Scope in which this resource is defined.
|
|
1466
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
1467
|
+
:param contact_flow_id: The identifier of the flow.
|
|
1468
|
+
:param description: The description of the flow version.
|
|
1469
|
+
'''
|
|
1470
|
+
if __debug__:
|
|
1471
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a31de8fadfe8b204a6f20d104c9bd7e6d511bb0a98ca39db212f6ea6f6e7427b)
|
|
1472
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
1473
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
1474
|
+
props = CfnContactFlowVersionProps(
|
|
1475
|
+
contact_flow_id=contact_flow_id, description=description
|
|
1476
|
+
)
|
|
1477
|
+
|
|
1478
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
1479
|
+
|
|
1480
|
+
@jsii.member(jsii_name="inspect")
|
|
1481
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
1482
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
1483
|
+
|
|
1484
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
1485
|
+
'''
|
|
1486
|
+
if __debug__:
|
|
1487
|
+
type_hints = typing.get_type_hints(_typecheckingstub__13f86454b3bf4a5aaf2f2292d0d2d066b4877ddadcbc6f3f09833d142f628fc0)
|
|
1488
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
1489
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
1490
|
+
|
|
1491
|
+
@jsii.member(jsii_name="renderProperties")
|
|
1492
|
+
def _render_properties(
|
|
1493
|
+
self,
|
|
1494
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
1495
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1496
|
+
'''
|
|
1497
|
+
:param props: -
|
|
1498
|
+
'''
|
|
1499
|
+
if __debug__:
|
|
1500
|
+
type_hints = typing.get_type_hints(_typecheckingstub__039e856ccb29689e4ae1a2b96e0d4d66d182b5df351b2638b7229f84798ea120)
|
|
1501
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
1502
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
1503
|
+
|
|
1504
|
+
@jsii.python.classproperty
|
|
1505
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
1506
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
1507
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
1508
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
1509
|
+
|
|
1510
|
+
@builtins.property
|
|
1511
|
+
@jsii.member(jsii_name="attrContactFlowVersionArn")
|
|
1512
|
+
def attr_contact_flow_version_arn(self) -> builtins.str:
|
|
1513
|
+
'''The Amazon Resource Name (ARN) of the contact flow version.
|
|
1514
|
+
|
|
1515
|
+
:cloudformationAttribute: ContactFlowVersionARN
|
|
1516
|
+
'''
|
|
1517
|
+
return typing.cast(builtins.str, jsii.get(self, "attrContactFlowVersionArn"))
|
|
1518
|
+
|
|
1519
|
+
@builtins.property
|
|
1520
|
+
@jsii.member(jsii_name="attrFlowContentSha256")
|
|
1521
|
+
def attr_flow_content_sha256(self) -> builtins.str:
|
|
1522
|
+
'''Indicates the checksum value of the flow content.
|
|
1523
|
+
|
|
1524
|
+
:cloudformationAttribute: FlowContentSha256
|
|
1525
|
+
'''
|
|
1526
|
+
return typing.cast(builtins.str, jsii.get(self, "attrFlowContentSha256"))
|
|
1527
|
+
|
|
1528
|
+
@builtins.property
|
|
1529
|
+
@jsii.member(jsii_name="attrVersion")
|
|
1530
|
+
def attr_version(self) -> jsii.Number:
|
|
1531
|
+
'''The identifier of the flow version.
|
|
1532
|
+
|
|
1533
|
+
:cloudformationAttribute: Version
|
|
1534
|
+
'''
|
|
1535
|
+
return typing.cast(jsii.Number, jsii.get(self, "attrVersion"))
|
|
1536
|
+
|
|
1537
|
+
@builtins.property
|
|
1538
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
1539
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
1540
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
1541
|
+
|
|
1542
|
+
@builtins.property
|
|
1543
|
+
@jsii.member(jsii_name="contactFlowId")
|
|
1544
|
+
def contact_flow_id(self) -> builtins.str:
|
|
1545
|
+
'''The identifier of the flow.'''
|
|
1546
|
+
return typing.cast(builtins.str, jsii.get(self, "contactFlowId"))
|
|
1547
|
+
|
|
1548
|
+
@contact_flow_id.setter
|
|
1549
|
+
def contact_flow_id(self, value: builtins.str) -> None:
|
|
1550
|
+
if __debug__:
|
|
1551
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8c67191011cdc1e35e2efe8a0fc1ca8eb70d92048915331d2c2304e2001167b1)
|
|
1552
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1553
|
+
jsii.set(self, "contactFlowId", value) # pyright: ignore[reportArgumentType]
|
|
1554
|
+
|
|
1555
|
+
@builtins.property
|
|
1556
|
+
@jsii.member(jsii_name="description")
|
|
1557
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
1558
|
+
'''The description of the flow version.'''
|
|
1559
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
1560
|
+
|
|
1561
|
+
@description.setter
|
|
1562
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
1563
|
+
if __debug__:
|
|
1564
|
+
type_hints = typing.get_type_hints(_typecheckingstub__874c4dc9a5e63e7eb152e6db7e2794c6a1ded5d623873f917a2a60c5a6fbf154)
|
|
1565
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1566
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
@jsii.data_type(
|
|
1570
|
+
jsii_type="aws-cdk-lib.aws_connect.CfnContactFlowVersionProps",
|
|
1571
|
+
jsii_struct_bases=[],
|
|
1572
|
+
name_mapping={"contact_flow_id": "contactFlowId", "description": "description"},
|
|
1573
|
+
)
|
|
1574
|
+
class CfnContactFlowVersionProps:
|
|
1575
|
+
def __init__(
|
|
1576
|
+
self,
|
|
1577
|
+
*,
|
|
1578
|
+
contact_flow_id: builtins.str,
|
|
1579
|
+
description: typing.Optional[builtins.str] = None,
|
|
1580
|
+
) -> None:
|
|
1581
|
+
'''Properties for defining a ``CfnContactFlowVersion``.
|
|
1582
|
+
|
|
1583
|
+
:param contact_flow_id: The identifier of the flow.
|
|
1584
|
+
:param description: The description of the flow version.
|
|
1585
|
+
|
|
1586
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html
|
|
1587
|
+
:exampleMetadata: fixture=_generated
|
|
1588
|
+
|
|
1589
|
+
Example::
|
|
1590
|
+
|
|
1591
|
+
# The code below shows an example of how to instantiate this type.
|
|
1592
|
+
# The values are placeholders you should change.
|
|
1593
|
+
from aws_cdk import aws_connect as connect
|
|
1594
|
+
|
|
1595
|
+
cfn_contact_flow_version_props = connect.CfnContactFlowVersionProps(
|
|
1596
|
+
contact_flow_id="contactFlowId",
|
|
1597
|
+
|
|
1598
|
+
# the properties below are optional
|
|
1599
|
+
description="description"
|
|
1600
|
+
)
|
|
1601
|
+
'''
|
|
1602
|
+
if __debug__:
|
|
1603
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1bd431a320275e8a984a962d58a7aaded6a06452a72a1bb623aefe40161e3d66)
|
|
1604
|
+
check_type(argname="argument contact_flow_id", value=contact_flow_id, expected_type=type_hints["contact_flow_id"])
|
|
1605
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1606
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1607
|
+
"contact_flow_id": contact_flow_id,
|
|
1608
|
+
}
|
|
1609
|
+
if description is not None:
|
|
1610
|
+
self._values["description"] = description
|
|
1611
|
+
|
|
1612
|
+
@builtins.property
|
|
1613
|
+
def contact_flow_id(self) -> builtins.str:
|
|
1614
|
+
'''The identifier of the flow.
|
|
1615
|
+
|
|
1616
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html#cfn-connect-contactflowversion-contactflowid
|
|
1617
|
+
'''
|
|
1618
|
+
result = self._values.get("contact_flow_id")
|
|
1619
|
+
assert result is not None, "Required property 'contact_flow_id' is missing"
|
|
1620
|
+
return typing.cast(builtins.str, result)
|
|
1621
|
+
|
|
1622
|
+
@builtins.property
|
|
1623
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
1624
|
+
'''The description of the flow version.
|
|
1625
|
+
|
|
1626
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html#cfn-connect-contactflowversion-description
|
|
1627
|
+
'''
|
|
1628
|
+
result = self._values.get("description")
|
|
1629
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1630
|
+
|
|
1631
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1632
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1633
|
+
|
|
1634
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
1635
|
+
return not (rhs == self)
|
|
1636
|
+
|
|
1637
|
+
def __repr__(self) -> str:
|
|
1638
|
+
return "CfnContactFlowVersionProps(%s)" % ", ".join(
|
|
1639
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
1640
|
+
)
|
|
1641
|
+
|
|
1642
|
+
|
|
1430
1643
|
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
1431
1644
|
class CfnEmailAddress(
|
|
1432
1645
|
_CfnResource_9df397a6,
|
|
@@ -16284,6 +16497,8 @@ __all__ = [
|
|
|
16284
16497
|
"CfnContactFlowModule",
|
|
16285
16498
|
"CfnContactFlowModuleProps",
|
|
16286
16499
|
"CfnContactFlowProps",
|
|
16500
|
+
"CfnContactFlowVersion",
|
|
16501
|
+
"CfnContactFlowVersionProps",
|
|
16287
16502
|
"CfnEmailAddress",
|
|
16288
16503
|
"CfnEmailAddressProps",
|
|
16289
16504
|
"CfnEvaluationForm",
|
|
@@ -16620,6 +16835,48 @@ def _typecheckingstub__c0555b19a226cc1a8bd054951921ffd23e0c635fe29a3d69a330d8262
|
|
|
16620
16835
|
"""Type checking stubs"""
|
|
16621
16836
|
pass
|
|
16622
16837
|
|
|
16838
|
+
def _typecheckingstub__a31de8fadfe8b204a6f20d104c9bd7e6d511bb0a98ca39db212f6ea6f6e7427b(
|
|
16839
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
16840
|
+
id: builtins.str,
|
|
16841
|
+
*,
|
|
16842
|
+
contact_flow_id: builtins.str,
|
|
16843
|
+
description: typing.Optional[builtins.str] = None,
|
|
16844
|
+
) -> None:
|
|
16845
|
+
"""Type checking stubs"""
|
|
16846
|
+
pass
|
|
16847
|
+
|
|
16848
|
+
def _typecheckingstub__13f86454b3bf4a5aaf2f2292d0d2d066b4877ddadcbc6f3f09833d142f628fc0(
|
|
16849
|
+
inspector: _TreeInspector_488e0dd5,
|
|
16850
|
+
) -> None:
|
|
16851
|
+
"""Type checking stubs"""
|
|
16852
|
+
pass
|
|
16853
|
+
|
|
16854
|
+
def _typecheckingstub__039e856ccb29689e4ae1a2b96e0d4d66d182b5df351b2638b7229f84798ea120(
|
|
16855
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
16856
|
+
) -> None:
|
|
16857
|
+
"""Type checking stubs"""
|
|
16858
|
+
pass
|
|
16859
|
+
|
|
16860
|
+
def _typecheckingstub__8c67191011cdc1e35e2efe8a0fc1ca8eb70d92048915331d2c2304e2001167b1(
|
|
16861
|
+
value: builtins.str,
|
|
16862
|
+
) -> None:
|
|
16863
|
+
"""Type checking stubs"""
|
|
16864
|
+
pass
|
|
16865
|
+
|
|
16866
|
+
def _typecheckingstub__874c4dc9a5e63e7eb152e6db7e2794c6a1ded5d623873f917a2a60c5a6fbf154(
|
|
16867
|
+
value: typing.Optional[builtins.str],
|
|
16868
|
+
) -> None:
|
|
16869
|
+
"""Type checking stubs"""
|
|
16870
|
+
pass
|
|
16871
|
+
|
|
16872
|
+
def _typecheckingstub__1bd431a320275e8a984a962d58a7aaded6a06452a72a1bb623aefe40161e3d66(
|
|
16873
|
+
*,
|
|
16874
|
+
contact_flow_id: builtins.str,
|
|
16875
|
+
description: typing.Optional[builtins.str] = None,
|
|
16876
|
+
) -> None:
|
|
16877
|
+
"""Type checking stubs"""
|
|
16878
|
+
pass
|
|
16879
|
+
|
|
16623
16880
|
def _typecheckingstub__82663491f0adb2dbe44ce9a95c4b21bf5d7529ba2b8adcceab5da9bedc3d1370(
|
|
16624
16881
|
scope: _constructs_77d1e7e8.Construct,
|
|
16625
16882
|
id: builtins.str,
|