aws-cdk-lib 2.154.0__py3-none-any.whl → 2.154.1__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.154.0.jsii.tgz → aws-cdk-lib@2.154.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +13 -14
- aws_cdk/aws_bedrock/__init__.py +2672 -306
- aws_cdk/aws_cloudfront/__init__.py +16 -3
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_ec2/__init__.py +20 -12
- aws_cdk/aws_ecs/__init__.py +5 -3
- aws_cdk/aws_gamelift/__init__.py +52 -40
- aws_cdk/aws_glue/__init__.py +55 -4
- aws_cdk/aws_imagebuilder/__init__.py +6 -6
- aws_cdk/aws_ivs/__init__.py +458 -2
- aws_cdk/aws_medialive/__init__.py +41 -0
- aws_cdk/aws_msk/__init__.py +88 -0
- aws_cdk/aws_sagemaker/__init__.py +2 -2
- aws_cdk/aws_ssm/__init__.py +5 -5
- aws_cdk/custom_resources/__init__.py +7 -1
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/RECORD +23 -23
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.154.0.dist-info → aws_cdk_lib-2.154.1.dist-info}/top_level.txt +0 -0
|
@@ -24191,6 +24191,7 @@ class CfnMultiplexprogram(
|
|
|
24191
24191
|
from aws_cdk import aws_medialive as medialive
|
|
24192
24192
|
|
|
24193
24193
|
cfn_multiplexprogram = medialive.CfnMultiplexprogram(self, "MyCfnMultiplexprogram",
|
|
24194
|
+
channel_id="channelId",
|
|
24194
24195
|
multiplex_id="multiplexId",
|
|
24195
24196
|
multiplex_program_settings=medialive.CfnMultiplexprogram.MultiplexProgramSettingsProperty(
|
|
24196
24197
|
program_number=123,
|
|
@@ -24239,6 +24240,7 @@ class CfnMultiplexprogram(
|
|
|
24239
24240
|
scope: _constructs_77d1e7e8.Construct,
|
|
24240
24241
|
id: builtins.str,
|
|
24241
24242
|
*,
|
|
24243
|
+
channel_id: typing.Optional[builtins.str] = None,
|
|
24242
24244
|
multiplex_id: typing.Optional[builtins.str] = None,
|
|
24243
24245
|
multiplex_program_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMultiplexprogram.MultiplexProgramSettingsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
24244
24246
|
packet_identifiers_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnMultiplexprogram.MultiplexProgramPacketIdentifiersMapProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -24249,6 +24251,7 @@ class CfnMultiplexprogram(
|
|
|
24249
24251
|
'''
|
|
24250
24252
|
:param scope: Scope in which this resource is defined.
|
|
24251
24253
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
24254
|
+
:param channel_id: The MediaLive channel associated with the program.
|
|
24252
24255
|
:param multiplex_id: The unique id of the multiplex.
|
|
24253
24256
|
:param multiplex_program_settings: Multiplex Program settings configuration.
|
|
24254
24257
|
:param packet_identifiers_map: Packet identifiers map for a given Multiplex program.
|
|
@@ -24261,6 +24264,7 @@ class CfnMultiplexprogram(
|
|
|
24261
24264
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
24262
24265
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
24263
24266
|
props = CfnMultiplexprogramProps(
|
|
24267
|
+
channel_id=channel_id,
|
|
24264
24268
|
multiplex_id=multiplex_id,
|
|
24265
24269
|
multiplex_program_settings=multiplex_program_settings,
|
|
24266
24270
|
packet_identifiers_map=packet_identifiers_map,
|
|
@@ -24315,6 +24319,19 @@ class CfnMultiplexprogram(
|
|
|
24315
24319
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
24316
24320
|
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
24317
24321
|
|
|
24322
|
+
@builtins.property
|
|
24323
|
+
@jsii.member(jsii_name="channelId")
|
|
24324
|
+
def channel_id(self) -> typing.Optional[builtins.str]:
|
|
24325
|
+
'''The MediaLive channel associated with the program.'''
|
|
24326
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "channelId"))
|
|
24327
|
+
|
|
24328
|
+
@channel_id.setter
|
|
24329
|
+
def channel_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
24330
|
+
if __debug__:
|
|
24331
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9561e3405511ef7da3fca8bead238e3b87bcd0ff2f533806ddb3f276557fd66e)
|
|
24332
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
24333
|
+
jsii.set(self, "channelId", value) # pyright: ignore[reportArgumentType]
|
|
24334
|
+
|
|
24318
24335
|
@builtins.property
|
|
24319
24336
|
@jsii.member(jsii_name="multiplexId")
|
|
24320
24337
|
def multiplex_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -25097,6 +25114,7 @@ class CfnMultiplexprogram(
|
|
|
25097
25114
|
jsii_type="aws-cdk-lib.aws_medialive.CfnMultiplexprogramProps",
|
|
25098
25115
|
jsii_struct_bases=[],
|
|
25099
25116
|
name_mapping={
|
|
25117
|
+
"channel_id": "channelId",
|
|
25100
25118
|
"multiplex_id": "multiplexId",
|
|
25101
25119
|
"multiplex_program_settings": "multiplexProgramSettings",
|
|
25102
25120
|
"packet_identifiers_map": "packetIdentifiersMap",
|
|
@@ -25109,6 +25127,7 @@ class CfnMultiplexprogramProps:
|
|
|
25109
25127
|
def __init__(
|
|
25110
25128
|
self,
|
|
25111
25129
|
*,
|
|
25130
|
+
channel_id: typing.Optional[builtins.str] = None,
|
|
25112
25131
|
multiplex_id: typing.Optional[builtins.str] = None,
|
|
25113
25132
|
multiplex_program_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMultiplexprogram.MultiplexProgramSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
25114
25133
|
packet_identifiers_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMultiplexprogram.MultiplexProgramPacketIdentifiersMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -25118,6 +25137,7 @@ class CfnMultiplexprogramProps:
|
|
|
25118
25137
|
) -> None:
|
|
25119
25138
|
'''Properties for defining a ``CfnMultiplexprogram``.
|
|
25120
25139
|
|
|
25140
|
+
:param channel_id: The MediaLive channel associated with the program.
|
|
25121
25141
|
:param multiplex_id: The unique id of the multiplex.
|
|
25122
25142
|
:param multiplex_program_settings: Multiplex Program settings configuration.
|
|
25123
25143
|
:param packet_identifiers_map: Packet identifiers map for a given Multiplex program.
|
|
@@ -25135,6 +25155,7 @@ class CfnMultiplexprogramProps:
|
|
|
25135
25155
|
from aws_cdk import aws_medialive as medialive
|
|
25136
25156
|
|
|
25137
25157
|
cfn_multiplexprogram_props = medialive.CfnMultiplexprogramProps(
|
|
25158
|
+
channel_id="channelId",
|
|
25138
25159
|
multiplex_id="multiplexId",
|
|
25139
25160
|
multiplex_program_settings=medialive.CfnMultiplexprogram.MultiplexProgramSettingsProperty(
|
|
25140
25161
|
program_number=123,
|
|
@@ -25179,6 +25200,7 @@ class CfnMultiplexprogramProps:
|
|
|
25179
25200
|
'''
|
|
25180
25201
|
if __debug__:
|
|
25181
25202
|
type_hints = typing.get_type_hints(_typecheckingstub__f73df2de9c8f0593b389bf604ffaf3d1b093165585c8988cb33c99e1826cb730)
|
|
25203
|
+
check_type(argname="argument channel_id", value=channel_id, expected_type=type_hints["channel_id"])
|
|
25182
25204
|
check_type(argname="argument multiplex_id", value=multiplex_id, expected_type=type_hints["multiplex_id"])
|
|
25183
25205
|
check_type(argname="argument multiplex_program_settings", value=multiplex_program_settings, expected_type=type_hints["multiplex_program_settings"])
|
|
25184
25206
|
check_type(argname="argument packet_identifiers_map", value=packet_identifiers_map, expected_type=type_hints["packet_identifiers_map"])
|
|
@@ -25186,6 +25208,8 @@ class CfnMultiplexprogramProps:
|
|
|
25186
25208
|
check_type(argname="argument preferred_channel_pipeline", value=preferred_channel_pipeline, expected_type=type_hints["preferred_channel_pipeline"])
|
|
25187
25209
|
check_type(argname="argument program_name", value=program_name, expected_type=type_hints["program_name"])
|
|
25188
25210
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
25211
|
+
if channel_id is not None:
|
|
25212
|
+
self._values["channel_id"] = channel_id
|
|
25189
25213
|
if multiplex_id is not None:
|
|
25190
25214
|
self._values["multiplex_id"] = multiplex_id
|
|
25191
25215
|
if multiplex_program_settings is not None:
|
|
@@ -25199,6 +25223,15 @@ class CfnMultiplexprogramProps:
|
|
|
25199
25223
|
if program_name is not None:
|
|
25200
25224
|
self._values["program_name"] = program_name
|
|
25201
25225
|
|
|
25226
|
+
@builtins.property
|
|
25227
|
+
def channel_id(self) -> typing.Optional[builtins.str]:
|
|
25228
|
+
'''The MediaLive channel associated with the program.
|
|
25229
|
+
|
|
25230
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplexprogram.html#cfn-medialive-multiplexprogram-channelid
|
|
25231
|
+
'''
|
|
25232
|
+
result = self._values.get("channel_id")
|
|
25233
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
25234
|
+
|
|
25202
25235
|
@builtins.property
|
|
25203
25236
|
def multiplex_id(self) -> typing.Optional[builtins.str]:
|
|
25204
25237
|
'''The unique id of the multiplex.
|
|
@@ -27300,6 +27333,7 @@ def _typecheckingstub__1e8cee4de488a1e3af5984f421ac406fb3ce2264e4688ae568997c405
|
|
|
27300
27333
|
scope: _constructs_77d1e7e8.Construct,
|
|
27301
27334
|
id: builtins.str,
|
|
27302
27335
|
*,
|
|
27336
|
+
channel_id: typing.Optional[builtins.str] = None,
|
|
27303
27337
|
multiplex_id: typing.Optional[builtins.str] = None,
|
|
27304
27338
|
multiplex_program_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMultiplexprogram.MultiplexProgramSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27305
27339
|
packet_identifiers_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMultiplexprogram.MultiplexProgramPacketIdentifiersMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -27322,6 +27356,12 @@ def _typecheckingstub__acad53db30a2a5e33a6f5a6711d6d6ce106a80011ec9feff43990953e
|
|
|
27322
27356
|
"""Type checking stubs"""
|
|
27323
27357
|
pass
|
|
27324
27358
|
|
|
27359
|
+
def _typecheckingstub__9561e3405511ef7da3fca8bead238e3b87bcd0ff2f533806ddb3f276557fd66e(
|
|
27360
|
+
value: typing.Optional[builtins.str],
|
|
27361
|
+
) -> None:
|
|
27362
|
+
"""Type checking stubs"""
|
|
27363
|
+
pass
|
|
27364
|
+
|
|
27325
27365
|
def _typecheckingstub__b94a917cbdd17ac18baea629f9c49823350870af7f009295dbe06082a0515154(
|
|
27326
27366
|
value: typing.Optional[builtins.str],
|
|
27327
27367
|
) -> None:
|
|
@@ -27422,6 +27462,7 @@ def _typecheckingstub__97bea0267704f0addfd06d5672cbe39ebea79dbcc03e14eb7dd6ebdab
|
|
|
27422
27462
|
|
|
27423
27463
|
def _typecheckingstub__f73df2de9c8f0593b389bf604ffaf3d1b093165585c8988cb33c99e1826cb730(
|
|
27424
27464
|
*,
|
|
27465
|
+
channel_id: typing.Optional[builtins.str] = None,
|
|
27425
27466
|
multiplex_id: typing.Optional[builtins.str] = None,
|
|
27426
27467
|
multiplex_program_settings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMultiplexprogram.MultiplexProgramSettingsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27427
27468
|
packet_identifiers_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnMultiplexprogram.MultiplexProgramPacketIdentifiersMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
aws_cdk/aws_msk/__init__.py
CHANGED
|
@@ -4084,6 +4084,9 @@ class CfnReplicator(
|
|
|
4084
4084
|
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4085
4085
|
type="type"
|
|
4086
4086
|
),
|
|
4087
|
+
topic_name_configuration=msk.CfnReplicator.ReplicationTopicNameConfigurationProperty(
|
|
4088
|
+
type="type"
|
|
4089
|
+
),
|
|
4087
4090
|
topics_to_exclude=["topicsToExclude"]
|
|
4088
4091
|
)
|
|
4089
4092
|
)],
|
|
@@ -4682,6 +4685,9 @@ class CfnReplicator(
|
|
|
4682
4685
|
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4683
4686
|
type="type"
|
|
4684
4687
|
),
|
|
4688
|
+
topic_name_configuration=msk.CfnReplicator.ReplicationTopicNameConfigurationProperty(
|
|
4689
|
+
type="type"
|
|
4690
|
+
),
|
|
4685
4691
|
topics_to_exclude=["topicsToExclude"]
|
|
4686
4692
|
)
|
|
4687
4693
|
)
|
|
@@ -4816,6 +4822,57 @@ class CfnReplicator(
|
|
|
4816
4822
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4817
4823
|
)
|
|
4818
4824
|
|
|
4825
|
+
@jsii.data_type(
|
|
4826
|
+
jsii_type="aws-cdk-lib.aws_msk.CfnReplicator.ReplicationTopicNameConfigurationProperty",
|
|
4827
|
+
jsii_struct_bases=[],
|
|
4828
|
+
name_mapping={"type": "type"},
|
|
4829
|
+
)
|
|
4830
|
+
class ReplicationTopicNameConfigurationProperty:
|
|
4831
|
+
def __init__(self, *, type: typing.Optional[builtins.str] = None) -> None:
|
|
4832
|
+
'''Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
|
|
4833
|
+
|
|
4834
|
+
:param type: The type of replicated topic name.
|
|
4835
|
+
|
|
4836
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationtopicnameconfiguration.html
|
|
4837
|
+
:exampleMetadata: fixture=_generated
|
|
4838
|
+
|
|
4839
|
+
Example::
|
|
4840
|
+
|
|
4841
|
+
# The code below shows an example of how to instantiate this type.
|
|
4842
|
+
# The values are placeholders you should change.
|
|
4843
|
+
from aws_cdk import aws_msk as msk
|
|
4844
|
+
|
|
4845
|
+
replication_topic_name_configuration_property = msk.CfnReplicator.ReplicationTopicNameConfigurationProperty(
|
|
4846
|
+
type="type"
|
|
4847
|
+
)
|
|
4848
|
+
'''
|
|
4849
|
+
if __debug__:
|
|
4850
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9f42794dadb7055f47c6b1d4ac38c1e97c2d772710d83250815945ce778bce1c)
|
|
4851
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
4852
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4853
|
+
if type is not None:
|
|
4854
|
+
self._values["type"] = type
|
|
4855
|
+
|
|
4856
|
+
@builtins.property
|
|
4857
|
+
def type(self) -> typing.Optional[builtins.str]:
|
|
4858
|
+
'''The type of replicated topic name.
|
|
4859
|
+
|
|
4860
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationtopicnameconfiguration.html#cfn-msk-replicator-replicationtopicnameconfiguration-type
|
|
4861
|
+
'''
|
|
4862
|
+
result = self._values.get("type")
|
|
4863
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4864
|
+
|
|
4865
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4866
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4867
|
+
|
|
4868
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4869
|
+
return not (rhs == self)
|
|
4870
|
+
|
|
4871
|
+
def __repr__(self) -> str:
|
|
4872
|
+
return "ReplicationTopicNameConfigurationProperty(%s)" % ", ".join(
|
|
4873
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4874
|
+
)
|
|
4875
|
+
|
|
4819
4876
|
@jsii.data_type(
|
|
4820
4877
|
jsii_type="aws-cdk-lib.aws_msk.CfnReplicator.TopicReplicationProperty",
|
|
4821
4878
|
jsii_struct_bases=[],
|
|
@@ -4825,6 +4882,7 @@ class CfnReplicator(
|
|
|
4825
4882
|
"copy_topic_configurations": "copyTopicConfigurations",
|
|
4826
4883
|
"detect_and_copy_new_topics": "detectAndCopyNewTopics",
|
|
4827
4884
|
"starting_position": "startingPosition",
|
|
4885
|
+
"topic_name_configuration": "topicNameConfiguration",
|
|
4828
4886
|
"topics_to_exclude": "topicsToExclude",
|
|
4829
4887
|
},
|
|
4830
4888
|
)
|
|
@@ -4837,6 +4895,7 @@ class CfnReplicator(
|
|
|
4837
4895
|
copy_topic_configurations: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4838
4896
|
detect_and_copy_new_topics: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4839
4897
|
starting_position: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnReplicator.ReplicationStartingPositionProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4898
|
+
topic_name_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnReplicator.ReplicationTopicNameConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4840
4899
|
topics_to_exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4841
4900
|
) -> None:
|
|
4842
4901
|
'''
|
|
@@ -4845,6 +4904,7 @@ class CfnReplicator(
|
|
|
4845
4904
|
:param copy_topic_configurations: Whether to periodically configure remote topics to match their corresponding upstream topics.
|
|
4846
4905
|
:param detect_and_copy_new_topics: Whether to periodically check for new topics and partitions.
|
|
4847
4906
|
:param starting_position: Configuration for specifying the position in the topics to start replicating from.
|
|
4907
|
+
:param topic_name_configuration: Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
|
|
4848
4908
|
:param topics_to_exclude: List of regular expression patterns indicating the topics that should not be replicated.
|
|
4849
4909
|
|
|
4850
4910
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-topicreplication.html
|
|
@@ -4866,6 +4926,9 @@ class CfnReplicator(
|
|
|
4866
4926
|
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
4867
4927
|
type="type"
|
|
4868
4928
|
),
|
|
4929
|
+
topic_name_configuration=msk.CfnReplicator.ReplicationTopicNameConfigurationProperty(
|
|
4930
|
+
type="type"
|
|
4931
|
+
),
|
|
4869
4932
|
topics_to_exclude=["topicsToExclude"]
|
|
4870
4933
|
)
|
|
4871
4934
|
'''
|
|
@@ -4876,6 +4939,7 @@ class CfnReplicator(
|
|
|
4876
4939
|
check_type(argname="argument copy_topic_configurations", value=copy_topic_configurations, expected_type=type_hints["copy_topic_configurations"])
|
|
4877
4940
|
check_type(argname="argument detect_and_copy_new_topics", value=detect_and_copy_new_topics, expected_type=type_hints["detect_and_copy_new_topics"])
|
|
4878
4941
|
check_type(argname="argument starting_position", value=starting_position, expected_type=type_hints["starting_position"])
|
|
4942
|
+
check_type(argname="argument topic_name_configuration", value=topic_name_configuration, expected_type=type_hints["topic_name_configuration"])
|
|
4879
4943
|
check_type(argname="argument topics_to_exclude", value=topics_to_exclude, expected_type=type_hints["topics_to_exclude"])
|
|
4880
4944
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4881
4945
|
"topics_to_replicate": topics_to_replicate,
|
|
@@ -4888,6 +4952,8 @@ class CfnReplicator(
|
|
|
4888
4952
|
self._values["detect_and_copy_new_topics"] = detect_and_copy_new_topics
|
|
4889
4953
|
if starting_position is not None:
|
|
4890
4954
|
self._values["starting_position"] = starting_position
|
|
4955
|
+
if topic_name_configuration is not None:
|
|
4956
|
+
self._values["topic_name_configuration"] = topic_name_configuration
|
|
4891
4957
|
if topics_to_exclude is not None:
|
|
4892
4958
|
self._values["topics_to_exclude"] = topics_to_exclude
|
|
4893
4959
|
|
|
@@ -4945,6 +5011,17 @@ class CfnReplicator(
|
|
|
4945
5011
|
result = self._values.get("starting_position")
|
|
4946
5012
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnReplicator.ReplicationStartingPositionProperty"]], result)
|
|
4947
5013
|
|
|
5014
|
+
@builtins.property
|
|
5015
|
+
def topic_name_configuration(
|
|
5016
|
+
self,
|
|
5017
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnReplicator.ReplicationTopicNameConfigurationProperty"]]:
|
|
5018
|
+
'''Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
|
|
5019
|
+
|
|
5020
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-topicreplication.html#cfn-msk-replicator-topicreplication-topicnameconfiguration
|
|
5021
|
+
'''
|
|
5022
|
+
result = self._values.get("topic_name_configuration")
|
|
5023
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnReplicator.ReplicationTopicNameConfigurationProperty"]], result)
|
|
5024
|
+
|
|
4948
5025
|
@builtins.property
|
|
4949
5026
|
def topics_to_exclude(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4950
5027
|
'''List of regular expression patterns indicating the topics that should not be replicated.
|
|
@@ -5044,6 +5121,9 @@ class CfnReplicatorProps:
|
|
|
5044
5121
|
starting_position=msk.CfnReplicator.ReplicationStartingPositionProperty(
|
|
5045
5122
|
type="type"
|
|
5046
5123
|
),
|
|
5124
|
+
topic_name_configuration=msk.CfnReplicator.ReplicationTopicNameConfigurationProperty(
|
|
5125
|
+
type="type"
|
|
5126
|
+
),
|
|
5047
5127
|
topics_to_exclude=["topicsToExclude"]
|
|
5048
5128
|
)
|
|
5049
5129
|
)],
|
|
@@ -6738,6 +6818,13 @@ def _typecheckingstub__5867862d62f899b15989ba1bdfade827bc8239f7341776ead0babb821
|
|
|
6738
6818
|
"""Type checking stubs"""
|
|
6739
6819
|
pass
|
|
6740
6820
|
|
|
6821
|
+
def _typecheckingstub__9f42794dadb7055f47c6b1d4ac38c1e97c2d772710d83250815945ce778bce1c(
|
|
6822
|
+
*,
|
|
6823
|
+
type: typing.Optional[builtins.str] = None,
|
|
6824
|
+
) -> None:
|
|
6825
|
+
"""Type checking stubs"""
|
|
6826
|
+
pass
|
|
6827
|
+
|
|
6741
6828
|
def _typecheckingstub__0c30cafe96a0d51060e8bc61471dbbee1baf46133c8ecfbc997c5305121f3d6d(
|
|
6742
6829
|
*,
|
|
6743
6830
|
topics_to_replicate: typing.Sequence[builtins.str],
|
|
@@ -6745,6 +6832,7 @@ def _typecheckingstub__0c30cafe96a0d51060e8bc61471dbbee1baf46133c8ecfbc997c53051
|
|
|
6745
6832
|
copy_topic_configurations: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6746
6833
|
detect_and_copy_new_topics: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6747
6834
|
starting_position: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnReplicator.ReplicationStartingPositionProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6835
|
+
topic_name_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnReplicator.ReplicationTopicNameConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6748
6836
|
topics_to_exclude: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6749
6837
|
) -> None:
|
|
6750
6838
|
"""Type checking stubs"""
|
|
@@ -18022,7 +18022,7 @@ class CfnModel(
|
|
|
18022
18022
|
'''Describes the container, as part of model definition.
|
|
18023
18023
|
|
|
18024
18024
|
:param container_hostname: This parameter is ignored for models that contain only a ``PrimaryContainer`` . When a ``ContainerDefinition`` is part of an inference pipeline, the value of the parameter uniquely identifies the container for the purposes of logging and metrics. For information, see `Use Logs and Metrics to Monitor an Inference Pipeline <https://docs.aws.amazon.com/sagemaker/latest/dg/inference-pipeline-logs-metrics.html>`_ . If you don't specify a value for this parameter for a ``ContainerDefinition`` that is part of an inference pipeline, a unique name is automatically assigned based on the position of the ``ContainerDefinition`` in the pipeline. If you specify a value for the ``ContainerHostName`` for any ``ContainerDefinition`` that is part of an inference pipeline, you must specify a value for the ``ContainerHostName`` parameter of every ``ContainerDefinition`` in that pipeline.
|
|
18025
|
-
:param environment: The environment variables to set in the Docker container. The maximum length of each key and value in the ``Environment`` map is 1024 bytes. The maximum length of all keys and values in the map, combined, is 32 KB. If you pass multiple containers to a ``CreateModel`` request, then the maximum length of all of their maps, combined, is also 32 KB.
|
|
18025
|
+
:param environment: The environment variables to set in the Docker container. Don't include any sensitive data in your environment variables. The maximum length of each key and value in the ``Environment`` map is 1024 bytes. The maximum length of all keys and values in the map, combined, is 32 KB. If you pass multiple containers to a ``CreateModel`` request, then the maximum length of all of their maps, combined, is also 32 KB.
|
|
18026
18026
|
:param image: The path where inference code is stored. This can be either in Amazon EC2 Container Registry or in a Docker registry that is accessible from the same VPC that you configure for your endpoint. If you are using your own custom algorithm instead of an algorithm provided by SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both ``registry/repository[:tag]`` and ``registry/repository[@digest]`` image path formats. For more information, see `Using Your Own Algorithms with Amazon SageMaker <https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html>`_ . .. epigraph:: The model artifacts in an Amazon S3 bucket and the Docker image for inference container in Amazon EC2 Container Registry must be in the same region as the model or endpoint you are creating.
|
|
18027
18027
|
:param image_config: Specifies whether the model container is in Amazon ECR or a private Docker registry accessible from your Amazon Virtual Private Cloud (VPC). For information about storing containers in a private Docker registry, see `Use a Private Docker Registry for Real-Time Inference Containers <https://docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-containers-inference-private.html>`_ . .. epigraph:: The model artifacts in an Amazon S3 bucket and the Docker image for inference container in Amazon EC2 Container Registry must be in the same region as the model or endpoint you are creating.
|
|
18028
18028
|
:param inference_specification_name: The inference specification name in the model package version.
|
|
@@ -18126,7 +18126,7 @@ class CfnModel(
|
|
|
18126
18126
|
|
|
18127
18127
|
@builtins.property
|
|
18128
18128
|
def environment(self) -> typing.Any:
|
|
18129
|
-
'''The environment variables to set in the Docker container.
|
|
18129
|
+
'''The environment variables to set in the Docker container. Don't include any sensitive data in your environment variables.
|
|
18130
18130
|
|
|
18131
18131
|
The maximum length of each key and value in the ``Environment`` map is 1024 bytes. The maximum length of all keys and values in the map, combined, is 32 KB. If you pass multiple containers to a ``CreateModel`` request, then the maximum length of all of their maps, combined, is also 32 KB.
|
|
18132
18132
|
|
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -1538,7 +1538,7 @@ class CfnDocument(
|
|
|
1538
1538
|
|
|
1539
1539
|
:param key: The key of a key-value pair that identifies the location of an attachment to a document.
|
|
1540
1540
|
:param name: The name of the document attachment file.
|
|
1541
|
-
:param values: The value of a key-value pair that identifies the location of an attachment to a document. The format for *Value* depends on the type of key you specify. - For the key *SourceUrl* , the value is an S3 bucket location. For example: ``"Values": [ "s3://
|
|
1541
|
+
:param values: The value of a key-value pair that identifies the location of an attachment to a document. The format for *Value* depends on the type of key you specify. - For the key *SourceUrl* , the value is an S3 bucket location. For example: ``"Values": [ "s3://amzn-s3-demo-bucket/my-prefix" ]`` - For the key *S3FileUrl* , the value is a file in an S3 bucket. For example: ``"Values": [ "s3://amzn-s3-demo-bucket/my-prefix/my-file.py" ]`` - For the key *AttachmentReference* , the value is constructed from the name of another SSM document in your account, a version number of that document, and a file attached to that document version that you want to reuse. For example: ``"Values": [ "MyOtherDocument/3/my-other-file.py" ]`` However, if the SSM document is shared with you from another account, the full SSM document ARN must be specified instead of the document name only. For example: ``"Values": [ "arn:aws:ssm:us-east-2:111122223333:document/OtherAccountDocument/3/their-file.py" ]``
|
|
1542
1542
|
|
|
1543
1543
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-attachmentssource.html
|
|
1544
1544
|
:exampleMetadata: fixture=_generated
|
|
@@ -1594,11 +1594,11 @@ class CfnDocument(
|
|
|
1594
1594
|
|
|
1595
1595
|
- For the key *SourceUrl* , the value is an S3 bucket location. For example:
|
|
1596
1596
|
|
|
1597
|
-
``"Values": [ "s3://
|
|
1597
|
+
``"Values": [ "s3://amzn-s3-demo-bucket/my-prefix" ]``
|
|
1598
1598
|
|
|
1599
1599
|
- For the key *S3FileUrl* , the value is a file in an S3 bucket. For example:
|
|
1600
1600
|
|
|
1601
|
-
``"Values": [ "s3://
|
|
1601
|
+
``"Values": [ "s3://amzn-s3-demo-bucket/my-prefix/my-file.py" ]``
|
|
1602
1602
|
|
|
1603
1603
|
- For the key *AttachmentReference* , the value is constructed from the name of another SSM document in your account, a version number of that document, and a file attached to that document version that you want to reuse. For example:
|
|
1604
1604
|
|
|
@@ -5880,7 +5880,7 @@ class CfnPatchBaseline(
|
|
|
5880
5880
|
The ``PatchRules`` property of the `RuleGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rulegroup.html>`_ property type contains a list of ``Rule`` property types.
|
|
5881
5881
|
|
|
5882
5882
|
:param approve_after_days: The number of days after the release date of each patch matched by the rule that the patch is marked as approved in the patch baseline. For example, a value of ``7`` means that patches are approved seven days after they are released. .. epigraph:: This parameter is marked as not required, but your request must include a value for either ``ApproveAfterDays`` or ``ApproveUntilDate`` . Not supported for Debian Server or Ubuntu Server.
|
|
5883
|
-
:param approve_until_date: The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically. Enter dates in the format ``YYYY-MM-DD`` . For example, ``
|
|
5883
|
+
:param approve_until_date: The cutoff date for auto approval of released patches. Any patches released on or before this date are installed automatically. Enter dates in the format ``YYYY-MM-DD`` . For example, ``2024-12-31`` . .. epigraph:: This parameter is marked as not required, but your request must include a value for either ``ApproveUntilDate`` or ``ApproveAfterDays`` . Not supported for Debian Server or Ubuntu Server.
|
|
5884
5884
|
:param compliance_level: A compliance severity level for all approved patches in a patch baseline. Valid compliance severity levels include the following: ``UNSPECIFIED`` , ``CRITICAL`` , ``HIGH`` , ``MEDIUM`` , ``LOW`` , and ``INFORMATIONAL`` .
|
|
5885
5885
|
:param enable_non_security: For managed nodes identified by the approval rule filters, enables a patch baseline to apply non-security updates available in the specified repository. The default value is ``false`` . Applies to Linux managed nodes only. Default: - false
|
|
5886
5886
|
:param patch_filter_group: The patch filter group that defines the criteria for the rule.
|
|
@@ -5948,7 +5948,7 @@ class CfnPatchBaseline(
|
|
|
5948
5948
|
|
|
5949
5949
|
Any patches released on or before this date are installed automatically.
|
|
5950
5950
|
|
|
5951
|
-
Enter dates in the format ``YYYY-MM-DD`` . For example, ``
|
|
5951
|
+
Enter dates in the format ``YYYY-MM-DD`` . For example, ``2024-12-31`` .
|
|
5952
5952
|
.. epigraph::
|
|
5953
5953
|
|
|
5954
5954
|
This parameter is marked as not required, but your request must include a value for either ``ApproveUntilDate`` or ``ApproveAfterDays`` .
|
|
@@ -1797,7 +1797,9 @@ class CustomResourceConfig(
|
|
|
1797
1797
|
metaclass=jsii.JSIIMeta,
|
|
1798
1798
|
jsii_type="aws-cdk-lib.custom_resources.CustomResourceConfig",
|
|
1799
1799
|
):
|
|
1800
|
-
'''Manages AWS-vended Custom Resources
|
|
1800
|
+
'''Manages AWS-vended Custom Resources.
|
|
1801
|
+
|
|
1802
|
+
This feature is currently experimental.
|
|
1801
1803
|
|
|
1802
1804
|
:exampleMetadata: fixture=_generated
|
|
1803
1805
|
|
|
@@ -1852,6 +1854,8 @@ class CustomResourceLogRetention(
|
|
|
1852
1854
|
):
|
|
1853
1855
|
'''Manages log retention for AWS-vended custom resources.
|
|
1854
1856
|
|
|
1857
|
+
This feature is currently experimental.
|
|
1858
|
+
|
|
1855
1859
|
:exampleMetadata: fixture=_generated
|
|
1856
1860
|
|
|
1857
1861
|
Example::
|
|
@@ -1892,6 +1896,8 @@ class CustomResourceRemovalPolicy(
|
|
|
1892
1896
|
):
|
|
1893
1897
|
'''Manages removal policy for AWS-vended custom resources.
|
|
1894
1898
|
|
|
1899
|
+
This feature is currently experimental.
|
|
1900
|
+
|
|
1895
1901
|
:exampleMetadata: fixture=_generated
|
|
1896
1902
|
|
|
1897
1903
|
Example::
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
aws_cdk/__init__.py,sha256=FUsZJgTwntpY36QGRIfjRqwpfiXGD4w2V683Zo57l6E,1791752
|
|
2
2
|
aws_cdk/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
aws_cdk/_jsii/__init__.py,sha256=
|
|
4
|
-
aws_cdk/_jsii/aws-cdk-lib@2.154.
|
|
3
|
+
aws_cdk/_jsii/__init__.py,sha256=KiQsI2ra3EsrV0CI1RfYTEzYnMgrd_Uf4IZukSg-6Y8,614
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.154.1.jsii.tgz,sha256=DxIPjOROLIRTvnDZ5zmrakGO7ZVcWlCb7dBAl-ViTto,22598044
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=zUGLCwba1AKRaTqnt0HDNOPL3kKC2iO22vy2Hh5coVg,35402
|
|
6
6
|
aws_cdk/assertions/__init__.py,sha256=z4U_lPeruWtzub3uBcbDuKLEZYxV0HLxlCtXbBm4EmQ,91338
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=LSHAqzTbJ9EC1wrpiYYG1d0qTldyTr_ooJk-bzCNw94,42072
|
|
@@ -10,7 +10,7 @@ aws_cdk/aws_amazonmq/__init__.py,sha256=8FtATOwhXaXWEB7Wc8XbsJp7KOP-lN501a5oY6w0
|
|
|
10
10
|
aws_cdk/aws_amplify/__init__.py,sha256=uIv5BUVtd604XvjoiSHIE_cqX5nnhj0NgT0oANeFkrw,194297
|
|
11
11
|
aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=kADsfCszWxWPD7eKIvlpIL8l6l0WWRDm9dUMUWu2XfA,430583
|
|
12
12
|
aws_cdk/aws_apigateway/__init__.py,sha256=skQLAh951QctqzfJpedXIxIKKcbbIb8MEYy9aWpBA54,1858381
|
|
13
|
-
aws_cdk/aws_apigatewayv2/__init__.py,sha256=
|
|
13
|
+
aws_cdk/aws_apigatewayv2/__init__.py,sha256=NchInqoRebhahTUW6tm20yxH0ALHV8nU6cQlFCbmjkQ,1044501
|
|
14
14
|
aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=isiaiYb1wyHobxsr2Yw5mjUZU-cXZuwBm1gh5F4OqzY,51240
|
|
15
15
|
aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=jmq3Nswto7KKpiU-Qhi3u8uN8LqXQQkj5Y-rUznpvjs,120060
|
|
16
16
|
aws_cdk/aws_appconfig/__init__.py,sha256=wicsMHk8hxbowPs3dNK9ju3bnQeqyeqfPWNXDv5F4c0,708503
|
|
@@ -37,7 +37,7 @@ aws_cdk/aws_backup/__init__.py,sha256=W1E5BhXOj-3VGfrkPBHpV1oeyA5DLdxbK-aPXDcW1W
|
|
|
37
37
|
aws_cdk/aws_backupgateway/__init__.py,sha256=SWsaqSfocZjbHA-lBW1ANyAhgGhFGh2gqc8j5gh07HQ,23603
|
|
38
38
|
aws_cdk/aws_batch/__init__.py,sha256=oMo7oM2Ed-ctviHpguNFs6kkUtQs_FsE4j7qLsdaRSM,1426259
|
|
39
39
|
aws_cdk/aws_bcmdataexports/__init__.py,sha256=WJhc7DRCXkhW5arOK3gLqpvF3mQZCFOLAaREWboGd1Q,54659
|
|
40
|
-
aws_cdk/aws_bedrock/__init__.py,sha256
|
|
40
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=csYkR8dzQKVBxTwFJtPwwroUAgZvu2b4-CQfzMnC0rI,1109834
|
|
41
41
|
aws_cdk/aws_billingconductor/__init__.py,sha256=GvMbTKomXw64AMbMGAbkgpRdK758YrFdyzegUFk_QSc,142098
|
|
42
42
|
aws_cdk/aws_budgets/__init__.py,sha256=PYHzGPk9Q8x8A7ABHjCN5iAztiLqoYSLi56_Hh7iWyw,162078
|
|
43
43
|
aws_cdk/aws_cassandra/__init__.py,sha256=MZHyqkF-uTyDRc_AjKH6O0xRl1hX-cRRXaGth8-BoZg,146344
|
|
@@ -48,14 +48,14 @@ aws_cdk/aws_cleanrooms/__init__.py,sha256=jmZrRlAYGuwwyDdXNybjAPuyN1y-BdSi4wLRyu
|
|
|
48
48
|
aws_cdk/aws_cleanroomsml/__init__.py,sha256=kB5aTRZ0raMWpEBz-Lrs0UcJkHQUzoFQ_6Ul7FipNJI,48343
|
|
49
49
|
aws_cdk/aws_cloud9/__init__.py,sha256=4F9YEi-KSwnro2tdchg0g2CTatiuYL8Z75JdCUcvE_k,42126
|
|
50
50
|
aws_cdk/aws_cloudformation/__init__.py,sha256=gLuJPayx3CUvXeVlJ0xvawsupTdJGkGP1MsSvfWbJhQ,392310
|
|
51
|
-
aws_cdk/aws_cloudfront/__init__.py,sha256=
|
|
51
|
+
aws_cdk/aws_cloudfront/__init__.py,sha256=qxn_2O5L6dvrem3MBTLC-wqZ3lLOLPcfoOhdUn4-ii4,1480198
|
|
52
52
|
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=LanvMgGMqxQ6D0YN9RcWeO5m9BPRgPc9ciDBwn5HLIo,135393
|
|
53
53
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=8V5Yq4s5Lf0gj3E-3OlnB9HvX37r0bpvUpVjqIDMO10,110507
|
|
54
54
|
aws_cdk/aws_cloudtrail/__init__.py,sha256=xAYD5UV7lOJPsaNyOrbHhRgIHF9OiuU-P4z1QUes7tQ,316019
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=GcurGoJGd15N-VCRGqwSD5t2XEWiscKJtqyGamA-DF8,803518
|
|
56
56
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=YS4vVIqy1q30xxtj4t4n_sTjLfDOgBpMJF9HqVuXub0,21402
|
|
57
57
|
aws_cdk/aws_codeartifact/__init__.py,sha256=xqju4lQkEh6qsSWkcFLB9grb1nktgI3GBq6MW_9Ygjw,87067
|
|
58
|
-
aws_cdk/aws_codebuild/__init__.py,sha256=
|
|
58
|
+
aws_cdk/aws_codebuild/__init__.py,sha256=_EK3SZWXRWba3RkU6jlTsFA8nGqVa1jAnAuad3GM6mQ,1005980
|
|
59
59
|
aws_cdk/aws_codecommit/__init__.py,sha256=RzdD0cttkKH_SGGZEHsBMem4PGJMN4lI_pkKlZ882Lk,236981
|
|
60
60
|
aws_cdk/aws_codeconnections/__init__.py,sha256=KPaXbIHD94IqtospMhiGo4kakoUOb12Ue1SuWpcUYuM,18996
|
|
61
61
|
aws_cdk/aws_codedeploy/__init__.py,sha256=AZPmSFD7UUkSr3qsHRzDlP4KSN5sXNCbfQz7KA9r6Ek,605599
|
|
@@ -89,10 +89,10 @@ aws_cdk/aws_dms/__init__.py,sha256=ve0pYRgJZFGiyuMPFvDBbd2T1LFiAzknhFysTQi7X94,8
|
|
|
89
89
|
aws_cdk/aws_docdb/__init__.py,sha256=LJZdhLKn7gm6Vc_yiP9TCQBFJNTo0sfiwz--OPilUZI,314800
|
|
90
90
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=LvdizkXJJjNyDwUbjOpPRMAbwcyyCJtzQWfM3ib4x0U,45778
|
|
91
91
|
aws_cdk/aws_dynamodb/__init__.py,sha256=PzrYr3BgOopTh-fsYjVIBc99fEE9gaKZ3s8u3TvgFzM,938225
|
|
92
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
92
|
+
aws_cdk/aws_ec2/__init__.py,sha256=qKLY60Oxq3fWFl7T1_Qu5j-7Nq6slNRXmI2J99fFOoo,5593095
|
|
93
93
|
aws_cdk/aws_ecr/__init__.py,sha256=jpys3f4KEZEgbzA_L_bB-3hmCAYnOGoifNwc-k8etkk,297482
|
|
94
94
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=XwzseEGjGjqPcIAaw_vxLLxcm5qmFCEoGp3vFQebPGg,83627
|
|
95
|
-
aws_cdk/aws_ecs/__init__.py,sha256=
|
|
95
|
+
aws_cdk/aws_ecs/__init__.py,sha256=dU-4amzp0JriAGTNuz_zGb2tVAn_6sh5ORLcScDVSQo,2559755
|
|
96
96
|
aws_cdk/aws_ecs_patterns/__init__.py,sha256=uPwp_RgoE-uB_S_SSI5wVRkv1q725u8yFLkRVBwd-vo,1019737
|
|
97
97
|
aws_cdk/aws_efs/__init__.py,sha256=NxQAPRN9S3PrcR8GMiSeMtUBayXAe7KCWtwCi6gQ0X0,276175
|
|
98
98
|
aws_cdk/aws_eks/__init__.py,sha256=wa5MHR1KkFbYUEO7frShI5ytbrTL9EJNISc3YDgnN6I,1143575
|
|
@@ -117,10 +117,10 @@ aws_cdk/aws_fms/__init__.py,sha256=-H6O2GNG9exKO05OCYL3Os7FyE_44X1_0U42x9Xh8UI,2
|
|
|
117
117
|
aws_cdk/aws_forecast/__init__.py,sha256=LZirLpQEC23EIYNT6dc7edbMdb8aLjdAclSycS-ViTg,61565
|
|
118
118
|
aws_cdk/aws_frauddetector/__init__.py,sha256=qQshIR64760YHfiQjXjX4GIbsV90NYBk5WGWPtvLu8c,261291
|
|
119
119
|
aws_cdk/aws_fsx/__init__.py,sha256=XJZucWy-EtNpH_mUcppmoL25et4W3Mk3eCsvmAFU8XM,561819
|
|
120
|
-
aws_cdk/aws_gamelift/__init__.py,sha256=
|
|
120
|
+
aws_cdk/aws_gamelift/__init__.py,sha256=OQojR3JpELxJFnxM4CB3V_yljHCt3BwPukeBbP5RV0E,595935
|
|
121
121
|
aws_cdk/aws_globalaccelerator/__init__.py,sha256=mnUm5Lkf4sP2adlkaWJtkP0Qqp23OaUsX3aX0N9q6Y8,233066
|
|
122
122
|
aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=SiAIL98wDGz7xPVP_7dyN8SEjiAE8oL5nEgnFKJKiWY,25880
|
|
123
|
-
aws_cdk/aws_glue/__init__.py,sha256=
|
|
123
|
+
aws_cdk/aws_glue/__init__.py,sha256=M8GNsGQBRvHA8t9em6szviI3cfgDdQbHDcxdYlNjVh4,912777
|
|
124
124
|
aws_cdk/aws_grafana/__init__.py,sha256=liTV5cT6vT10g7L9YSrl207O8uKS_CIPF4qJ79jH0l0,103455
|
|
125
125
|
aws_cdk/aws_greengrass/__init__.py,sha256=b05ZyHs63tbUCBQO_rZphnHVeF4vPEa0aLTT5ZPiJS4,661491
|
|
126
126
|
aws_cdk/aws_greengrassv2/__init__.py,sha256=PENNaZ02dyJR4RCiOVTj6Etbu6qa8TepbQfO-Y_HAZA,212909
|
|
@@ -130,7 +130,7 @@ aws_cdk/aws_healthimaging/__init__.py,sha256=zsHDiJf5Lfn7B_CcqCzSqmbaNt0fD524zyd
|
|
|
130
130
|
aws_cdk/aws_healthlake/__init__.py,sha256=aiCTyvDVykAqz2KboRBaGwnnjT2vq366DOckBT15Ags,53481
|
|
131
131
|
aws_cdk/aws_iam/__init__.py,sha256=zO7VIzeeoze_gKqvGRvPNoTFGtS0vJVNLo1Lm_vOkT0,842384
|
|
132
132
|
aws_cdk/aws_identitystore/__init__.py,sha256=hW8yChwEILJE2JNSTuuUFRb4H11DrYw783UuivmQAXE,30922
|
|
133
|
-
aws_cdk/aws_imagebuilder/__init__.py,sha256=
|
|
133
|
+
aws_cdk/aws_imagebuilder/__init__.py,sha256=kLtGlold0MNPC4KHiMD77ufo6-dRitIzdcEv_7o2Lrk,576152
|
|
134
134
|
aws_cdk/aws_inspector/__init__.py,sha256=MXhy9w6nCZ7f8eJOiQijOsvJomBe2wLzZHSlZQJt-Y4,43544
|
|
135
135
|
aws_cdk/aws_inspectorv2/__init__.py,sha256=_HCXh55NGdDKccLRqPapbIwNYcrz0fFAe8L0lpb7sCA,164622
|
|
136
136
|
aws_cdk/aws_internetmonitor/__init__.py,sha256=czmJ5ZS7kMpl57aRgDkC_0FlrwxYnyjZusvv8M9hJmE,82734
|
|
@@ -145,7 +145,7 @@ aws_cdk/aws_iotsitewise/__init__.py,sha256=8rqmoMj2beuOob5PARHO1xMV0XJWzqcRW_0L-
|
|
|
145
145
|
aws_cdk/aws_iotthingsgraph/__init__.py,sha256=QL3pqsNxfprTdG12NyTq-AIENs8tlFYjkcJwSzBtGUY,16520
|
|
146
146
|
aws_cdk/aws_iottwinmaker/__init__.py,sha256=LqKOXZLsPKS3TXbB_aCepv_Cosj59xu0kU3SfYl31xY,289353
|
|
147
147
|
aws_cdk/aws_iotwireless/__init__.py,sha256=AGi6lYM3navaKa_zBb_D1UyWaiMTjERVxPQTlU3h7EA,401451
|
|
148
|
-
aws_cdk/aws_ivs/__init__.py,sha256=
|
|
148
|
+
aws_cdk/aws_ivs/__init__.py,sha256=Y7MiMO1PgS2DxtIgTuhMIHW4_ekhvOB3g5MErDJVpeQ,205081
|
|
149
149
|
aws_cdk/aws_ivschat/__init__.py,sha256=cIW2MXAKO0Jtn9eQyeXdR9MGHmY4VFstZ1MfDAknZ84,62931
|
|
150
150
|
aws_cdk/aws_kafkaconnect/__init__.py,sha256=XG0aRF3khDICBcfQRmbH7NhyOWWTfM4IARdZ_qXzQLk,171500
|
|
151
151
|
aws_cdk/aws_kendra/__init__.py,sha256=i4Cy5BKwS0uT1t1A5-5_Q4VhZqpaUg4XGakC8Mbytb8,682001
|
|
@@ -176,13 +176,13 @@ aws_cdk/aws_macie/__init__.py,sha256=iEw7sEFsebrJc458UaYabNOt1vWPwVaZUuplYqnSJ2Y
|
|
|
176
176
|
aws_cdk/aws_managedblockchain/__init__.py,sha256=AejbjXg35LI4Ba45Kv-AKt_hse2R4hwcw-pVgEbnJ9w,99919
|
|
177
177
|
aws_cdk/aws_mediaconnect/__init__.py,sha256=FaNjHzjnjtb5G2pCWjCLEQwrLr8p_bWBhsPAvQavftY,502263
|
|
178
178
|
aws_cdk/aws_mediaconvert/__init__.py,sha256=DnK-OTxJqhAFjj3mm044SynTVNb3ZsYLTKDFWw1ckno,86238
|
|
179
|
-
aws_cdk/aws_medialive/__init__.py,sha256=
|
|
179
|
+
aws_cdk/aws_medialive/__init__.py,sha256=p_AWpd3x7voCKOxNs-kDtvbwQYEym2Yy9Q-Uw3hwf7A,1615613
|
|
180
180
|
aws_cdk/aws_mediapackage/__init__.py,sha256=dPmKbjiCHnXAPmpW0cmTwJl3TlmwtrL2QUNSWJdshro,442924
|
|
181
181
|
aws_cdk/aws_mediapackagev2/__init__.py,sha256=aTspXxIAO57XP84ubBp2Z2BlUCbnd7SHSEXpxbgdrBk,219040
|
|
182
182
|
aws_cdk/aws_mediastore/__init__.py,sha256=l-CY-Ut8_y90L-ZHSzd3npN9qpo2Xm7Fn1-e-fOrJXo,56019
|
|
183
183
|
aws_cdk/aws_mediatailor/__init__.py,sha256=UpUIaBZy9YxuER5bSQ-Vi7igm1NUf5PEnYX69Kp8ea4,270402
|
|
184
184
|
aws_cdk/aws_memorydb/__init__.py,sha256=3F2FRbg4nHZD7dI4e5t6sTnyfkn7uCr0BXJfR-JY7G0,140272
|
|
185
|
-
aws_cdk/aws_msk/__init__.py,sha256=
|
|
185
|
+
aws_cdk/aws_msk/__init__.py,sha256=plskLkbKf8cLKHBzddDG1PTyOzxUcodBm47TIWPaaPY,346577
|
|
186
186
|
aws_cdk/aws_mwaa/__init__.py,sha256=I6VUwzvq4YXsdFPOlMegVE_owx9R8F9nJBm8HS_zaSg,116375
|
|
187
187
|
aws_cdk/aws_neptune/__init__.py,sha256=LHWSbJsDJYw07MR7MLxKzdqw9SNpaixs6wQwnbosCWU,209746
|
|
188
188
|
aws_cdk/aws_neptunegraph/__init__.py,sha256=eIKmajHig1HigNVbFmqsKIJXLfU6BDHeEF1Eg-Wh9tU,49980
|
|
@@ -234,7 +234,7 @@ aws_cdk/aws_s3_notifications/__init__.py,sha256=jdGhUh3vH1rSypq7XjSPJGNPImRW3Epk
|
|
|
234
234
|
aws_cdk/aws_s3express/__init__.py,sha256=HC7CUYu6qPkaQXg-LDcr6U0zhDcyDUIq08yo8yW2Pbs,32436
|
|
235
235
|
aws_cdk/aws_s3objectlambda/__init__.py,sha256=R_lxN8s1WBi7HEz9JgLnurz64WrsL26Zg-xwd-iTkTI,67728
|
|
236
236
|
aws_cdk/aws_s3outposts/__init__.py,sha256=EJUZdPsIkA7n7L91nUIg4V6qj4y46mwIlWaUy8uIusg,113778
|
|
237
|
-
aws_cdk/aws_sagemaker/__init__.py,sha256=
|
|
237
|
+
aws_cdk/aws_sagemaker/__init__.py,sha256=cgya39F3cYple_NRw8o0rREU5Tc4BptslRRNuVi80ks,2922669
|
|
238
238
|
aws_cdk/aws_sam/__init__.py,sha256=0cAhTwIctDt_iJY7p5HHqHeGV0-rL1tXsobUqyuXy0w,756749
|
|
239
239
|
aws_cdk/aws_scheduler/__init__.py,sha256=yCZHkNnRDjahvdR4jTZ4skTVGzw6H3I6MlTe008s9eY,157964
|
|
240
240
|
aws_cdk/aws_sdb/__init__.py,sha256=FS9ueQq3GdGAV60dibLm-pK--VAoGdm833C4eeRs2wk,9820
|
|
@@ -252,7 +252,7 @@ aws_cdk/aws_simspaceweaver/__init__.py,sha256=nzK5IjNjkmVzXciMFukGssoREiMAF0NtD-
|
|
|
252
252
|
aws_cdk/aws_sns/__init__.py,sha256=P-vuzc3f8MeMQelJ0DXtSIVXW0iDKL9fvpbkSSCLHvI,354290
|
|
253
253
|
aws_cdk/aws_sns_subscriptions/__init__.py,sha256=yaa9v_nAeQwkMtSgtI_V1sHozOhaw8EUmQCxYCUgIw0,59913
|
|
254
254
|
aws_cdk/aws_sqs/__init__.py,sha256=RI32K5y2sgZcJOc_AwQRTXlQ89ro6LGwebr9amvxXas,273929
|
|
255
|
-
aws_cdk/aws_ssm/__init__.py,sha256=
|
|
255
|
+
aws_cdk/aws_ssm/__init__.py,sha256=aZ49gBLI4-of1JQf86FEhKbovz6wmifb7-ayZd1b-8g,594445
|
|
256
256
|
aws_cdk/aws_ssmcontacts/__init__.py,sha256=rQth03Yw-QjKF-sv58IkVtjVZiUg_gEoAcu6QE0J4_o,137350
|
|
257
257
|
aws_cdk/aws_ssmincidents/__init__.py,sha256=o5VGUNA7ZHPxAyKp9MvWB6YPt52v-jNOb_eDH9RKT0k,112553
|
|
258
258
|
aws_cdk/aws_sso/__init__.py,sha256=99Pv_9aucWLhduj8rpLz7LocrEwapmnUUMGC3upbC4M,155356
|
|
@@ -276,7 +276,7 @@ aws_cdk/aws_workspacesweb/__init__.py,sha256=aGoLKR3AiBkKGdyodAPTBlNvFAegKXPNxp2
|
|
|
276
276
|
aws_cdk/aws_xray/__init__.py,sha256=7w8d2Zzl27ybB_OqCPAjB3wEKE_LapoED5FGc-5196U,97599
|
|
277
277
|
aws_cdk/cloud_assembly_schema/__init__.py,sha256=RPSY_HNCy4OZpBQk1Em418s-3bLZ3AXFAq-yQCVOwfY,369870
|
|
278
278
|
aws_cdk/cloudformation_include/__init__.py,sha256=_98bU50-7xAo_JVU50YQmRkHQvdAIpTh4BnNUaDLQcg,46655
|
|
279
|
-
aws_cdk/custom_resources/__init__.py,sha256=
|
|
279
|
+
aws_cdk/custom_resources/__init__.py,sha256=ZxkYDu51At6SjVKcsMsKT70NELy0SmtSZ_LcuanCYTw,161037
|
|
280
280
|
aws_cdk/cx_api/__init__.py,sha256=bkcmrm1sp28wXbH36YMyFyvGusn_LHX-j9jHJkXFgOU,160952
|
|
281
281
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=IlACJkDyh8sV2B0z5D_117b_PtXaJm51CQ1p1-ZXQ4w,2323
|
|
282
282
|
aws_cdk/lambda_layer_kubectl/__init__.py,sha256=W-dUsp28JPkIlpvARiWnkMl1qsESOIi8_ajqFAcGxBk,2595
|
|
@@ -284,9 +284,9 @@ aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=t7G83ZQzGlrH_CVhMxtbzMG
|
|
|
284
284
|
aws_cdk/pipelines/__init__.py,sha256=q65MYnai009K8g_eaxjTnDOR_-maZyZ3MJKys4c8JKk,396401
|
|
285
285
|
aws_cdk/region_info/__init__.py,sha256=OhxtjLqmH2FZZytkekg1b7WVc6HNpgwddo0guOq92j8,38690
|
|
286
286
|
aws_cdk/triggers/__init__.py,sha256=M7IDuEP3XIH3-EJQaAm4xahkM7i5Icez8bccIsExP9I,120014
|
|
287
|
-
aws_cdk_lib-2.154.
|
|
288
|
-
aws_cdk_lib-2.154.
|
|
289
|
-
aws_cdk_lib-2.154.
|
|
290
|
-
aws_cdk_lib-2.154.
|
|
291
|
-
aws_cdk_lib-2.154.
|
|
292
|
-
aws_cdk_lib-2.154.
|
|
287
|
+
aws_cdk_lib-2.154.1.dist-info/LICENSE,sha256=kEDF86xJUQh1E9M7UPKKbHepBEdFxIUyoGfTwQB7zKg,11391
|
|
288
|
+
aws_cdk_lib-2.154.1.dist-info/METADATA,sha256=EvIOpBSdTITe2Ysvv6DWLXaxfS8ew07ZQN-43vrxu3Q,59951
|
|
289
|
+
aws_cdk_lib-2.154.1.dist-info/NOTICE,sha256=BZyRfC0PoNXSoqGVWkGaJhCSmAA1TObhSW8a6_m_SlI,40861
|
|
290
|
+
aws_cdk_lib-2.154.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
291
|
+
aws_cdk_lib-2.154.1.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
292
|
+
aws_cdk_lib-2.154.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|