aws-cdk-lib 2.181.0__py3-none-any.whl → 2.182.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 +292 -8
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.181.0.jsii.tgz → aws-cdk-lib@2.182.0.jsii.tgz} +0 -0
- aws_cdk/assertions/__init__.py +59 -0
- aws_cdk/aws_apigateway/__init__.py +122 -66
- aws_cdk/aws_applicationautoscaling/__init__.py +4 -0
- aws_cdk/aws_appsync/__init__.py +30 -4
- aws_cdk/aws_autoscaling/__init__.py +409 -36
- aws_cdk/aws_batch/__init__.py +629 -11
- aws_cdk/aws_bedrock/__init__.py +204 -0
- aws_cdk/aws_certificatemanager/__init__.py +24 -0
- aws_cdk/aws_cloudformation/__init__.py +284 -2
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +4 -4
- aws_cdk/aws_datazone/__init__.py +82 -0
- aws_cdk/aws_ec2/__init__.py +32 -12
- aws_cdk/aws_ecr/__init__.py +10 -4
- aws_cdk/aws_ecs/__init__.py +58 -9
- aws_cdk/aws_eks/__init__.py +32 -3
- aws_cdk/aws_fsx/__init__.py +2 -0
- aws_cdk/aws_guardduty/__init__.py +38 -26
- aws_cdk/aws_iam/__init__.py +5 -2
- aws_cdk/aws_inspector/__init__.py +176 -0
- aws_cdk/aws_iotsitewise/__init__.py +2 -3
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_lambda/__init__.py +8 -0
- aws_cdk/aws_logs/__init__.py +2 -0
- aws_cdk/aws_mediapackagev2/__init__.py +22 -14
- aws_cdk/aws_opensearchservice/__init__.py +261 -1
- aws_cdk/aws_pcaconnectorad/__init__.py +30 -4
- aws_cdk/aws_pipes/__init__.py +6 -2
- aws_cdk/aws_quicksight/__init__.py +225 -451
- aws_cdk/aws_rds/__init__.py +50 -13
- aws_cdk/aws_s3/__init__.py +8 -0
- aws_cdk/aws_sagemaker/__init__.py +68 -13
- aws_cdk/aws_sns/__init__.py +76 -1
- aws_cdk/aws_vpclattice/__init__.py +144 -9
- aws_cdk/aws_wafv2/__init__.py +702 -0
- aws_cdk/aws_wisdom/__init__.py +3 -110
- aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
- aws_cdk/aws_workspacesweb/__init__.py +179 -2
- aws_cdk/cloud_assembly_schema/__init__.py +224 -4
- aws_cdk/cx_api/__init__.py +2 -1
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.181.0.dist-info → aws_cdk_lib-2.182.0.dist-info}/top_level.txt +0 -0
|
@@ -2215,6 +2215,8 @@ class ContextProvider(enum.Enum):
|
|
|
2215
2215
|
'''Security group provider.'''
|
|
2216
2216
|
KEY_PROVIDER = "KEY_PROVIDER"
|
|
2217
2217
|
'''KMS Key Provider.'''
|
|
2218
|
+
CC_API_PROVIDER = "CC_API_PROVIDER"
|
|
2219
|
+
'''CCAPI Provider.'''
|
|
2218
2220
|
PLUGIN = "PLUGIN"
|
|
2219
2221
|
'''A plugin provider (the actual plugin name will be in the properties).'''
|
|
2220
2222
|
|
|
@@ -6724,7 +6726,7 @@ class MissingContext:
|
|
|
6724
6726
|
self,
|
|
6725
6727
|
*,
|
|
6726
6728
|
key: builtins.str,
|
|
6727
|
-
props: typing.Union[typing.Union["AmiContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union["AvailabilityZonesContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[HostedZoneContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["SSMParameterContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union["VpcContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[EndpointServiceAvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["LoadBalancerContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[LoadBalancerListenerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["SecurityGroupContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[KeyContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["PluginContextQuery", typing.Dict[builtins.str, typing.Any]]],
|
|
6729
|
+
props: typing.Union[typing.Union["AmiContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union["AvailabilityZonesContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[HostedZoneContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["SSMParameterContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union["VpcContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[EndpointServiceAvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["LoadBalancerContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[LoadBalancerListenerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["SecurityGroupContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union[KeyContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union["CcApiContextQuery", typing.Dict[builtins.str, typing.Any]], typing.Union["PluginContextQuery", typing.Dict[builtins.str, typing.Any]]],
|
|
6728
6730
|
provider: ContextProvider,
|
|
6729
6731
|
) -> None:
|
|
6730
6732
|
'''Represents a missing piece of context.
|
|
@@ -6784,11 +6786,11 @@ class MissingContext:
|
|
|
6784
6786
|
@builtins.property
|
|
6785
6787
|
def props(
|
|
6786
6788
|
self,
|
|
6787
|
-
) -> typing.Union["AmiContextQuery", "AvailabilityZonesContextQuery", HostedZoneContextQuery, "SSMParameterContextQuery", "VpcContextQuery", EndpointServiceAvailabilityZonesContextQuery, "LoadBalancerContextQuery", LoadBalancerListenerContextQuery, "SecurityGroupContextQuery", KeyContextQuery, "PluginContextQuery"]:
|
|
6789
|
+
) -> typing.Union["AmiContextQuery", "AvailabilityZonesContextQuery", HostedZoneContextQuery, "SSMParameterContextQuery", "VpcContextQuery", EndpointServiceAvailabilityZonesContextQuery, "LoadBalancerContextQuery", LoadBalancerListenerContextQuery, "SecurityGroupContextQuery", KeyContextQuery, "CcApiContextQuery", "PluginContextQuery"]:
|
|
6788
6790
|
'''A set of provider-specific options.'''
|
|
6789
6791
|
result = self._values.get("props")
|
|
6790
6792
|
assert result is not None, "Required property 'props' is missing"
|
|
6791
|
-
return typing.cast(typing.Union["AmiContextQuery", "AvailabilityZonesContextQuery", HostedZoneContextQuery, "SSMParameterContextQuery", "VpcContextQuery", EndpointServiceAvailabilityZonesContextQuery, "LoadBalancerContextQuery", LoadBalancerListenerContextQuery, "SecurityGroupContextQuery", KeyContextQuery, "PluginContextQuery"], result)
|
|
6793
|
+
return typing.cast(typing.Union["AmiContextQuery", "AvailabilityZonesContextQuery", HostedZoneContextQuery, "SSMParameterContextQuery", "VpcContextQuery", EndpointServiceAvailabilityZonesContextQuery, "LoadBalancerContextQuery", LoadBalancerListenerContextQuery, "SecurityGroupContextQuery", KeyContextQuery, "CcApiContextQuery", "PluginContextQuery"], result)
|
|
6792
6794
|
|
|
6793
6795
|
@builtins.property
|
|
6794
6796
|
def provider(self) -> ContextProvider:
|
|
@@ -8171,6 +8173,208 @@ class AvailabilityZonesContextQuery(ContextLookupRoleOptions):
|
|
|
8171
8173
|
)
|
|
8172
8174
|
|
|
8173
8175
|
|
|
8176
|
+
@jsii.data_type(
|
|
8177
|
+
jsii_type="aws-cdk-lib.cloud_assembly_schema.CcApiContextQuery",
|
|
8178
|
+
jsii_struct_bases=[ContextLookupRoleOptions],
|
|
8179
|
+
name_mapping={
|
|
8180
|
+
"account": "account",
|
|
8181
|
+
"region": "region",
|
|
8182
|
+
"assume_role_additional_options": "assumeRoleAdditionalOptions",
|
|
8183
|
+
"lookup_role_arn": "lookupRoleArn",
|
|
8184
|
+
"lookup_role_external_id": "lookupRoleExternalId",
|
|
8185
|
+
"properties_to_return": "propertiesToReturn",
|
|
8186
|
+
"type_name": "typeName",
|
|
8187
|
+
"exact_identifier": "exactIdentifier",
|
|
8188
|
+
"property_match": "propertyMatch",
|
|
8189
|
+
},
|
|
8190
|
+
)
|
|
8191
|
+
class CcApiContextQuery(ContextLookupRoleOptions):
|
|
8192
|
+
def __init__(
|
|
8193
|
+
self,
|
|
8194
|
+
*,
|
|
8195
|
+
account: builtins.str,
|
|
8196
|
+
region: builtins.str,
|
|
8197
|
+
assume_role_additional_options: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8198
|
+
lookup_role_arn: typing.Optional[builtins.str] = None,
|
|
8199
|
+
lookup_role_external_id: typing.Optional[builtins.str] = None,
|
|
8200
|
+
properties_to_return: typing.Sequence[builtins.str],
|
|
8201
|
+
type_name: builtins.str,
|
|
8202
|
+
exact_identifier: typing.Optional[builtins.str] = None,
|
|
8203
|
+
property_match: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8204
|
+
) -> None:
|
|
8205
|
+
'''Query input for lookup up Cloudformation resources using CC API.
|
|
8206
|
+
|
|
8207
|
+
:param account: Query account.
|
|
8208
|
+
:param region: Query region.
|
|
8209
|
+
:param assume_role_additional_options: Additional options to pass to STS when assuming the lookup role. - ``RoleArn`` should not be used. Use the dedicated ``lookupRoleArn`` property instead. - ``ExternalId`` should not be used. Use the dedicated ``lookupRoleExternalId`` instead. Default: - No additional options.
|
|
8210
|
+
:param lookup_role_arn: The ARN of the role that should be used to look up the missing values. Default: - None
|
|
8211
|
+
:param lookup_role_external_id: The ExternalId that needs to be supplied while assuming this role. Default: - No ExternalId will be supplied
|
|
8212
|
+
:param properties_to_return: This is a set of properties returned from CC API that we want to return from ContextQuery.
|
|
8213
|
+
:param type_name: The Cloudformation resource type. See https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html
|
|
8214
|
+
:param exact_identifier: exactIdentifier of the resource. Specifying exactIdentifier will return at most one result. Either exactIdentifier or propertyMatch should be specified. Default: - None
|
|
8215
|
+
:param property_match: This indicates the property to search for. If both exactIdentifier and propertyMatch are specified, then exactIdentifier is used. Specifying propertyMatch will return 0 or more results. Either exactIdentifier or propertyMatch should be specified. Default: - None
|
|
8216
|
+
|
|
8217
|
+
:exampleMetadata: fixture=_generated
|
|
8218
|
+
|
|
8219
|
+
Example::
|
|
8220
|
+
|
|
8221
|
+
# The code below shows an example of how to instantiate this type.
|
|
8222
|
+
# The values are placeholders you should change.
|
|
8223
|
+
from aws_cdk import cloud_assembly_schema
|
|
8224
|
+
|
|
8225
|
+
# assume_role_additional_options: Any
|
|
8226
|
+
# property_match: Any
|
|
8227
|
+
|
|
8228
|
+
cc_api_context_query = CcApiContextQuery(
|
|
8229
|
+
account="account",
|
|
8230
|
+
properties_to_return=["propertiesToReturn"],
|
|
8231
|
+
region="region",
|
|
8232
|
+
type_name="typeName",
|
|
8233
|
+
|
|
8234
|
+
# the properties below are optional
|
|
8235
|
+
assume_role_additional_options={
|
|
8236
|
+
"assume_role_additional_options_key": assume_role_additional_options
|
|
8237
|
+
},
|
|
8238
|
+
exact_identifier="exactIdentifier",
|
|
8239
|
+
lookup_role_arn="lookupRoleArn",
|
|
8240
|
+
lookup_role_external_id="lookupRoleExternalId",
|
|
8241
|
+
property_match={
|
|
8242
|
+
"property_match_key": property_match
|
|
8243
|
+
}
|
|
8244
|
+
)
|
|
8245
|
+
'''
|
|
8246
|
+
if __debug__:
|
|
8247
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cdf6a33d88e10af638d11c3322b9291978a474ed65f1a2ab37cdecc88fbcd5ab)
|
|
8248
|
+
check_type(argname="argument account", value=account, expected_type=type_hints["account"])
|
|
8249
|
+
check_type(argname="argument region", value=region, expected_type=type_hints["region"])
|
|
8250
|
+
check_type(argname="argument assume_role_additional_options", value=assume_role_additional_options, expected_type=type_hints["assume_role_additional_options"])
|
|
8251
|
+
check_type(argname="argument lookup_role_arn", value=lookup_role_arn, expected_type=type_hints["lookup_role_arn"])
|
|
8252
|
+
check_type(argname="argument lookup_role_external_id", value=lookup_role_external_id, expected_type=type_hints["lookup_role_external_id"])
|
|
8253
|
+
check_type(argname="argument properties_to_return", value=properties_to_return, expected_type=type_hints["properties_to_return"])
|
|
8254
|
+
check_type(argname="argument type_name", value=type_name, expected_type=type_hints["type_name"])
|
|
8255
|
+
check_type(argname="argument exact_identifier", value=exact_identifier, expected_type=type_hints["exact_identifier"])
|
|
8256
|
+
check_type(argname="argument property_match", value=property_match, expected_type=type_hints["property_match"])
|
|
8257
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8258
|
+
"account": account,
|
|
8259
|
+
"region": region,
|
|
8260
|
+
"properties_to_return": properties_to_return,
|
|
8261
|
+
"type_name": type_name,
|
|
8262
|
+
}
|
|
8263
|
+
if assume_role_additional_options is not None:
|
|
8264
|
+
self._values["assume_role_additional_options"] = assume_role_additional_options
|
|
8265
|
+
if lookup_role_arn is not None:
|
|
8266
|
+
self._values["lookup_role_arn"] = lookup_role_arn
|
|
8267
|
+
if lookup_role_external_id is not None:
|
|
8268
|
+
self._values["lookup_role_external_id"] = lookup_role_external_id
|
|
8269
|
+
if exact_identifier is not None:
|
|
8270
|
+
self._values["exact_identifier"] = exact_identifier
|
|
8271
|
+
if property_match is not None:
|
|
8272
|
+
self._values["property_match"] = property_match
|
|
8273
|
+
|
|
8274
|
+
@builtins.property
|
|
8275
|
+
def account(self) -> builtins.str:
|
|
8276
|
+
'''Query account.'''
|
|
8277
|
+
result = self._values.get("account")
|
|
8278
|
+
assert result is not None, "Required property 'account' is missing"
|
|
8279
|
+
return typing.cast(builtins.str, result)
|
|
8280
|
+
|
|
8281
|
+
@builtins.property
|
|
8282
|
+
def region(self) -> builtins.str:
|
|
8283
|
+
'''Query region.'''
|
|
8284
|
+
result = self._values.get("region")
|
|
8285
|
+
assert result is not None, "Required property 'region' is missing"
|
|
8286
|
+
return typing.cast(builtins.str, result)
|
|
8287
|
+
|
|
8288
|
+
@builtins.property
|
|
8289
|
+
def assume_role_additional_options(
|
|
8290
|
+
self,
|
|
8291
|
+
) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
|
|
8292
|
+
'''Additional options to pass to STS when assuming the lookup role.
|
|
8293
|
+
|
|
8294
|
+
- ``RoleArn`` should not be used. Use the dedicated ``lookupRoleArn`` property instead.
|
|
8295
|
+
- ``ExternalId`` should not be used. Use the dedicated ``lookupRoleExternalId`` instead.
|
|
8296
|
+
|
|
8297
|
+
:default: - No additional options.
|
|
8298
|
+
|
|
8299
|
+
:see: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/STS.html#assumeRole-property
|
|
8300
|
+
'''
|
|
8301
|
+
result = self._values.get("assume_role_additional_options")
|
|
8302
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
8303
|
+
|
|
8304
|
+
@builtins.property
|
|
8305
|
+
def lookup_role_arn(self) -> typing.Optional[builtins.str]:
|
|
8306
|
+
'''The ARN of the role that should be used to look up the missing values.
|
|
8307
|
+
|
|
8308
|
+
:default: - None
|
|
8309
|
+
'''
|
|
8310
|
+
result = self._values.get("lookup_role_arn")
|
|
8311
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8312
|
+
|
|
8313
|
+
@builtins.property
|
|
8314
|
+
def lookup_role_external_id(self) -> typing.Optional[builtins.str]:
|
|
8315
|
+
'''The ExternalId that needs to be supplied while assuming this role.
|
|
8316
|
+
|
|
8317
|
+
:default: - No ExternalId will be supplied
|
|
8318
|
+
'''
|
|
8319
|
+
result = self._values.get("lookup_role_external_id")
|
|
8320
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8321
|
+
|
|
8322
|
+
@builtins.property
|
|
8323
|
+
def properties_to_return(self) -> typing.List[builtins.str]:
|
|
8324
|
+
'''This is a set of properties returned from CC API that we want to return from ContextQuery.'''
|
|
8325
|
+
result = self._values.get("properties_to_return")
|
|
8326
|
+
assert result is not None, "Required property 'properties_to_return' is missing"
|
|
8327
|
+
return typing.cast(typing.List[builtins.str], result)
|
|
8328
|
+
|
|
8329
|
+
@builtins.property
|
|
8330
|
+
def type_name(self) -> builtins.str:
|
|
8331
|
+
'''The Cloudformation resource type.
|
|
8332
|
+
|
|
8333
|
+
See https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html
|
|
8334
|
+
'''
|
|
8335
|
+
result = self._values.get("type_name")
|
|
8336
|
+
assert result is not None, "Required property 'type_name' is missing"
|
|
8337
|
+
return typing.cast(builtins.str, result)
|
|
8338
|
+
|
|
8339
|
+
@builtins.property
|
|
8340
|
+
def exact_identifier(self) -> typing.Optional[builtins.str]:
|
|
8341
|
+
'''exactIdentifier of the resource.
|
|
8342
|
+
|
|
8343
|
+
Specifying exactIdentifier will return at most one result.
|
|
8344
|
+
Either exactIdentifier or propertyMatch should be specified.
|
|
8345
|
+
|
|
8346
|
+
:default: - None
|
|
8347
|
+
'''
|
|
8348
|
+
result = self._values.get("exact_identifier")
|
|
8349
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8350
|
+
|
|
8351
|
+
@builtins.property
|
|
8352
|
+
def property_match(
|
|
8353
|
+
self,
|
|
8354
|
+
) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
|
|
8355
|
+
'''This indicates the property to search for.
|
|
8356
|
+
|
|
8357
|
+
If both exactIdentifier and propertyMatch are specified, then exactIdentifier is used.
|
|
8358
|
+
Specifying propertyMatch will return 0 or more results.
|
|
8359
|
+
Either exactIdentifier or propertyMatch should be specified.
|
|
8360
|
+
|
|
8361
|
+
:default: - None
|
|
8362
|
+
'''
|
|
8363
|
+
result = self._values.get("property_match")
|
|
8364
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
8365
|
+
|
|
8366
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8367
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8368
|
+
|
|
8369
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
8370
|
+
return not (rhs == self)
|
|
8371
|
+
|
|
8372
|
+
def __repr__(self) -> str:
|
|
8373
|
+
return "CcApiContextQuery(%s)" % ", ".join(
|
|
8374
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
8375
|
+
)
|
|
8376
|
+
|
|
8377
|
+
|
|
8174
8378
|
@jsii.data_type(
|
|
8175
8379
|
jsii_type="aws-cdk-lib.cloud_assembly_schema.LoadBalancerContextQuery",
|
|
8176
8380
|
jsii_struct_bases=[LoadBalancerFilter],
|
|
@@ -8652,6 +8856,7 @@ __all__ = [
|
|
|
8652
8856
|
"AwsCloudFormationStackProperties",
|
|
8653
8857
|
"AwsDestination",
|
|
8654
8858
|
"BootstrapRole",
|
|
8859
|
+
"CcApiContextQuery",
|
|
8655
8860
|
"CdkCommand",
|
|
8656
8861
|
"CdkCommands",
|
|
8657
8862
|
"ContainerImageAssetCacheOption",
|
|
@@ -9217,7 +9422,7 @@ def _typecheckingstub__e77201bee0581d95dfd6e3150d491c958851c456cbdd8aaea71cb7371
|
|
|
9217
9422
|
def _typecheckingstub__af657f9f6c83e032e4811f8db352c854d88bb8d40b052424137f1bf159f9170d(
|
|
9218
9423
|
*,
|
|
9219
9424
|
key: builtins.str,
|
|
9220
|
-
props: typing.Union[typing.Union[AmiContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[AvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[HostedZoneContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[SSMParameterContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[VpcContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[EndpointServiceAvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[LoadBalancerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[LoadBalancerListenerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[SecurityGroupContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[KeyContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[PluginContextQuery, typing.Dict[builtins.str, typing.Any]]],
|
|
9425
|
+
props: typing.Union[typing.Union[AmiContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[AvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[HostedZoneContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[SSMParameterContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[VpcContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[EndpointServiceAvailabilityZonesContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[LoadBalancerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[LoadBalancerListenerContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[SecurityGroupContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[KeyContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[CcApiContextQuery, typing.Dict[builtins.str, typing.Any]], typing.Union[PluginContextQuery, typing.Dict[builtins.str, typing.Any]]],
|
|
9221
9426
|
provider: ContextProvider,
|
|
9222
9427
|
) -> None:
|
|
9223
9428
|
"""Type checking stubs"""
|
|
@@ -9337,6 +9542,21 @@ def _typecheckingstub__e23cb5710241f65fda5e65504911a7340786a62ce9cf7c60c9cfc1d4d
|
|
|
9337
9542
|
"""Type checking stubs"""
|
|
9338
9543
|
pass
|
|
9339
9544
|
|
|
9545
|
+
def _typecheckingstub__cdf6a33d88e10af638d11c3322b9291978a474ed65f1a2ab37cdecc88fbcd5ab(
|
|
9546
|
+
*,
|
|
9547
|
+
account: builtins.str,
|
|
9548
|
+
region: builtins.str,
|
|
9549
|
+
assume_role_additional_options: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9550
|
+
lookup_role_arn: typing.Optional[builtins.str] = None,
|
|
9551
|
+
lookup_role_external_id: typing.Optional[builtins.str] = None,
|
|
9552
|
+
properties_to_return: typing.Sequence[builtins.str],
|
|
9553
|
+
type_name: builtins.str,
|
|
9554
|
+
exact_identifier: typing.Optional[builtins.str] = None,
|
|
9555
|
+
property_match: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9556
|
+
) -> None:
|
|
9557
|
+
"""Type checking stubs"""
|
|
9558
|
+
pass
|
|
9559
|
+
|
|
9340
9560
|
def _typecheckingstub__684496ae759db19b352bca3cc225ef7242df94dfd04fc23412be9b315f601e9a(
|
|
9341
9561
|
*,
|
|
9342
9562
|
account: builtins.str,
|
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -672,6 +672,7 @@ from ..cloud_assembly_schema import (
|
|
|
672
672
|
AvailabilityZonesContextQuery as _AvailabilityZonesContextQuery_715a9fea,
|
|
673
673
|
AwsCloudFormationStackProperties as _AwsCloudFormationStackProperties_50fb16af,
|
|
674
674
|
BootstrapRole as _BootstrapRole_9b326056,
|
|
675
|
+
CcApiContextQuery as _CcApiContextQuery_7347fbd4,
|
|
675
676
|
ContainerImageAssetMetadataEntry as _ContainerImageAssetMetadataEntry_0a212d1d,
|
|
676
677
|
ContextProvider as _ContextProvider_fa789bb5,
|
|
677
678
|
EndpointServiceAvailabilityZonesContextQuery as _EndpointServiceAvailabilityZonesContextQuery_ea3ca0d1,
|
|
@@ -1323,7 +1324,7 @@ class CloudAssemblyBuilder(
|
|
|
1323
1324
|
self,
|
|
1324
1325
|
*,
|
|
1325
1326
|
key: builtins.str,
|
|
1326
|
-
props: typing.Union[typing.Union[_AmiContextQuery_74bf4b1b, typing.Dict[builtins.str, typing.Any]], typing.Union[_AvailabilityZonesContextQuery_715a9fea, typing.Dict[builtins.str, typing.Any]], typing.Union[_HostedZoneContextQuery_8e6ca28f, typing.Dict[builtins.str, typing.Any]], typing.Union[_SSMParameterContextQuery_675de122, typing.Dict[builtins.str, typing.Any]], typing.Union[_VpcContextQuery_a193c650, typing.Dict[builtins.str, typing.Any]], typing.Union[_EndpointServiceAvailabilityZonesContextQuery_ea3ca0d1, typing.Dict[builtins.str, typing.Any]], typing.Union[_LoadBalancerContextQuery_cb08d67c, typing.Dict[builtins.str, typing.Any]], typing.Union[_LoadBalancerListenerContextQuery_0eaf3c16, typing.Dict[builtins.str, typing.Any]], typing.Union[_SecurityGroupContextQuery_e772f3e6, typing.Dict[builtins.str, typing.Any]], typing.Union[_KeyContextQuery_3ac6128d, typing.Dict[builtins.str, typing.Any]], typing.Union[_PluginContextQuery_31a9d073, typing.Dict[builtins.str, typing.Any]]],
|
|
1327
|
+
props: typing.Union[typing.Union[_AmiContextQuery_74bf4b1b, typing.Dict[builtins.str, typing.Any]], typing.Union[_AvailabilityZonesContextQuery_715a9fea, typing.Dict[builtins.str, typing.Any]], typing.Union[_HostedZoneContextQuery_8e6ca28f, typing.Dict[builtins.str, typing.Any]], typing.Union[_SSMParameterContextQuery_675de122, typing.Dict[builtins.str, typing.Any]], typing.Union[_VpcContextQuery_a193c650, typing.Dict[builtins.str, typing.Any]], typing.Union[_EndpointServiceAvailabilityZonesContextQuery_ea3ca0d1, typing.Dict[builtins.str, typing.Any]], typing.Union[_LoadBalancerContextQuery_cb08d67c, typing.Dict[builtins.str, typing.Any]], typing.Union[_LoadBalancerListenerContextQuery_0eaf3c16, typing.Dict[builtins.str, typing.Any]], typing.Union[_SecurityGroupContextQuery_e772f3e6, typing.Dict[builtins.str, typing.Any]], typing.Union[_KeyContextQuery_3ac6128d, typing.Dict[builtins.str, typing.Any]], typing.Union[_CcApiContextQuery_7347fbd4, typing.Dict[builtins.str, typing.Any]], typing.Union[_PluginContextQuery_31a9d073, typing.Dict[builtins.str, typing.Any]]],
|
|
1327
1328
|
provider: _ContextProvider_fa789bb5,
|
|
1328
1329
|
) -> None:
|
|
1329
1330
|
'''Reports that some context is missing in order for this cloud assembly to be fully synthesized.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk-lib
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.182.0
|
|
4
4
|
Summary: Version 2 of the AWS Cloud Development Kit library
|
|
5
5
|
Home-page: https://github.com/aws/aws-cdk
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,7 +23,7 @@ License-File: LICENSE
|
|
|
23
23
|
License-File: NOTICE
|
|
24
24
|
Requires-Dist: aws-cdk.asset-awscli-v1<3.0.0,>=2.2.208
|
|
25
25
|
Requires-Dist: aws-cdk.asset-node-proxy-agent-v6<3.0.0,>=2.1.0
|
|
26
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<
|
|
26
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<41.0.0,>=40.6.0
|
|
27
27
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
28
28
|
Requires-Dist: jsii<2.0.0,>=1.106.0
|
|
29
29
|
Requires-Dist: publication>=0.0.3
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
aws_cdk/__init__.py,sha256=
|
|
1
|
+
aws_cdk/__init__.py,sha256=LvsRxmw9kQz4yD5Zz7pWjWIa8D-ifrEuDX8mJdUd_Qk,1963334
|
|
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.
|
|
3
|
+
aws_cdk/_jsii/__init__.py,sha256=16mApNAf5J8oGlfQelBghxR6uWXmALBnsL1lT2LNIQc,1543
|
|
4
|
+
aws_cdk/_jsii/aws-cdk-lib@2.182.0.jsii.tgz,sha256=CE3Afj-zBXgy7YmpdtTFDqu_zHBVW8KAKimXrmmclb4,24682400
|
|
5
5
|
aws_cdk/alexa_ask/__init__.py,sha256=yF4ftch7XArzAniw_xoUmGi3wLGeBqIUlOjBTHSxDb4,36370
|
|
6
|
-
aws_cdk/assertions/__init__.py,sha256=
|
|
6
|
+
aws_cdk/assertions/__init__.py,sha256=Fe7BZZpx5cUrxKtNdGbU4eXue79txDh_GqjfLV5wgCM,94355
|
|
7
7
|
aws_cdk/aws_accessanalyzer/__init__.py,sha256=XiNBttjwK1s2CYyccwKCXH5Nzb74L1i6rVnZ9Zwh49I,57464
|
|
8
8
|
aws_cdk/aws_acmpca/__init__.py,sha256=pgzIAfI56TAiluvWL0O6ppE8gKzLk-o-nfrB75kNY1w,337535
|
|
9
9
|
aws_cdk/aws_amazonmq/__init__.py,sha256=pqRGMdV7xi_wvtViL_EszXbMBKjFT5ZwUcLL7m5hBjU,165077
|
|
10
10
|
aws_cdk/aws_amplify/__init__.py,sha256=AJZkT4LNj9W0I_KiX16Rx6GiESe2Sz6GjYMdbg1ykSQ,203500
|
|
11
11
|
aws_cdk/aws_amplifyuibuilder/__init__.py,sha256=lI4dQQuIH1iEHTtQLW3wTAKIC1_xraUOlLeTOEst6T0,431551
|
|
12
|
-
aws_cdk/aws_apigateway/__init__.py,sha256=
|
|
12
|
+
aws_cdk/aws_apigateway/__init__.py,sha256=4Q-AGU1hFsYFW8U-Vcs1GzNA0CsLYOzGpuyj_q6roDc,1940561
|
|
13
13
|
aws_cdk/aws_apigatewayv2/__init__.py,sha256=hIPktleoMMMNM8ZHarJSJvzVEW0TDbhoz6XjJl3aPMI,1075837
|
|
14
14
|
aws_cdk/aws_apigatewayv2_authorizers/__init__.py,sha256=dlvfuPzC0x7irbpVRZRpVyLH4FihHnqGOwl9VUwRB5k,55670
|
|
15
15
|
aws_cdk/aws_apigatewayv2_integrations/__init__.py,sha256=b49Ownun7jTBIQIjVCUCLKc277gyPzxb0QX_UM_RSGU,141317
|
|
16
16
|
aws_cdk/aws_appconfig/__init__.py,sha256=uhCZ3TB2BkCKA4V0IndUAQ6TaRFivS-W8ggRA1yhUN0,743798
|
|
17
17
|
aws_cdk/aws_appflow/__init__.py,sha256=irV1oQfUhKmhb5E2Vu8YZmyz4EFJ5ZIWafU5LsludjE,787082
|
|
18
18
|
aws_cdk/aws_appintegrations/__init__.py,sha256=un2UJMbuTnmKPt4nnFlngTf7d-kr6XWFHnNq_RAvZK4,87864
|
|
19
|
-
aws_cdk/aws_applicationautoscaling/__init__.py,sha256=
|
|
19
|
+
aws_cdk/aws_applicationautoscaling/__init__.py,sha256=HPK082rPxhkPVUq7YnmUrsSrextChORjIL5flV6Ws7E,511490
|
|
20
20
|
aws_cdk/aws_applicationinsights/__init__.py,sha256=dFFqVnowlQumb7yZXHdoQTZjZvHMQUrb2BMhuuJdAHM,210812
|
|
21
21
|
aws_cdk/aws_applicationsignals/__init__.py,sha256=2ay00vhqDKLDwH5tSgclxP4g6T7Gubw5lniuMr6Io0w,164626
|
|
22
22
|
aws_cdk/aws_appmesh/__init__.py,sha256=6pS5nJjwlxxvf6L09DvTnwRbnN0Hg5-sF6xQSe6DuUk,1607404
|
|
23
23
|
aws_cdk/aws_apprunner/__init__.py,sha256=1SZg3NdECkG99iWRNUkqCi1Tz7IIzGMYQVkybr1jECg,241154
|
|
24
24
|
aws_cdk/aws_appstream/__init__.py,sha256=vgdLPfwWL81Qsy1VgPcP7BuZg9swpw_3yE417BHp9Bc,452009
|
|
25
|
-
aws_cdk/aws_appsync/__init__.py,sha256=
|
|
25
|
+
aws_cdk/aws_appsync/__init__.py,sha256=t3cYyD8_5ZCf0A9JEph9r4AUv4SxvmWE4r82JWjksQ4,1198206
|
|
26
26
|
aws_cdk/aws_apptest/__init__.py,sha256=o7PvWT6mdxtk85HXG2XYW5sxuT3NPNS5PbyGOshFWiw,148303
|
|
27
27
|
aws_cdk/aws_aps/__init__.py,sha256=ej6TuVkrURw0zKivZj8h9sbrtpxlIO4q2udmlQ896Lo,90208
|
|
28
28
|
aws_cdk/aws_arczonalshift/__init__.py,sha256=5LhX-5zdNGdKmrtiS4ts42Z-T-IGv0xgTAMJM3Ptx54,46832
|
|
29
29
|
aws_cdk/aws_athena/__init__.py,sha256=FyPMIJUdBLY3K7XtYRh0d_WfnyGZLtU0h2KJu56DPaI,203557
|
|
30
30
|
aws_cdk/aws_auditmanager/__init__.py,sha256=girW3zvSKS6-PF8Ul3OX3KgiAXAY3nKG9I38LBDA_kU,74464
|
|
31
|
-
aws_cdk/aws_autoscaling/__init__.py,sha256=
|
|
31
|
+
aws_cdk/aws_autoscaling/__init__.py,sha256=3sSnP1jeSck3_cNxaASOwXsYnbS5Zmnxtrt0TB0ebP0,1411478
|
|
32
32
|
aws_cdk/aws_autoscaling_common/__init__.py,sha256=kVLM6Pg4nnXlCMBchyRmam2CZ9nsStnkk0rXFUV5xCU,16867
|
|
33
33
|
aws_cdk/aws_autoscaling_hooktargets/__init__.py,sha256=QPzKlft8xvfOdhH60R0p9Yua32YHCagRkeNxVW8L1Ls,11720
|
|
34
34
|
aws_cdk/aws_autoscalingplans/__init__.py,sha256=7JRe3KgF5TciICPUqE1OuAguOPAelX5JmiuASXf-dEs,121127
|
|
35
35
|
aws_cdk/aws_b2bi/__init__.py,sha256=gnVoqv-1oBDuE8u2P-84BfnIymQesCMhWiDNShfhu5I,206003
|
|
36
36
|
aws_cdk/aws_backup/__init__.py,sha256=31zyxk0rDUCSa4i83Ab21PDN89qdVM9JnaUqCL9Hvf4,449880
|
|
37
37
|
aws_cdk/aws_backupgateway/__init__.py,sha256=fWZzjez06YHs0rk-kxVm0f2isg102cJv2jFesKW1Jm0,24571
|
|
38
|
-
aws_cdk/aws_batch/__init__.py,sha256=
|
|
38
|
+
aws_cdk/aws_batch/__init__.py,sha256=9X538DSj7OJe0M5dbaRS1bhznqk08O4RxT_tCrRYVr0,1504079
|
|
39
39
|
aws_cdk/aws_bcmdataexports/__init__.py,sha256=HI1cpueYOVZr-EDYqDX--ss7DkvI07HxGq6YR4cIE40,55627
|
|
40
|
-
aws_cdk/aws_bedrock/__init__.py,sha256=
|
|
40
|
+
aws_cdk/aws_bedrock/__init__.py,sha256=bk5J4LSDLGqtyXRmei4xzC17QFuDWVUXj392nD2zACI,1579857
|
|
41
41
|
aws_cdk/aws_billingconductor/__init__.py,sha256=d-J_dpWvMOtnkJJIK_Zn0RSP3LeVZl0qY04g62HgqUI,143066
|
|
42
42
|
aws_cdk/aws_budgets/__init__.py,sha256=2vAa1yh0ZeuDPTd0iSKnlYZhvXtk8dm_Jn3qvXr6w-o,163046
|
|
43
43
|
aws_cdk/aws_cassandra/__init__.py,sha256=W_w_HD4VZ8gnk9AVD7cZ_u-kGkK-C6ygW7aKENaPDmg,171087
|
|
44
44
|
aws_cdk/aws_ce/__init__.py,sha256=9EJZzT84vh2DyM439Gudk62QZ89JKQzWaYzoOKX7lwA,82855
|
|
45
|
-
aws_cdk/aws_certificatemanager/__init__.py,sha256=
|
|
45
|
+
aws_cdk/aws_certificatemanager/__init__.py,sha256=zXPlnTf4cn1B3HHzkvP0P6SQ7tHs76Rabr5PaGA0tM0,156793
|
|
46
46
|
aws_cdk/aws_chatbot/__init__.py,sha256=ywFHM408nEH8HRaOAjwiCjJqhbVDLZoBazwIAnFRyvE,158246
|
|
47
47
|
aws_cdk/aws_cleanrooms/__init__.py,sha256=ODQSNf7LoRveHalAHEK0KZisLkrcpzxRRY-graPQ2Ek,484920
|
|
48
48
|
aws_cdk/aws_cleanroomsml/__init__.py,sha256=OZ769Xji5yR16YuvCcaCuH-5emjHREnhIUqjlw7gXp8,49311
|
|
49
49
|
aws_cdk/aws_cloud9/__init__.py,sha256=WbYJhSBPFY4ix6PJiND_KHPIVWxim7VAsbDJ6ePpGec,43094
|
|
50
|
-
aws_cdk/aws_cloudformation/__init__.py,sha256=
|
|
51
|
-
aws_cdk/aws_cloudfront/__init__.py,sha256=
|
|
50
|
+
aws_cdk/aws_cloudformation/__init__.py,sha256=fj_fIehj7d4hEAUYEUTInpfJWaffi94MC5Myhv0IhLM,522356
|
|
51
|
+
aws_cdk/aws_cloudfront/__init__.py,sha256=lrA1dgv7ksOyVXtrEkLhKLBMIwcN6sfo8bn2FASf2d8,1636176
|
|
52
52
|
aws_cdk/aws_cloudfront/experimental/__init__.py,sha256=Svd8hUJhY0KNHirVPPGjF1vmiBBiGoxlcCI93XvdeYQ,142419
|
|
53
53
|
aws_cdk/aws_cloudfront_origins/__init__.py,sha256=D8kwMlk2NKWrXsB7J9EDcGJYL9BSxN1uXWdw7olR1eg,320367
|
|
54
|
-
aws_cdk/aws_cloudtrail/__init__.py,sha256=
|
|
54
|
+
aws_cdk/aws_cloudtrail/__init__.py,sha256=1VF1CQJBqIunG7u1HY2MXdMfsH6uhYeinkH7kC5cje8,365754
|
|
55
55
|
aws_cdk/aws_cloudwatch/__init__.py,sha256=VHqNGmsxGh8Pay-7dLewu0z--nXt0xIiaTbmQgMJJDA,815681
|
|
56
56
|
aws_cdk/aws_cloudwatch_actions/__init__.py,sha256=NiO4EWHXKqyaPYDW-sVvV0YJep3Z-udkF84JlVAIobY,22370
|
|
57
57
|
aws_cdk/aws_codeartifact/__init__.py,sha256=ysKsozQWde3PaDYQ87_gm3BejhU8rlSX3C3oy81hdcI,88035
|
|
@@ -78,7 +78,7 @@ aws_cdk/aws_customerprofiles/__init__.py,sha256=knoCVSBbZZiDjnU6A9hofazmbyd2YVbk
|
|
|
78
78
|
aws_cdk/aws_databrew/__init__.py,sha256=U8tBGuMZutowBH2JhAP6nXxmuFY9nzqrPpY4z4LzpR8,535977
|
|
79
79
|
aws_cdk/aws_datapipeline/__init__.py,sha256=liVPxcKxLvGlJbzUXX2HlbkD7tT0qsY2ldQ80zXSsLQ,60560
|
|
80
80
|
aws_cdk/aws_datasync/__init__.py,sha256=jJg8H3RxzJUbAVavKMnLamCGfEUofE8zg-KH4Pm44SU,604844
|
|
81
|
-
aws_cdk/aws_datazone/__init__.py,sha256=
|
|
81
|
+
aws_cdk/aws_datazone/__init__.py,sha256=VWyEgJt5MTZcrFwHFesCEJpB4Dy1UlLdQ0RzQOz_Gfg,373675
|
|
82
82
|
aws_cdk/aws_dax/__init__.py,sha256=I1yrJ8vZ4TR6U7JC6FFDmCtlDTW63xabfSsdQkMQ4q0,76119
|
|
83
83
|
aws_cdk/aws_deadline/__init__.py,sha256=H6eXRMn0HdVsKwC7bGrvRJXx8h1nC_bxHoHWfn8UXUk,328425
|
|
84
84
|
aws_cdk/aws_detective/__init__.py,sha256=BVovwAOykTby6xBDxbmdJMC0P-DO60b6-B48tCgITew,41475
|
|
@@ -90,13 +90,13 @@ aws_cdk/aws_dms/__init__.py,sha256=7APrJeecAM2Tdd6gWsb1_6xXoF5mZTqx1Y-4IXFUGhY,1
|
|
|
90
90
|
aws_cdk/aws_docdb/__init__.py,sha256=WYfy38Sv7GpnLJjOO4CsATCp6-4-6lsokowNSkeOwHU,341392
|
|
91
91
|
aws_cdk/aws_docdbelastic/__init__.py,sha256=8ULf53CjSElODf5ZegB4vP1fvBXVjZjnQOA-D976_nE,46746
|
|
92
92
|
aws_cdk/aws_dynamodb/__init__.py,sha256=MVaXJ5IX_tD7vm3LslNwlS36e6ODRhO77HS6XWghDmM,1018053
|
|
93
|
-
aws_cdk/aws_ec2/__init__.py,sha256=
|
|
94
|
-
aws_cdk/aws_ecr/__init__.py,sha256=
|
|
93
|
+
aws_cdk/aws_ec2/__init__.py,sha256=ASzfDhxhZy2Ds8OzZRvznc72K-PLvDEF5jBdyARqVHM,5956120
|
|
94
|
+
aws_cdk/aws_ecr/__init__.py,sha256=JUQxPXkEX82FL_yPZtkDsgUmpNSEd_yf6qi2s8Ol9gI,299736
|
|
95
95
|
aws_cdk/aws_ecr_assets/__init__.py,sha256=pVYFzoIWqh2lGnA0VARJXUwyJJw6BWGteKTiTnQI2UA,84919
|
|
96
|
-
aws_cdk/aws_ecs/__init__.py,sha256=
|
|
96
|
+
aws_cdk/aws_ecs/__init__.py,sha256=k3VptheG7ph6ik7erCZIRdkhGFcX4GbJkdkyvPEr3iY,2736908
|
|
97
97
|
aws_cdk/aws_ecs_patterns/__init__.py,sha256=BMxXLUS3kQlDxCUBRCIKNcpBxgrXL4whnTYpH-NwK4Q,1039923
|
|
98
98
|
aws_cdk/aws_efs/__init__.py,sha256=Vwby-0vbcL99svN6PMviQkzgmYldJ6wK1q2Ft_giUCk,283704
|
|
99
|
-
aws_cdk/aws_eks/__init__.py,sha256=
|
|
99
|
+
aws_cdk/aws_eks/__init__.py,sha256=Dpl5OLCcZJEZNIIoWYb_VxkGtGoYO7E1BEQhmRM1tyc,1239379
|
|
100
100
|
aws_cdk/aws_elasticache/__init__.py,sha256=PzbNJILv0gtYn_xKUkzgmK1cw5zBu2V4bj1R4AWVPNo,527489
|
|
101
101
|
aws_cdk/aws_elasticbeanstalk/__init__.py,sha256=zkQcloEtO1N4Z0oj24wRxhwAEZQnYXhIJFNclDh4SW8,165453
|
|
102
102
|
aws_cdk/aws_elasticloadbalancing/__init__.py,sha256=87f9RCYjZ1tYCg_ork7bK6tEyvVt8J8b6xAr3JTbgpU,163062
|
|
@@ -117,7 +117,7 @@ aws_cdk/aws_fis/__init__.py,sha256=nTz_j8iiqdpSLXQOsxA7cKlr0ORKRjtcixG_5W3RCkU,1
|
|
|
117
117
|
aws_cdk/aws_fms/__init__.py,sha256=UN3VPl3JJw9WgBbEP796SzqNr5tddaCWvPhk7S9L4mI,263758
|
|
118
118
|
aws_cdk/aws_forecast/__init__.py,sha256=axaCnCEG2bM7Bg2EZqMp3Q1NtrOChjHmweGKyH2ZSv0,62533
|
|
119
119
|
aws_cdk/aws_frauddetector/__init__.py,sha256=g5M3QBrjZa_z3_3MK8l4oymI2xJwWp-t9Uoe_e16-rU,262259
|
|
120
|
-
aws_cdk/aws_fsx/__init__.py,sha256=
|
|
120
|
+
aws_cdk/aws_fsx/__init__.py,sha256=ICFBd23fXrwt2BbWWMyh-xEbHm28IFdjaMheXNDIMYg,583751
|
|
121
121
|
aws_cdk/aws_gamelift/__init__.py,sha256=QKZTcBUCwyve8mrNrBh5jLsMNdx5WHoHcu_zth7lsO8,738055
|
|
122
122
|
aws_cdk/aws_globalaccelerator/__init__.py,sha256=7IfeGNzsn9T7rzhqvYLpa70URgBYcSuYQDEdxJLLGqA,233870
|
|
123
123
|
aws_cdk/aws_globalaccelerator_endpoints/__init__.py,sha256=_hFh1G-qXaY8fW1weNy7duMb6LWqPPc4KhtF5LnMQYo,26848
|
|
@@ -126,13 +126,13 @@ aws_cdk/aws_grafana/__init__.py,sha256=pmmMe_yT0f3a-OuqpY1r9LvkZ4g3plyYaXpbLpXyq
|
|
|
126
126
|
aws_cdk/aws_greengrass/__init__.py,sha256=JY6CXCvkLRyjtROOu1G907b0fwdCzHCjJQcVyxL3EBg,662483
|
|
127
127
|
aws_cdk/aws_greengrassv2/__init__.py,sha256=M2Zo-YjJx2cOYvTiF_xIalSh5VgB7Br8Gpp1QaPueJ8,213877
|
|
128
128
|
aws_cdk/aws_groundstation/__init__.py,sha256=hPZkcNCJiPbU8-OI4iCYpC27uzednN1Vt6F3KVVrJbA,217851
|
|
129
|
-
aws_cdk/aws_guardduty/__init__.py,sha256=
|
|
129
|
+
aws_cdk/aws_guardduty/__init__.py,sha256=XMUcOWwWMo073sJ_gbrB6FRtN190FVTgLg4oVcdHP1g,261720
|
|
130
130
|
aws_cdk/aws_healthimaging/__init__.py,sha256=bNpcbOhCYjvvgCJwb6pbmA8BH_8RjtjKJZG8f40I8qQ,17410
|
|
131
131
|
aws_cdk/aws_healthlake/__init__.py,sha256=dMFbQBLwb5u5qcae0VijYlqI8dU47O7F4Cr7uSPqFsE,55398
|
|
132
|
-
aws_cdk/aws_iam/__init__.py,sha256=
|
|
132
|
+
aws_cdk/aws_iam/__init__.py,sha256=lX1eVrhmyGPGYH-Bxu7qRQsNYwlFyXm0DzTwyUamtAU,848464
|
|
133
133
|
aws_cdk/aws_identitystore/__init__.py,sha256=yXjJuier75gXXW5QBSRTsGvDx5BdNdu9VRcnLhbEMlQ,32106
|
|
134
134
|
aws_cdk/aws_imagebuilder/__init__.py,sha256=xnhEuR7Ad_174z7mrTVY9k6e31IKVwOVpXfFUmZHUWI,592140
|
|
135
|
-
aws_cdk/aws_inspector/__init__.py,sha256=
|
|
135
|
+
aws_cdk/aws_inspector/__init__.py,sha256=KY4tkOe8TnyiIknkO7B-qGalom9PjNxuzoFIhBPLX9I,52267
|
|
136
136
|
aws_cdk/aws_inspectorv2/__init__.py,sha256=lhoSgVEY46jpcneaikoJMwXS3RC6tPKjIggPB4xjXhE,165335
|
|
137
137
|
aws_cdk/aws_internetmonitor/__init__.py,sha256=FpugpXTCcYp_CUFYFH7QM56ZJ4tpXBtMYdP-xA0INa8,83648
|
|
138
138
|
aws_cdk/aws_invoicing/__init__.py,sha256=KTxORme27Kcdk1tHgvnp5_Uv4Yz35yHKRRyoWLVBCkY,31161
|
|
@@ -142,7 +142,7 @@ aws_cdk/aws_iotcoredeviceadvisor/__init__.py,sha256=QdtVnj56P0XSXJt9GYeViSdWyfle
|
|
|
142
142
|
aws_cdk/aws_iotevents/__init__.py,sha256=x-reNiI450GnQ_Id5EkzK1w2WwzCyF0N28T-pBCrcFY,447236
|
|
143
143
|
aws_cdk/aws_iotfleethub/__init__.py,sha256=MAH4xjFll__yoeW3QZT7ax-bIfGHz_m9xTLFarVl0rc,21262
|
|
144
144
|
aws_cdk/aws_iotfleetwise/__init__.py,sha256=U-lsQTVzdVJVcTY3KczGa1BQ5RVbRcn_56Lxv5h8LCc,457928
|
|
145
|
-
aws_cdk/aws_iotsitewise/__init__.py,sha256=
|
|
145
|
+
aws_cdk/aws_iotsitewise/__init__.py,sha256=CNta2A1ui9uCxoibhjXXq1NEj1_1pTwL38T6L02MFVk,371242
|
|
146
146
|
aws_cdk/aws_iotthingsgraph/__init__.py,sha256=gg9NwfV9uFqW6K86FJN42tyqed8OfYc2NIMsn64cSxk,17488
|
|
147
147
|
aws_cdk/aws_iottwinmaker/__init__.py,sha256=OEh9aDebGH1uG3m5X4vQ41MDd60LttdrHR1Lupj7EWQ,290337
|
|
148
148
|
aws_cdk/aws_iotwireless/__init__.py,sha256=4CH5FU78eROY9OERkpEBmjpQin4zX2FdUV_u7EoIEF4,413142
|
|
@@ -154,11 +154,11 @@ aws_cdk/aws_kendraranking/__init__.py,sha256=3HBuK2dbNWAYDUbjyCmc7D9M9pDo1jg-DNC
|
|
|
154
154
|
aws_cdk/aws_kinesis/__init__.py,sha256=Zy8yybVxFdNNNFkamLRdGFivYe7J90nrGAT_HiGONVM,353435
|
|
155
155
|
aws_cdk/aws_kinesisanalytics/__init__.py,sha256=0ZPCWgzPFOS99sfyhzdTfr7-eQQMoUlR_eDmf5PCmc0,587440
|
|
156
156
|
aws_cdk/aws_kinesisanalyticsv2/__init__.py,sha256=zAK6orw0mZs0V98cWWb94KcE76_nieuxXVFgKQCD9XM,387963
|
|
157
|
-
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=
|
|
157
|
+
aws_cdk/aws_kinesisfirehose/__init__.py,sha256=BUVKNQkI8thv66zNmX7ZCCknKP1akRFsHZD7eV5_9Vo,843520
|
|
158
158
|
aws_cdk/aws_kinesisvideo/__init__.py,sha256=KR-ZCTMZFNR9EJ32dIjEfeiZQMJZha33v-2lg0-mhYY,38745
|
|
159
159
|
aws_cdk/aws_kms/__init__.py,sha256=zVprnq7sot7-s8S3-EUMDO4YB7Y1DTDIycenuMo3edw,251590
|
|
160
160
|
aws_cdk/aws_lakeformation/__init__.py,sha256=MmGVkaQ4_kMg9y78pdpq-YO4OEJXC5vMi3Z5UliTZ3M,335979
|
|
161
|
-
aws_cdk/aws_lambda/__init__.py,sha256=
|
|
161
|
+
aws_cdk/aws_lambda/__init__.py,sha256=MGbTz7z7WrYWbgLPaq18VIZeW_1cwi-KVEa6CbvzTVI,1744217
|
|
162
162
|
aws_cdk/aws_lambda_destinations/__init__.py,sha256=WHB7Vk6jk0pwFVUEAPGfFuSUUOJirZ7h3K5Z92yoE8E,24123
|
|
163
163
|
aws_cdk/aws_lambda_event_sources/__init__.py,sha256=zL9hyaZTZbcJNwWfLQkryhBzWBi-5MgxjFBivhzzH0A,247801
|
|
164
164
|
aws_cdk/aws_lambda_nodejs/__init__.py,sha256=5ZHsuf92bN0tyUQDKHmsVuF0s6nW28juTIgcMUyPen4,179430
|
|
@@ -167,7 +167,7 @@ aws_cdk/aws_lex/__init__.py,sha256=wYvO4joPahEBoAF9dg_wj6u1nymh32ukEYkG4UfWAew,7
|
|
|
167
167
|
aws_cdk/aws_licensemanager/__init__.py,sha256=y37V03_LDcfC2j681MxlhN1J5O5o3dJjFZnFJ0u7V9U,87983
|
|
168
168
|
aws_cdk/aws_lightsail/__init__.py,sha256=KmkcfLrR3CMiPBEo6eQynMCi4eWi-nmK_zzFAYh-f1E,540635
|
|
169
169
|
aws_cdk/aws_location/__init__.py,sha256=NYplr3y4CQ0jwMMzJHtdPwfLOT4IuDCPgmJOO8_Ub-M,206501
|
|
170
|
-
aws_cdk/aws_logs/__init__.py,sha256=
|
|
170
|
+
aws_cdk/aws_logs/__init__.py,sha256=g4Yrw3ksXapoLE8T_lxziqT2Gv3XqtHigJ6PRbhKYkA,790588
|
|
171
171
|
aws_cdk/aws_logs_destinations/__init__.py,sha256=PeHzCEdgpSjOK9a-gcjQDrvkaYPh7a_dm8n40OimfUE,12811
|
|
172
172
|
aws_cdk/aws_lookoutequipment/__init__.py,sha256=Fe9zxH-m07GxYnFan0JQvtzyUBRyfUYiXOCB0Jd8tXg,59482
|
|
173
173
|
aws_cdk/aws_lookoutmetrics/__init__.py,sha256=1c54i_vcrqAvaWckONfh13-jVU7NwRd9CyBUPoW1RKY,158857
|
|
@@ -179,7 +179,7 @@ aws_cdk/aws_mediaconnect/__init__.py,sha256=6EJuYbnT4e4DSc4IEcX6iUJbCsuZHY3Ld_Z7
|
|
|
179
179
|
aws_cdk/aws_mediaconvert/__init__.py,sha256=ZfjtSjqYyAhLR-O8I46o8VoKV0BaquNucRO6JH6Wdvk,90282
|
|
180
180
|
aws_cdk/aws_medialive/__init__.py,sha256=aWHlNa1XLi6uvT9UQauMQLgYEm5PLPxlPyuzhFjGxro,2000660
|
|
181
181
|
aws_cdk/aws_mediapackage/__init__.py,sha256=4JVrXRSIj0JAQxOe0I2PHHaTmOGSnKxeiDYd3TxgTD0,443187
|
|
182
|
-
aws_cdk/aws_mediapackagev2/__init__.py,sha256=
|
|
182
|
+
aws_cdk/aws_mediapackagev2/__init__.py,sha256=MLfjucHsE_j-ua80SAoY9TY3plRdVJeTe_mvD9HlXqs,249383
|
|
183
183
|
aws_cdk/aws_mediastore/__init__.py,sha256=q-oy27t6Z9XihVlcW0gtbWltKaLyj4dCNKJfVyOrp0U,59415
|
|
184
184
|
aws_cdk/aws_mediatailor/__init__.py,sha256=_GCfojwf6sP0Yk6tGGQTUtt6HsTSkPvYtp1jA4qVEaU,271370
|
|
185
185
|
aws_cdk/aws_memorydb/__init__.py,sha256=vQzHmy32WxrwE4tITCeQfCOZk0HBDHAMvA9-ykquu3A,176336
|
|
@@ -195,27 +195,27 @@ aws_cdk/aws_notificationscontacts/__init__.py,sha256=mcjKdAlwKIg6bZM3f1sqC25vc9W
|
|
|
195
195
|
aws_cdk/aws_oam/__init__.py,sha256=0qetIc7_rUXkL7S1zYnpxf0qlXIvtFg5oCPIorDLSr4,50978
|
|
196
196
|
aws_cdk/aws_omics/__init__.py,sha256=NR3_mE3uKGgGBpebGkT2HLfX62shU4qsc6fNyFeRTOQ,157529
|
|
197
197
|
aws_cdk/aws_opensearchserverless/__init__.py,sha256=0a94QbtZdcwwfemJn0flbxmGZu3-DQ8CI5uvH0LRkn8,118076
|
|
198
|
-
aws_cdk/aws_opensearchservice/__init__.py,sha256=
|
|
198
|
+
aws_cdk/aws_opensearchservice/__init__.py,sha256=8-8bid264TPa-rRZA-nXtZNqYM08IoGG8zld4QZNT5Y,653034
|
|
199
199
|
aws_cdk/aws_opsworks/__init__.py,sha256=8V_ueRxKAdkbxMoaSbJNbdrlbSbswYlEaFCSzm-aHk4,437770
|
|
200
200
|
aws_cdk/aws_opsworkscm/__init__.py,sha256=I7MOUF6zDNYpn-1TNoJWLK7sNObnKuFzXzcS3ixG3ug,88231
|
|
201
201
|
aws_cdk/aws_organizations/__init__.py,sha256=61PbUnB5YHKvnIM2obiO6O3Hh_BTHXAr1SkotC6dokM,111237
|
|
202
202
|
aws_cdk/aws_osis/__init__.py,sha256=i4mnzxOSDKgkRhRSM_Xd2Zd9zpTLlQFd4fthuOxbN7o,66832
|
|
203
203
|
aws_cdk/aws_panorama/__init__.py,sha256=T5eqx3YFWeQw8rMi9e2_G_3x9-UMHB4Y1f0OnwvCwXI,81470
|
|
204
204
|
aws_cdk/aws_paymentcryptography/__init__.py,sha256=nfc9WQzw0aUv8tEbzmliIUj1da1z66nF4NaO8euCNG4,59451
|
|
205
|
-
aws_cdk/aws_pcaconnectorad/__init__.py,sha256=
|
|
205
|
+
aws_cdk/aws_pcaconnectorad/__init__.py,sha256=QSwYcbZlPbV1c2J5_EhSM3AggOmrdKnLGCH2zujzSjU,387544
|
|
206
206
|
aws_cdk/aws_pcaconnectorscep/__init__.py,sha256=_GEtUgN6V8GlL8ZX4BJk6u8HWrzlxxEsXAA3tIeZiEc,45124
|
|
207
207
|
aws_cdk/aws_pcs/__init__.py,sha256=IwuX-IhSuU6MW8xD98iPF-PduSPW2YTGSmXfdeJZRs4,149217
|
|
208
208
|
aws_cdk/aws_personalize/__init__.py,sha256=AvUNyVwnqzb784BilPiv8Eb6Yi_WkEaWjc_wky01Ueo,137374
|
|
209
209
|
aws_cdk/aws_pinpoint/__init__.py,sha256=h9secEtICDcLaQG5j78L4JLIBf3mWNfF4giKyFentgw,862368
|
|
210
210
|
aws_cdk/aws_pinpointemail/__init__.py,sha256=ZFWliw43D_CFFVIFEJ5Ke98HCxSvfD7dvv62Dm8T6co,139494
|
|
211
|
-
aws_cdk/aws_pipes/__init__.py,sha256=
|
|
211
|
+
aws_cdk/aws_pipes/__init__.py,sha256=0AiR43fCYOrLy8BWp-G_djvLbnKuLlFIqCQbL3xtP7Q,489243
|
|
212
212
|
aws_cdk/aws_proton/__init__.py,sha256=tpbXvDjtyU1SyvVXJEaqwaJAMiZ1xlriFJhfqpJPOOs,71292
|
|
213
213
|
aws_cdk/aws_qbusiness/__init__.py,sha256=y6l8RSY-DTF1uYuJ1vACmpsAPIZC_lktCVLS_YxRQNI,481093
|
|
214
214
|
aws_cdk/aws_qldb/__init__.py,sha256=Y77mQlE_bPnvp2-xi6Zx7Nqq88MVjB0bGsFskfkTpj8,63825
|
|
215
|
-
aws_cdk/aws_quicksight/__init__.py,sha256=
|
|
215
|
+
aws_cdk/aws_quicksight/__init__.py,sha256=5bUthDyVHc-SUKrwXQp98X7miTLRb1EEYzgYNKbNNAk,15460412
|
|
216
216
|
aws_cdk/aws_ram/__init__.py,sha256=hTueUpQ-pdpE9TIHA7Ekd4-IMhT006gRbqhaUtTDDy0,51838
|
|
217
217
|
aws_cdk/aws_rbin/__init__.py,sha256=CzabGGl5JnclFXLGuB8hu8bf_z0rWog3FqYK7o84QYo,50396
|
|
218
|
-
aws_cdk/aws_rds/__init__.py,sha256=
|
|
218
|
+
aws_cdk/aws_rds/__init__.py,sha256=wU9NqPDLfXbU5n3h4oypWMeE6SIFLmLR8hT5YOplwcA,2916441
|
|
219
219
|
aws_cdk/aws_redshift/__init__.py,sha256=-bwoe5p1CLfrWeIJYNyTaeD9Ydv6Au2dvI5nFDRuZXg,405207
|
|
220
220
|
aws_cdk/aws_redshiftserverless/__init__.py,sha256=_sToFikuIuA0NKu0ug8TqhCnDsCu-5SLosIeCvtxkH0,170949
|
|
221
221
|
aws_cdk/aws_refactorspaces/__init__.py,sha256=HlrRPKH0kwPz6Ka6zooBl3hqU5s6lpjiLrMjJXHDIro,123625
|
|
@@ -233,7 +233,7 @@ aws_cdk/aws_route53recoverycontrol/__init__.py,sha256=0WSDxnS6OvT32w-Mxqq42R2fYD
|
|
|
233
233
|
aws_cdk/aws_route53recoveryreadiness/__init__.py,sha256=_tJI6bM9ZJJwOwM1wjYJIBH5zjnfXBLWj996joYsoYs,95213
|
|
234
234
|
aws_cdk/aws_route53resolver/__init__.py,sha256=nJbfiGeiK-Ol3xK2i2NNla7SkYZRwQSHKZpOWFDdKjo,244028
|
|
235
235
|
aws_cdk/aws_rum/__init__.py,sha256=RKoOvHz8UScEGP9v_A5mKXdxOmz1pFL6ANj0bgWSybg,74371
|
|
236
|
-
aws_cdk/aws_s3/__init__.py,sha256=
|
|
236
|
+
aws_cdk/aws_s3/__init__.py,sha256=D2z5Trsx2WsRiwv14KeRqgBK5Chbnj7FagI9__B1E40,1276090
|
|
237
237
|
aws_cdk/aws_s3_assets/__init__.py,sha256=f7RpzeNM5tiA_-lENWwIdwVWBSvcAle5V0sKunuNjto,49202
|
|
238
238
|
aws_cdk/aws_s3_deployment/__init__.py,sha256=OWyq4P4wZ3G1Z4LWGBDshPm6M1tuzJjP2UpfOKQqY_A,122378
|
|
239
239
|
aws_cdk/aws_s3_notifications/__init__.py,sha256=X8q1NjKIwZ3ksb2Y4ElKtjmJQJy5HekQTN2mfLPd2Bw,10061
|
|
@@ -241,7 +241,7 @@ aws_cdk/aws_s3express/__init__.py,sha256=Ey2TqZ09cdHtl8rujUVC1IgQa54qiT2B1tFQGzC
|
|
|
241
241
|
aws_cdk/aws_s3objectlambda/__init__.py,sha256=SIlxWqJL2Ssm_ypY8fqfOrr0i01Swdw5eG1SIOPNqBg,68692
|
|
242
242
|
aws_cdk/aws_s3outposts/__init__.py,sha256=E_82WGxBiu2QGNbY88JpkS5qvNNiQ9Hb9Thi3ZHV9k8,115636
|
|
243
243
|
aws_cdk/aws_s3tables/__init__.py,sha256=JJEX51HJKKM6N8_3B8C62tncam0E9StSJDJW7GLmuKE,31603
|
|
244
|
-
aws_cdk/aws_sagemaker/__init__.py,sha256=
|
|
244
|
+
aws_cdk/aws_sagemaker/__init__.py,sha256=86W00qTrWzUyHiEy48njrHHMMJ5vCSm-j_o9eO15ZyY,3120702
|
|
245
245
|
aws_cdk/aws_sam/__init__.py,sha256=GwhKjo0X2m3Hcdj0nmqqVJkGn9h2WbkB5UL_pidSH44,757717
|
|
246
246
|
aws_cdk/aws_scheduler/__init__.py,sha256=oGZiOom3R7ap664AOTZKKtMA7R1E0Y2rTCCL2OL9exY,158932
|
|
247
247
|
aws_cdk/aws_sdb/__init__.py,sha256=83MI2E_PaxkR5JTx1TB0X0cMVf7KsxXNY0MI1h_5T6A,10788
|
|
@@ -256,7 +256,7 @@ aws_cdk/aws_ses_actions/__init__.py,sha256=OL6WyVSh2wmikWy6ohT9tk__mIuBFBVM6hr7-
|
|
|
256
256
|
aws_cdk/aws_shield/__init__.py,sha256=u2HOZSSMan1klAHeQMyi9q_RpsWBZo_5rstEk1FZLSc,105419
|
|
257
257
|
aws_cdk/aws_signer/__init__.py,sha256=dCiLzdcNfJFM08BJu_PP3sEe9QjFcu8kcyRiQHwP5ns,59411
|
|
258
258
|
aws_cdk/aws_simspaceweaver/__init__.py,sha256=aMmfPBIGNmC2ck7Wdox-uWXiQ8tPVUOEmSE5t4RyhNY,32637
|
|
259
|
-
aws_cdk/aws_sns/__init__.py,sha256=
|
|
259
|
+
aws_cdk/aws_sns/__init__.py,sha256=XEnSWMl_B3C402PVCVHiU543YviV996KC-rNu5hL0xA,405976
|
|
260
260
|
aws_cdk/aws_sns_subscriptions/__init__.py,sha256=qHhGt1KvVVSk5xzggHF2EImcDsuTYd_s4N5P46xB5SE,63443
|
|
261
261
|
aws_cdk/aws_sqs/__init__.py,sha256=w5CIS33073ckGzxaSh0dX8Td5TrdS9O7N2V6WvVlexI,287239
|
|
262
262
|
aws_cdk/aws_ssm/__init__.py,sha256=BuGUnl50Jk0ySh2zjnT2o_YbzCfcV4R_r4Rwk1OOdhc,599287
|
|
@@ -273,27 +273,27 @@ aws_cdk/aws_timestream/__init__.py,sha256=H8FsZmYu015c0A-PqfTINg6AO-g2D1oXy2Jqlq
|
|
|
273
273
|
aws_cdk/aws_transfer/__init__.py,sha256=jITHHeMLtGs3hwr7u01xsGzRmha6aguDtJalL5v-PJg,448339
|
|
274
274
|
aws_cdk/aws_verifiedpermissions/__init__.py,sha256=3WdGsRMPeelf1NRu4lir1_-M7P6r0Ex5lgFxsYMTZ2w,154844
|
|
275
275
|
aws_cdk/aws_voiceid/__init__.py,sha256=oNdK-k5gt0-X0evdU_Qxb39gB6Ec6AxIok_RBnEUD2E,22487
|
|
276
|
-
aws_cdk/aws_vpclattice/__init__.py,sha256=
|
|
276
|
+
aws_cdk/aws_vpclattice/__init__.py,sha256=mwmiTtBD2rIi2umCjXi3kDbj84o37YYO92c2mDiSJG8,378198
|
|
277
277
|
aws_cdk/aws_waf/__init__.py,sha256=RBdzr4Bd3UjK9V5TtdyemLWOY0WR-JUEh0WjHBTJuRU,212199
|
|
278
278
|
aws_cdk/aws_wafregional/__init__.py,sha256=j18Bfp911qSJGxfyxxs5VOPxhFbiCeZW8Tz4wFC4pa4,276775
|
|
279
|
-
aws_cdk/aws_wafv2/__init__.py,sha256=
|
|
280
|
-
aws_cdk/aws_wisdom/__init__.py,sha256=
|
|
279
|
+
aws_cdk/aws_wafv2/__init__.py,sha256=ppSaDIaEMeuaO4gUkkEzbSf-ym1MGt0rAVUHfj9yPmw,1439330
|
|
280
|
+
aws_cdk/aws_wisdom/__init__.py,sha256=IhuAmt8H5SOzeDF9Xx1ZYZUU17mY6E0rkdMJ8wFsSI4,638986
|
|
281
281
|
aws_cdk/aws_workspaces/__init__.py,sha256=agC72J8zP_G2NI4nzzYjmlSNUygoa7f-ebFcfxhSBts,99201
|
|
282
|
-
aws_cdk/aws_workspacesthinclient/__init__.py,sha256=
|
|
283
|
-
aws_cdk/aws_workspacesweb/__init__.py,sha256=
|
|
282
|
+
aws_cdk/aws_workspacesthinclient/__init__.py,sha256=nFSsouXqpjSDrsEBOH0CGV6CCwHxCjNACgcigDEMN8g,49517
|
|
283
|
+
aws_cdk/aws_workspacesweb/__init__.py,sha256=CppQEMxEhUPkEPh6MmFFfhsm1c2TybopdiZGuuiAEfA,280980
|
|
284
284
|
aws_cdk/aws_xray/__init__.py,sha256=xQBSDBK6NWs8C09LUjc531ff8Liy3SO9Mwu6LpXURdE,98567
|
|
285
|
-
aws_cdk/cloud_assembly_schema/__init__.py,sha256=
|
|
285
|
+
aws_cdk/cloud_assembly_schema/__init__.py,sha256=o5Jxc9ApXbvUYeNbljV-HFrVWOeWsBPxuAoQFUsV8p0,440021
|
|
286
286
|
aws_cdk/cloudformation_include/__init__.py,sha256=nWU59UskSwMHLVfmA2qrsTOqUk65NWElIPTvp-KLA_8,50358
|
|
287
287
|
aws_cdk/custom_resources/__init__.py,sha256=yhqIybvAUuCth3twMsH4MnQB7J-Guj2RcYFRbyUFr7c,168133
|
|
288
|
-
aws_cdk/cx_api/__init__.py,sha256=
|
|
288
|
+
aws_cdk/cx_api/__init__.py,sha256=soCQVBkw6fPzkwGqmqxizGVpq9Mq6asAuhqICFAm0wo,176191
|
|
289
289
|
aws_cdk/lambda_layer_awscli/__init__.py,sha256=FUcVOwp5XHkYiFms2BGfZWWYCo4vujoEtc9uN-Jc570,3291
|
|
290
290
|
aws_cdk/lambda_layer_node_proxy_agent/__init__.py,sha256=Q0PMbPsP4A7YO-YZe9esn-iziyQHEXR5z1CSSNfeHn8,3306
|
|
291
291
|
aws_cdk/pipelines/__init__.py,sha256=HOXBjF1CPi8wQm8zl8Si7G8DpfKl_DyY7-Bgm8WpjEU,397495
|
|
292
292
|
aws_cdk/region_info/__init__.py,sha256=29jwDjGrb4gSGedV1W1e5SuAYF9ZZKYsz0gsSFjdBO4,39658
|
|
293
293
|
aws_cdk/triggers/__init__.py,sha256=fPVnj7ot9BFSzO-cTWQz9bMuGPG1hqZFJ7ROMkq0vnk,123578
|
|
294
|
-
aws_cdk_lib-2.
|
|
295
|
-
aws_cdk_lib-2.
|
|
296
|
-
aws_cdk_lib-2.
|
|
297
|
-
aws_cdk_lib-2.
|
|
298
|
-
aws_cdk_lib-2.
|
|
299
|
-
aws_cdk_lib-2.
|
|
294
|
+
aws_cdk_lib-2.182.0.dist-info/LICENSE,sha256=y47tc38H0C4DpGljYUZDl8XxidQjNxxGLq-K4jwv6Xc,11391
|
|
295
|
+
aws_cdk_lib-2.182.0.dist-info/METADATA,sha256=ap6UhyNxo-nHxN7FhxdNh_J-5FI4kKPzUcG5t00jCnU,59972
|
|
296
|
+
aws_cdk_lib-2.182.0.dist-info/NOTICE,sha256=lrDSwMl9zn-5xv2z3qp2Rw6Nm8pARejpIJ5eXzJtuQk,41177
|
|
297
|
+
aws_cdk_lib-2.182.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
298
|
+
aws_cdk_lib-2.182.0.dist-info/top_level.txt,sha256=1TALAKbuUGsMSrfKWEf268lySCmcqSEO6cDYe_XlLHM,8
|
|
299
|
+
aws_cdk_lib-2.182.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|