aws-cdk-lib 2.199.0__py3-none-any.whl → 2.200.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/__init__.py +22 -24
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.199.0.jsii.tgz → aws-cdk-lib@2.200.1.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_apigateway/__init__.py +1 -1
- aws_cdk/aws_applicationautoscaling/__init__.py +4 -4
- aws_cdk/aws_aps/__init__.py +38 -30
- aws_cdk/aws_autoscaling/__init__.py +4 -4
- aws_cdk/aws_bedrock/__init__.py +73 -48
- aws_cdk/aws_cloudformation/__init__.py +17 -23
- aws_cdk/aws_cloudfront_origins/__init__.py +1 -1
- aws_cdk/aws_cloudtrail/__init__.py +4 -4
- aws_cdk/aws_cloudwatch/__init__.py +50 -1
- aws_cdk/aws_codebuild/__init__.py +116 -0
- aws_cdk/aws_datazone/__init__.py +699 -9
- aws_cdk/aws_deadline/__init__.py +38 -10
- aws_cdk/aws_ec2/__init__.py +78 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +7 -7
- aws_cdk/aws_emr/__init__.py +36 -2
- aws_cdk/aws_fsx/__init__.py +122 -0
- aws_cdk/aws_glue/__init__.py +55 -26
- aws_cdk/aws_iam/__init__.py +376 -2
- aws_cdk/aws_iot/__init__.py +57 -5
- aws_cdk/aws_kinesisfirehose/__init__.py +5 -1
- aws_cdk/aws_lambda/__init__.py +65 -45
- aws_cdk/aws_lex/__init__.py +27 -13
- aws_cdk/aws_lightsail/__init__.py +452 -0
- aws_cdk/aws_medialive/__init__.py +699 -497
- aws_cdk/aws_msk/__init__.py +4 -4
- aws_cdk/aws_networkfirewall/__init__.py +9 -5
- aws_cdk/aws_nimblestudio/__init__.py +208 -400
- aws_cdk/aws_panorama/__init__.py +30 -3
- aws_cdk/aws_pcs/__init__.py +12 -5
- aws_cdk/aws_rds/__init__.py +22 -10
- aws_cdk/aws_s3/__init__.py +367 -6
- aws_cdk/aws_s3express/__init__.py +789 -0
- aws_cdk/aws_ses/__init__.py +300 -32
- aws_cdk/aws_sns_subscriptions/__init__.py +256 -1
- aws_cdk/aws_stepfunctions/__init__.py +55 -17
- aws_cdk/aws_synthetics/__init__.py +26 -16
- aws_cdk/aws_voiceid/__init__.py +13 -3
- aws_cdk/cloud_assembly_schema/__init__.py +137 -42
- aws_cdk/cx_api/__init__.py +7 -7
- {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/RECORD +49 -49
- {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.199.0.dist-info → aws_cdk_lib-2.200.1.dist-info}/top_level.txt +0 -0
|
@@ -115,7 +115,7 @@ class ArtifactManifest:
|
|
|
115
115
|
|
|
116
116
|
:param type: The type of artifact.
|
|
117
117
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
118
|
-
:param display_name: A string that
|
|
118
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
119
119
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
120
120
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
121
121
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -223,9 +223,12 @@ class ArtifactManifest:
|
|
|
223
223
|
|
|
224
224
|
@builtins.property
|
|
225
225
|
def display_name(self) -> typing.Optional[builtins.str]:
|
|
226
|
-
'''A string that
|
|
226
|
+
'''A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree.
|
|
227
227
|
|
|
228
|
-
|
|
228
|
+
Is used by the CLI to present a list of stacks to the user in a way that
|
|
229
|
+
makes sense to them. Even though the property name "display name" doesn't
|
|
230
|
+
imply it, this field is used to select stacks as well, so all stacks should
|
|
231
|
+
have a unique display name.
|
|
229
232
|
|
|
230
233
|
:default: - no display name
|
|
231
234
|
'''
|
|
@@ -291,6 +294,8 @@ class ArtifactMetadataEntryType(enum.Enum):
|
|
|
291
294
|
'''Represents the CloudFormation logical ID of a resource at a certain path.'''
|
|
292
295
|
STACK_TAGS = "STACK_TAGS"
|
|
293
296
|
'''Represents tags of a stack.'''
|
|
297
|
+
DO_NOT_REFACTOR = "DO_NOT_REFACTOR"
|
|
298
|
+
'''Whether the resource should be excluded during refactoring.'''
|
|
294
299
|
|
|
295
300
|
|
|
296
301
|
@jsii.enum(jsii_type="aws-cdk-lib.cloud_assembly_schema.ArtifactType")
|
|
@@ -8238,7 +8243,10 @@ class AvailabilityZonesContextQuery(ContextLookupRoleOptions):
|
|
|
8238
8243
|
"lookup_role_external_id": "lookupRoleExternalId",
|
|
8239
8244
|
"properties_to_return": "propertiesToReturn",
|
|
8240
8245
|
"type_name": "typeName",
|
|
8246
|
+
"dummy_value": "dummyValue",
|
|
8241
8247
|
"exact_identifier": "exactIdentifier",
|
|
8248
|
+
"expected_match_count": "expectedMatchCount",
|
|
8249
|
+
"ignore_error_on_missing_context": "ignoreErrorOnMissingContext",
|
|
8242
8250
|
"property_match": "propertyMatch",
|
|
8243
8251
|
},
|
|
8244
8252
|
)
|
|
@@ -8253,48 +8261,43 @@ class CcApiContextQuery(ContextLookupRoleOptions):
|
|
|
8253
8261
|
lookup_role_external_id: typing.Optional[builtins.str] = None,
|
|
8254
8262
|
properties_to_return: typing.Sequence[builtins.str],
|
|
8255
8263
|
type_name: builtins.str,
|
|
8264
|
+
dummy_value: typing.Any = None,
|
|
8256
8265
|
exact_identifier: typing.Optional[builtins.str] = None,
|
|
8266
|
+
expected_match_count: typing.Optional[builtins.str] = None,
|
|
8267
|
+
ignore_error_on_missing_context: typing.Optional[builtins.bool] = None,
|
|
8257
8268
|
property_match: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
8258
8269
|
) -> None:
|
|
8259
|
-
'''Query input for lookup up
|
|
8270
|
+
'''Query input for lookup up CloudFormation resources using CC API.
|
|
8271
|
+
|
|
8272
|
+
The example below is required to successfully compile CDK (otherwise,
|
|
8273
|
+
the CDK build will generate a synthetic example for the below, but it
|
|
8274
|
+
doesn't have enough type information about the literal string union
|
|
8275
|
+
to generate a validly compiling example).
|
|
8260
8276
|
|
|
8261
8277
|
:param account: Query account.
|
|
8262
8278
|
:param region: Query region.
|
|
8263
8279
|
: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.
|
|
8264
8280
|
:param lookup_role_arn: The ARN of the role that should be used to look up the missing values. Default: - None
|
|
8265
8281
|
:param lookup_role_external_id: The ExternalId that needs to be supplied while assuming this role. Default: - No ExternalId will be supplied
|
|
8266
|
-
:param properties_to_return: This is a set of properties returned from CC API that we want to return from ContextQuery.
|
|
8267
|
-
:param type_name: The
|
|
8268
|
-
:param
|
|
8269
|
-
:param
|
|
8270
|
-
|
|
8271
|
-
:
|
|
8282
|
+
:param properties_to_return: This is a set of properties returned from CC API that we want to return from ContextQuery. If any properties listed here are absent from the target resource, an error will be thrown. The returned object will always include the key ``Identifier`` with the CC-API returned field ``Identifier``. Notes on property completeness CloudControl API's ``ListResources`` may return fewer properties than ``GetResource`` would, depending on the resource implementation. The returned properties here are *currently* selected from the response object that CloudControl API returns to the CDK CLI. However, if we find there is need to do so, we may decide to change this behavior in the future: we might change it to perform an additional ``GetResource`` call for resources matched by ``propertyMatch``.
|
|
8283
|
+
:param type_name: The CloudFormation resource type. See https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html
|
|
8284
|
+
:param dummy_value: The value to return if the resource was not found and ``ignoreErrorOnMissingContext`` is true. If supplied, ``dummyValue`` should be an array of objects. ``dummyValue`` does not have to have elements, and it may have objects with different properties than the properties in ``propertiesToReturn``, but it will be easiest for downstream code if the ``dummyValue`` conforms to the expected response shape. Default: - No dummy value available
|
|
8285
|
+
:param exact_identifier: Identifier of the resource to look up using ``GetResource``. Specifying exactIdentifier will return exactly one result, or throw an error unless ``ignoreErrorOnMissingContext`` is set. Default: - Either exactIdentifier or propertyMatch should be specified.
|
|
8286
|
+
:param expected_match_count: Expected count of results if ``propertyMatch`` is specified. If the expected result count does not match the actual count, by default an error is produced and the result is not committed to cached context, and the user can correct the situation and try again without having to manually clear out the context key using ``cdk context --remove`` If the value of * ``ignoreErrorOnMissingContext`` is ``true``, the value of ``expectedMatchCount`` is ``at-least-one | exactly-one`` and the number of found resources is 0, ``dummyValue`` is returned and committed to context instead. Default: 'any'
|
|
8287
|
+
:param ignore_error_on_missing_context: Ignore an error and return the ``dummyValue`` instead if the resource was not found. - In case of an ``exactIdentifier`` lookup, return the ``dummyValue`` if the resource with that identifier was not found. - In case of a ``propertyMatch`` lookup, return the ``dummyValue`` if ``expectedMatchCount`` is ``at-least-one | exactly-one`` and the number of resources found was 0. if ``ignoreErrorOnMissingContext`` is set, ``dummyValue`` should be set and be an array. Default: false
|
|
8288
|
+
:param property_match: Returns any resources matching these properties, using ``ListResources``. By default, specifying propertyMatch will successfully return 0 or more results. To throw an error if the number of results is unexpected (and prevent the query results from being committed to context), specify ``expectedMatchCount``. Notes on property completeness CloudControl API's ``ListResources`` may return fewer properties than ``GetResource`` would, depending on the resource implementation. The resources that ``propertyMatch`` matches against will *only ever* be the properties returned by the ``ListResources`` call. Default: - Either exactIdentifier or propertyMatch should be specified.
|
|
8272
8289
|
|
|
8273
8290
|
Example::
|
|
8274
8291
|
|
|
8275
|
-
|
|
8276
|
-
# The values are placeholders you should change.
|
|
8277
|
-
from aws_cdk import cloud_assembly_schema
|
|
8292
|
+
from aws_cdk.cloud_assembly_schema import CcApiContextQuery
|
|
8278
8293
|
|
|
8279
|
-
# assume_role_additional_options: Any
|
|
8280
|
-
# property_match: Any
|
|
8281
8294
|
|
|
8282
|
-
|
|
8283
|
-
|
|
8284
|
-
|
|
8285
|
-
|
|
8286
|
-
|
|
8287
|
-
|
|
8288
|
-
# the properties below are optional
|
|
8289
|
-
assume_role_additional_options={
|
|
8290
|
-
"assume_role_additional_options_key": assume_role_additional_options
|
|
8291
|
-
},
|
|
8292
|
-
exact_identifier="exactIdentifier",
|
|
8293
|
-
lookup_role_arn="lookupRoleArn",
|
|
8294
|
-
lookup_role_external_id="lookupRoleExternalId",
|
|
8295
|
-
property_match={
|
|
8296
|
-
"property_match_key": property_match
|
|
8297
|
-
}
|
|
8295
|
+
x = CcApiContextQuery(
|
|
8296
|
+
type_name="AWS::Some::Type",
|
|
8297
|
+
expected_match_count="exactly-one",
|
|
8298
|
+
properties_to_return=["SomeProp"],
|
|
8299
|
+
account="11111111111",
|
|
8300
|
+
region="us-east-1"
|
|
8298
8301
|
)
|
|
8299
8302
|
'''
|
|
8300
8303
|
if __debug__:
|
|
@@ -8306,7 +8309,10 @@ class CcApiContextQuery(ContextLookupRoleOptions):
|
|
|
8306
8309
|
check_type(argname="argument lookup_role_external_id", value=lookup_role_external_id, expected_type=type_hints["lookup_role_external_id"])
|
|
8307
8310
|
check_type(argname="argument properties_to_return", value=properties_to_return, expected_type=type_hints["properties_to_return"])
|
|
8308
8311
|
check_type(argname="argument type_name", value=type_name, expected_type=type_hints["type_name"])
|
|
8312
|
+
check_type(argname="argument dummy_value", value=dummy_value, expected_type=type_hints["dummy_value"])
|
|
8309
8313
|
check_type(argname="argument exact_identifier", value=exact_identifier, expected_type=type_hints["exact_identifier"])
|
|
8314
|
+
check_type(argname="argument expected_match_count", value=expected_match_count, expected_type=type_hints["expected_match_count"])
|
|
8315
|
+
check_type(argname="argument ignore_error_on_missing_context", value=ignore_error_on_missing_context, expected_type=type_hints["ignore_error_on_missing_context"])
|
|
8310
8316
|
check_type(argname="argument property_match", value=property_match, expected_type=type_hints["property_match"])
|
|
8311
8317
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8312
8318
|
"account": account,
|
|
@@ -8320,8 +8326,14 @@ class CcApiContextQuery(ContextLookupRoleOptions):
|
|
|
8320
8326
|
self._values["lookup_role_arn"] = lookup_role_arn
|
|
8321
8327
|
if lookup_role_external_id is not None:
|
|
8322
8328
|
self._values["lookup_role_external_id"] = lookup_role_external_id
|
|
8329
|
+
if dummy_value is not None:
|
|
8330
|
+
self._values["dummy_value"] = dummy_value
|
|
8323
8331
|
if exact_identifier is not None:
|
|
8324
8332
|
self._values["exact_identifier"] = exact_identifier
|
|
8333
|
+
if expected_match_count is not None:
|
|
8334
|
+
self._values["expected_match_count"] = expected_match_count
|
|
8335
|
+
if ignore_error_on_missing_context is not None:
|
|
8336
|
+
self._values["ignore_error_on_missing_context"] = ignore_error_on_missing_context
|
|
8325
8337
|
if property_match is not None:
|
|
8326
8338
|
self._values["property_match"] = property_match
|
|
8327
8339
|
|
|
@@ -8375,14 +8387,33 @@ class CcApiContextQuery(ContextLookupRoleOptions):
|
|
|
8375
8387
|
|
|
8376
8388
|
@builtins.property
|
|
8377
8389
|
def properties_to_return(self) -> typing.List[builtins.str]:
|
|
8378
|
-
'''This is a set of properties returned from CC API that we want to return from ContextQuery.
|
|
8390
|
+
'''This is a set of properties returned from CC API that we want to return from ContextQuery.
|
|
8391
|
+
|
|
8392
|
+
If any properties listed here are absent from the target resource, an error will be thrown.
|
|
8393
|
+
|
|
8394
|
+
The returned object will always include the key ``Identifier`` with the CC-API returned
|
|
8395
|
+
field ``Identifier``.
|
|
8396
|
+
|
|
8397
|
+
|
|
8398
|
+
Notes on property completeness
|
|
8399
|
+
|
|
8400
|
+
CloudControl API's ``ListResources`` may return fewer properties than
|
|
8401
|
+
``GetResource`` would, depending on the resource implementation.
|
|
8402
|
+
|
|
8403
|
+
The returned properties here are *currently* selected from the response
|
|
8404
|
+
object that CloudControl API returns to the CDK CLI.
|
|
8405
|
+
|
|
8406
|
+
However, if we find there is need to do so, we may decide to change this
|
|
8407
|
+
behavior in the future: we might change it to perform an additional
|
|
8408
|
+
``GetResource`` call for resources matched by ``propertyMatch``.
|
|
8409
|
+
'''
|
|
8379
8410
|
result = self._values.get("properties_to_return")
|
|
8380
8411
|
assert result is not None, "Required property 'properties_to_return' is missing"
|
|
8381
8412
|
return typing.cast(typing.List[builtins.str], result)
|
|
8382
8413
|
|
|
8383
8414
|
@builtins.property
|
|
8384
8415
|
def type_name(self) -> builtins.str:
|
|
8385
|
-
'''The
|
|
8416
|
+
'''The CloudFormation resource type.
|
|
8386
8417
|
|
|
8387
8418
|
See https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html
|
|
8388
8419
|
'''
|
|
@@ -8390,29 +8421,90 @@ class CcApiContextQuery(ContextLookupRoleOptions):
|
|
|
8390
8421
|
assert result is not None, "Required property 'type_name' is missing"
|
|
8391
8422
|
return typing.cast(builtins.str, result)
|
|
8392
8423
|
|
|
8424
|
+
@builtins.property
|
|
8425
|
+
def dummy_value(self) -> typing.Any:
|
|
8426
|
+
'''The value to return if the resource was not found and ``ignoreErrorOnMissingContext`` is true.
|
|
8427
|
+
|
|
8428
|
+
If supplied, ``dummyValue`` should be an array of objects.
|
|
8429
|
+
|
|
8430
|
+
``dummyValue`` does not have to have elements, and it may have objects with
|
|
8431
|
+
different properties than the properties in ``propertiesToReturn``, but it
|
|
8432
|
+
will be easiest for downstream code if the ``dummyValue`` conforms to
|
|
8433
|
+
the expected response shape.
|
|
8434
|
+
|
|
8435
|
+
:default: - No dummy value available
|
|
8436
|
+
'''
|
|
8437
|
+
result = self._values.get("dummy_value")
|
|
8438
|
+
return typing.cast(typing.Any, result)
|
|
8439
|
+
|
|
8393
8440
|
@builtins.property
|
|
8394
8441
|
def exact_identifier(self) -> typing.Optional[builtins.str]:
|
|
8395
|
-
'''
|
|
8442
|
+
'''Identifier of the resource to look up using ``GetResource``.
|
|
8396
8443
|
|
|
8397
|
-
Specifying exactIdentifier will return
|
|
8398
|
-
|
|
8444
|
+
Specifying exactIdentifier will return exactly one result, or throw an error
|
|
8445
|
+
unless ``ignoreErrorOnMissingContext`` is set.
|
|
8399
8446
|
|
|
8400
|
-
:default: -
|
|
8447
|
+
:default: - Either exactIdentifier or propertyMatch should be specified.
|
|
8401
8448
|
'''
|
|
8402
8449
|
result = self._values.get("exact_identifier")
|
|
8403
8450
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
8404
8451
|
|
|
8452
|
+
@builtins.property
|
|
8453
|
+
def expected_match_count(self) -> typing.Optional[builtins.str]:
|
|
8454
|
+
'''Expected count of results if ``propertyMatch`` is specified.
|
|
8455
|
+
|
|
8456
|
+
If the expected result count does not match the actual count,
|
|
8457
|
+
by default an error is produced and the result is not committed to cached
|
|
8458
|
+
context, and the user can correct the situation and try again without
|
|
8459
|
+
having to manually clear out the context key using ``cdk context --remove``
|
|
8460
|
+
|
|
8461
|
+
If the value of * ``ignoreErrorOnMissingContext`` is ``true``, the value of
|
|
8462
|
+
``expectedMatchCount`` is ``at-least-one | exactly-one`` and the number
|
|
8463
|
+
of found resources is 0, ``dummyValue`` is returned and committed to context
|
|
8464
|
+
instead.
|
|
8465
|
+
|
|
8466
|
+
:default: 'any'
|
|
8467
|
+
'''
|
|
8468
|
+
result = self._values.get("expected_match_count")
|
|
8469
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
8470
|
+
|
|
8471
|
+
@builtins.property
|
|
8472
|
+
def ignore_error_on_missing_context(self) -> typing.Optional[builtins.bool]:
|
|
8473
|
+
'''Ignore an error and return the ``dummyValue`` instead if the resource was not found.
|
|
8474
|
+
|
|
8475
|
+
- In case of an ``exactIdentifier`` lookup, return the ``dummyValue`` if the resource with
|
|
8476
|
+
that identifier was not found.
|
|
8477
|
+
- In case of a ``propertyMatch`` lookup, return the ``dummyValue`` if ``expectedMatchCount``
|
|
8478
|
+
is ``at-least-one | exactly-one`` and the number of resources found was 0.
|
|
8479
|
+
|
|
8480
|
+
if ``ignoreErrorOnMissingContext`` is set, ``dummyValue`` should be set and be an array.
|
|
8481
|
+
|
|
8482
|
+
:default: false
|
|
8483
|
+
'''
|
|
8484
|
+
result = self._values.get("ignore_error_on_missing_context")
|
|
8485
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
8486
|
+
|
|
8405
8487
|
@builtins.property
|
|
8406
8488
|
def property_match(
|
|
8407
8489
|
self,
|
|
8408
8490
|
) -> typing.Optional[typing.Mapping[builtins.str, typing.Any]]:
|
|
8409
|
-
'''
|
|
8491
|
+
'''Returns any resources matching these properties, using ``ListResources``.
|
|
8410
8492
|
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8493
|
+
By default, specifying propertyMatch will successfully return 0 or more
|
|
8494
|
+
results. To throw an error if the number of results is unexpected (and
|
|
8495
|
+
prevent the query results from being committed to context), specify
|
|
8496
|
+
``expectedMatchCount``.
|
|
8414
8497
|
|
|
8415
|
-
|
|
8498
|
+
|
|
8499
|
+
Notes on property completeness
|
|
8500
|
+
|
|
8501
|
+
CloudControl API's ``ListResources`` may return fewer properties than
|
|
8502
|
+
``GetResource`` would, depending on the resource implementation.
|
|
8503
|
+
|
|
8504
|
+
The resources that ``propertyMatch`` matches against will *only ever* be the
|
|
8505
|
+
properties returned by the ``ListResources`` call.
|
|
8506
|
+
|
|
8507
|
+
:default: - Either exactIdentifier or propertyMatch should be specified.
|
|
8416
8508
|
'''
|
|
8417
8509
|
result = self._values.get("property_match")
|
|
8418
8510
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, typing.Any]], result)
|
|
@@ -9607,7 +9699,10 @@ def _typecheckingstub__cdf6a33d88e10af638d11c3322b9291978a474ed65f1a2ab37cdecc88
|
|
|
9607
9699
|
lookup_role_external_id: typing.Optional[builtins.str] = None,
|
|
9608
9700
|
properties_to_return: typing.Sequence[builtins.str],
|
|
9609
9701
|
type_name: builtins.str,
|
|
9702
|
+
dummy_value: typing.Any = None,
|
|
9610
9703
|
exact_identifier: typing.Optional[builtins.str] = None,
|
|
9704
|
+
expected_match_count: typing.Optional[builtins.str] = None,
|
|
9705
|
+
ignore_error_on_missing_context: typing.Optional[builtins.bool] = None,
|
|
9611
9706
|
property_match: typing.Optional[typing.Mapping[builtins.str, typing.Any]] = None,
|
|
9612
9707
|
) -> None:
|
|
9613
9708
|
"""Type checking stubs"""
|
aws_cdk/cx_api/__init__.py
CHANGED
|
@@ -1043,7 +1043,7 @@ class CloudArtifact(
|
|
|
1043
1043
|
:param id: -
|
|
1044
1044
|
:param type: The type of artifact.
|
|
1045
1045
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
1046
|
-
:param display_name: A string that
|
|
1046
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
1047
1047
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
1048
1048
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
1049
1049
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -1083,7 +1083,7 @@ class CloudArtifact(
|
|
|
1083
1083
|
:param id: The artifact ID.
|
|
1084
1084
|
:param type: The type of artifact.
|
|
1085
1085
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
1086
|
-
:param display_name: A string that
|
|
1086
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
1087
1087
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
1088
1088
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
1089
1089
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -1422,7 +1422,7 @@ class CloudAssemblyBuilder(
|
|
|
1422
1422
|
:param id: The ID of the artifact.
|
|
1423
1423
|
:param type: The type of artifact.
|
|
1424
1424
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
1425
|
-
:param display_name: A string that
|
|
1425
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
1426
1426
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
1427
1427
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
1428
1428
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -1662,7 +1662,7 @@ class CloudFormationStackArtifact(
|
|
|
1662
1662
|
:param artifact_id: -
|
|
1663
1663
|
:param type: The type of artifact.
|
|
1664
1664
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
1665
|
-
:param display_name: A string that
|
|
1665
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
1666
1666
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
1667
1667
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
1668
1668
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -2758,7 +2758,7 @@ class NestedCloudAssemblyArtifact(
|
|
|
2758
2758
|
:param name: -
|
|
2759
2759
|
:param type: The type of artifact.
|
|
2760
2760
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
2761
|
-
:param display_name: A string that
|
|
2761
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
2762
2762
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
2763
2763
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
2764
2764
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -3079,7 +3079,7 @@ class TreeCloudArtifact(
|
|
|
3079
3079
|
:param name: -
|
|
3080
3080
|
:param type: The type of artifact.
|
|
3081
3081
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
3082
|
-
:param display_name: A string that
|
|
3082
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
3083
3083
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
3084
3084
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
3085
3085
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -3739,7 +3739,7 @@ class AssetManifestArtifact(
|
|
|
3739
3739
|
:param name: -
|
|
3740
3740
|
:param type: The type of artifact.
|
|
3741
3741
|
:param dependencies: IDs of artifacts that must be deployed before this artifact. Default: - no dependencies.
|
|
3742
|
-
:param display_name: A string that
|
|
3742
|
+
:param display_name: A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree. Is used by the CLI to present a list of stacks to the user in a way that makes sense to them. Even though the property name "display name" doesn't imply it, this field is used to select stacks as well, so all stacks should have a unique display name. Default: - no display name
|
|
3743
3743
|
:param environment: The environment into which this artifact is deployed. Default: - no envrionment.
|
|
3744
3744
|
:param metadata: Associated metadata. Default: - no metadata.
|
|
3745
3745
|
:param properties: The set of properties for this artifact (depends on type). Default: - no properties.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aws-cdk-lib
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.200.1
|
|
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
|
|
@@ -22,7 +22,7 @@ License-File: LICENSE
|
|
|
22
22
|
License-File: NOTICE
|
|
23
23
|
Requires-Dist: aws-cdk.asset-awscli-v1==2.2.237
|
|
24
24
|
Requires-Dist: aws-cdk.asset-node-proxy-agent-v6<3.0.0,>=2.1.0
|
|
25
|
-
Requires-Dist: aws-cdk.cloud-assembly-schema<
|
|
25
|
+
Requires-Dist: aws-cdk.cloud-assembly-schema<45.0.0,>=44.1.0
|
|
26
26
|
Requires-Dist: constructs<11.0.0,>=10.0.0
|
|
27
27
|
Requires-Dist: jsii<2.0.0,>=1.112.0
|
|
28
28
|
Requires-Dist: publication>=0.0.3
|