aws-cdk-lib 2.203.1__py3-none-any.whl → 2.205.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 +208 -92
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.203.1.jsii.tgz → aws-cdk-lib@2.205.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +89 -39
- aws_cdk/aws_apigateway/__init__.py +164 -0
- aws_cdk/aws_apigatewayv2/__init__.py +412 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +2 -2
- aws_cdk/aws_arczonalshift/__init__.py +4 -1
- aws_cdk/aws_b2bi/__init__.py +32 -16
- aws_cdk/aws_bedrock/__init__.py +198 -10
- aws_cdk/aws_cassandra/__init__.py +156 -0
- aws_cdk/aws_certificatemanager/__init__.py +28 -0
- aws_cdk/aws_chatbot/__init__.py +28 -0
- aws_cdk/aws_cloudformation/__init__.py +74 -72
- aws_cdk/aws_cloudfront/__init__.py +1273 -485
- aws_cdk/aws_cloudfront/experimental/__init__.py +32 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +26 -21
- aws_cdk/aws_cloudwatch/__init__.py +278 -23
- aws_cdk/aws_codebuild/__init__.py +300 -36
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_docdb/__init__.py +78 -0
- aws_cdk/aws_dynamodb/__init__.py +523 -37
- aws_cdk/aws_ec2/__init__.py +126 -30
- aws_cdk/aws_ecs/__init__.py +64 -19
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +724 -0
- aws_cdk/aws_elasticsearch/__init__.py +260 -0
- aws_cdk/aws_emrserverless/__init__.py +5 -5
- aws_cdk/aws_events/__init__.py +58 -3
- aws_cdk/aws_events_targets/__init__.py +7 -2
- aws_cdk/aws_evs/__init__.py +7 -7
- aws_cdk/aws_fsx/__init__.py +138 -78
- aws_cdk/aws_gamelift/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +3 -3
- aws_cdk/aws_iot/__init__.py +1 -1
- aws_cdk/aws_kinesis/__init__.py +391 -13
- aws_cdk/aws_kinesisfirehose/__init__.py +128 -1
- aws_cdk/aws_lambda/__init__.py +144 -0
- aws_cdk/aws_lex/__init__.py +36 -19
- aws_cdk/aws_logs/__init__.py +58 -0
- aws_cdk/aws_neptune/__init__.py +12 -12
- aws_cdk/aws_odb/__init__.py +4049 -0
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchservice/__init__.py +260 -0
- aws_cdk/aws_qbusiness/__init__.py +471 -4
- aws_cdk/aws_quicksight/__init__.py +185 -16
- aws_cdk/aws_rds/__init__.py +553 -17
- aws_cdk/aws_redshiftserverless/__init__.py +72 -45
- aws_cdk/aws_route53/__init__.py +41 -19
- aws_cdk/aws_s3tables/__init__.py +1005 -0
- aws_cdk/aws_sagemaker/__init__.py +20 -0
- aws_cdk/aws_scheduler/__init__.py +210 -0
- aws_cdk/aws_sns/__init__.py +164 -0
- aws_cdk/aws_sqs/__init__.py +164 -0
- aws_cdk/aws_stepfunctions/__init__.py +288 -0
- aws_cdk/aws_synthetics/__init__.py +159 -37
- aws_cdk/aws_transfer/__init__.py +23 -1
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/RECORD +62 -61
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.203.1.dist-info → aws_cdk_lib-2.205.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py
CHANGED
|
@@ -9205,17 +9205,17 @@ class CfnStackSetProps:
|
|
|
9205
9205
|
) -> None:
|
|
9206
9206
|
'''Properties for defining a ``CfnStackSet``.
|
|
9207
9207
|
|
|
9208
|
-
:param permission_model: Describes how the IAM roles required for
|
|
9209
|
-
:param stack_set_name: The name to associate with the
|
|
9210
|
-
:param administration_role_arn: The Amazon Resource Number (ARN) of the IAM role to use to create this
|
|
9208
|
+
:param permission_model: Describes how the IAM roles required for StackSet operations are created. - With ``SELF_MANAGED`` permissions, you must create the administrator and execution roles required to deploy to target accounts. For more information, see `Grant self-managed permissions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html>`_ in the *AWS CloudFormation User Guide* . - With ``SERVICE_MANAGED`` permissions, StackSets automatically creates the IAM roles required to deploy to accounts managed by AWS Organizations . For more information, see `Activate trusted access for StackSets with AWS Organizations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html>`_ in the *AWS CloudFormation User Guide* .
|
|
9209
|
+
:param stack_set_name: The name to associate with the StackSet. The name must be unique in the Region where you create your StackSet.
|
|
9210
|
+
:param administration_role_arn: The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet. Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific StackSets within the same administrator account. Use customized administrator roles to control which users or groups can manage specific StackSets within the same administrator account. For more information, see `Grant self-managed permissions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html>`_ in the *AWS CloudFormation User Guide* . Valid only if the permissions model is ``SELF_MANAGED`` .
|
|
9211
9211
|
:param auto_deployment: Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). For more information, see `Enable or disable automatic deployments for StackSets in AWS Organizations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-manage-auto-deployment.html>`_ in the *AWS CloudFormation User Guide* . Required if the permissions model is ``SERVICE_MANAGED`` . (Not used with self-managed permissions.)
|
|
9212
|
-
:param call_as: Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default, ``SELF`` is specified. Use ``SELF`` for
|
|
9213
|
-
:param capabilities: The capabilities that are allowed in the
|
|
9214
|
-
:param description: A description of the
|
|
9215
|
-
:param execution_role_name: The name of the IAM execution role to use to create the
|
|
9216
|
-
:param managed_execution: Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. When active, StackSets performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, StackSets starts queued operations in request order. .. epigraph:: If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting. You can't modify your
|
|
9217
|
-
:param operation_preferences: The user-specified preferences for how CloudFormation performs a
|
|
9218
|
-
:param parameters: The input parameters for the
|
|
9212
|
+
:param call_as: Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default, ``SELF`` is specified. Use ``SELF`` for StackSets with self-managed permissions. - To create a StackSet with service-managed permissions while signed in to the management account, specify ``SELF`` . - To create a StackSet with service-managed permissions while signed in to a delegated administrator account, specify ``DELEGATED_ADMIN`` . Your AWS account must be registered as a delegated admin in the management account. For more information, see `Register a delegated administrator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html>`_ in the *AWS CloudFormation User Guide* . StackSets with service-managed permissions are created in the management account, including StackSets that are created by delegated administrators. Valid only if the permissions model is ``SERVICE_MANAGED`` .
|
|
9213
|
+
:param capabilities: The capabilities that are allowed in the StackSet. Some StackSet templates might include resources that can affect permissions in your AWS account —for example, by creating new IAM users. For more information, see `Acknowledging IAM resources in CloudFormation templates <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities>`_ in the *AWS CloudFormation User Guide* .
|
|
9214
|
+
:param description: A description of the StackSet.
|
|
9215
|
+
:param execution_role_name: The name of the IAM execution role to use to create the StackSet. If you don't specify an execution role, CloudFormation uses the ``AWSCloudFormationStackSetExecutionRole`` role for the StackSet operation. Valid only if the permissions model is ``SELF_MANAGED`` . *Pattern* : ``[a-zA-Z_0-9+=,.@-]+``
|
|
9216
|
+
:param managed_execution: Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. When active, StackSets performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, StackSets starts queued operations in request order. .. epigraph:: If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting. You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet. When inactive (default), StackSets performs one operation at a time in request order.
|
|
9217
|
+
:param operation_preferences: The user-specified preferences for how CloudFormation performs a StackSet operation.
|
|
9218
|
+
:param parameters: The input parameters for the StackSet template.
|
|
9219
9219
|
:param stack_instances_group: A group of stack instances with parameters in some specific accounts and Regions.
|
|
9220
9220
|
:param tags: Key-value pairs to associate with this stack. CloudFormation also propagates these tags to supported resources in the stack. You can specify a maximum number of 50 tags. If you don't specify this parameter, CloudFormation doesn't modify the stack's tags. If you specify an empty value, CloudFormation removes all associated tags.
|
|
9221
9221
|
:param template_body: The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. You must include either ``TemplateURL`` or ``TemplateBody`` in a StackSet, but you can't use both. Dynamic references in the ``TemplateBody`` may not work correctly in all cases. It's recommended to pass templates that contain dynamic references through ``TemplateUrl`` instead.
|
|
@@ -9333,10 +9333,10 @@ class CfnStackSetProps:
|
|
|
9333
9333
|
|
|
9334
9334
|
@builtins.property
|
|
9335
9335
|
def permission_model(self) -> builtins.str:
|
|
9336
|
-
'''Describes how the IAM roles required for
|
|
9336
|
+
'''Describes how the IAM roles required for StackSet operations are created.
|
|
9337
9337
|
|
|
9338
9338
|
- With ``SELF_MANAGED`` permissions, you must create the administrator and execution roles required to deploy to target accounts. For more information, see `Grant self-managed permissions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html>`_ in the *AWS CloudFormation User Guide* .
|
|
9339
|
-
- With ``SERVICE_MANAGED`` permissions, StackSets automatically creates the IAM roles required to deploy to accounts managed by AWS Organizations . For more information, see `Activate trusted access for
|
|
9339
|
+
- With ``SERVICE_MANAGED`` permissions, StackSets automatically creates the IAM roles required to deploy to accounts managed by AWS Organizations . For more information, see `Activate trusted access for StackSets with AWS Organizations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html>`_ in the *AWS CloudFormation User Guide* .
|
|
9340
9340
|
|
|
9341
9341
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-permissionmodel
|
|
9342
9342
|
'''
|
|
@@ -9346,9 +9346,9 @@ class CfnStackSetProps:
|
|
|
9346
9346
|
|
|
9347
9347
|
@builtins.property
|
|
9348
9348
|
def stack_set_name(self) -> builtins.str:
|
|
9349
|
-
'''The name to associate with the
|
|
9349
|
+
'''The name to associate with the StackSet.
|
|
9350
9350
|
|
|
9351
|
-
The name must be unique in the Region where you create your
|
|
9351
|
+
The name must be unique in the Region where you create your StackSet.
|
|
9352
9352
|
|
|
9353
9353
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-stacksetname
|
|
9354
9354
|
'''
|
|
@@ -9358,11 +9358,11 @@ class CfnStackSetProps:
|
|
|
9358
9358
|
|
|
9359
9359
|
@builtins.property
|
|
9360
9360
|
def administration_role_arn(self) -> typing.Optional[builtins.str]:
|
|
9361
|
-
'''The Amazon Resource Number (ARN) of the IAM role to use to create this
|
|
9361
|
+
'''The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet.
|
|
9362
9362
|
|
|
9363
|
-
Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific
|
|
9363
|
+
Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific StackSets within the same administrator account.
|
|
9364
9364
|
|
|
9365
|
-
Use customized administrator roles to control which users or groups can manage specific
|
|
9365
|
+
Use customized administrator roles to control which users or groups can manage specific StackSets within the same administrator account. For more information, see `Grant self-managed permissions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html>`_ in the *AWS CloudFormation User Guide* .
|
|
9366
9366
|
|
|
9367
9367
|
Valid only if the permissions model is ``SELF_MANAGED`` .
|
|
9368
9368
|
|
|
@@ -9390,14 +9390,14 @@ class CfnStackSetProps:
|
|
|
9390
9390
|
def call_as(self) -> typing.Optional[builtins.str]:
|
|
9391
9391
|
'''Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account.
|
|
9392
9392
|
|
|
9393
|
-
By default, ``SELF`` is specified. Use ``SELF`` for
|
|
9393
|
+
By default, ``SELF`` is specified. Use ``SELF`` for StackSets with self-managed permissions.
|
|
9394
9394
|
|
|
9395
|
-
- To create a
|
|
9396
|
-
- To create a
|
|
9395
|
+
- To create a StackSet with service-managed permissions while signed in to the management account, specify ``SELF`` .
|
|
9396
|
+
- To create a StackSet with service-managed permissions while signed in to a delegated administrator account, specify ``DELEGATED_ADMIN`` .
|
|
9397
9397
|
|
|
9398
9398
|
Your AWS account must be registered as a delegated admin in the management account. For more information, see `Register a delegated administrator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html>`_ in the *AWS CloudFormation User Guide* .
|
|
9399
9399
|
|
|
9400
|
-
|
|
9400
|
+
StackSets with service-managed permissions are created in the management account, including StackSets that are created by delegated administrators.
|
|
9401
9401
|
|
|
9402
9402
|
Valid only if the permissions model is ``SERVICE_MANAGED`` .
|
|
9403
9403
|
|
|
@@ -9408,9 +9408,9 @@ class CfnStackSetProps:
|
|
|
9408
9408
|
|
|
9409
9409
|
@builtins.property
|
|
9410
9410
|
def capabilities(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
9411
|
-
'''The capabilities that are allowed in the
|
|
9411
|
+
'''The capabilities that are allowed in the StackSet.
|
|
9412
9412
|
|
|
9413
|
-
Some
|
|
9413
|
+
Some StackSet templates might include resources that can affect permissions in your AWS account —for example, by creating new IAM users. For more information, see `Acknowledging IAM resources in CloudFormation templates <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities>`_ in the *AWS CloudFormation User Guide* .
|
|
9414
9414
|
|
|
9415
9415
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-capabilities
|
|
9416
9416
|
'''
|
|
@@ -9419,7 +9419,7 @@ class CfnStackSetProps:
|
|
|
9419
9419
|
|
|
9420
9420
|
@builtins.property
|
|
9421
9421
|
def description(self) -> typing.Optional[builtins.str]:
|
|
9422
|
-
'''A description of the
|
|
9422
|
+
'''A description of the StackSet.
|
|
9423
9423
|
|
|
9424
9424
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-description
|
|
9425
9425
|
'''
|
|
@@ -9428,9 +9428,9 @@ class CfnStackSetProps:
|
|
|
9428
9428
|
|
|
9429
9429
|
@builtins.property
|
|
9430
9430
|
def execution_role_name(self) -> typing.Optional[builtins.str]:
|
|
9431
|
-
'''The name of the IAM execution role to use to create the
|
|
9431
|
+
'''The name of the IAM execution role to use to create the StackSet.
|
|
9432
9432
|
|
|
9433
|
-
If you don't specify an execution role, CloudFormation uses the ``AWSCloudFormationStackSetExecutionRole`` role for the
|
|
9433
|
+
If you don't specify an execution role, CloudFormation uses the ``AWSCloudFormationStackSetExecutionRole`` role for the StackSet operation.
|
|
9434
9434
|
|
|
9435
9435
|
Valid only if the permissions model is ``SELF_MANAGED`` .
|
|
9436
9436
|
|
|
@@ -9450,7 +9450,7 @@ class CfnStackSetProps:
|
|
|
9450
9450
|
|
|
9451
9451
|
If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting.
|
|
9452
9452
|
|
|
9453
|
-
You can't modify your
|
|
9453
|
+
You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet.
|
|
9454
9454
|
|
|
9455
9455
|
When inactive (default), StackSets performs one operation at a time in request order.
|
|
9456
9456
|
|
|
@@ -9463,7 +9463,7 @@ class CfnStackSetProps:
|
|
|
9463
9463
|
def operation_preferences(
|
|
9464
9464
|
self,
|
|
9465
9465
|
) -> typing.Optional[typing.Union["IResolvable", "CfnStackSet.OperationPreferencesProperty"]]:
|
|
9466
|
-
'''The user-specified preferences for how CloudFormation performs a
|
|
9466
|
+
'''The user-specified preferences for how CloudFormation performs a StackSet operation.
|
|
9467
9467
|
|
|
9468
9468
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-operationpreferences
|
|
9469
9469
|
'''
|
|
@@ -9474,7 +9474,7 @@ class CfnStackSetProps:
|
|
|
9474
9474
|
def parameters(
|
|
9475
9475
|
self,
|
|
9476
9476
|
) -> typing.Optional[typing.Union["IResolvable", typing.List[typing.Union["IResolvable", "CfnStackSet.ParameterProperty"]]]]:
|
|
9477
|
-
'''The input parameters for the
|
|
9477
|
+
'''The input parameters for the StackSet template.
|
|
9478
9478
|
|
|
9479
9479
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-parameters
|
|
9480
9480
|
'''
|
|
@@ -17902,6 +17902,19 @@ class IgnoreStrategy(
|
|
|
17902
17902
|
'''
|
|
17903
17903
|
...
|
|
17904
17904
|
|
|
17905
|
+
@jsii.member(jsii_name="completelyIgnores")
|
|
17906
|
+
def completely_ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
|
|
17907
|
+
'''Determines whether a given file path should be ignored and have all of its children ignored if its a directory.
|
|
17908
|
+
|
|
17909
|
+
:param absolute_file_path: absolute file path to be assessed against the pattern.
|
|
17910
|
+
|
|
17911
|
+
:return: ``true`` if the file should be ignored
|
|
17912
|
+
'''
|
|
17913
|
+
if __debug__:
|
|
17914
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3a80a66d2944a2c289e3c51a3686487dddf7c755eb54d7726f3fd91652eddcde)
|
|
17915
|
+
check_type(argname="argument absolute_file_path", value=absolute_file_path, expected_type=type_hints["absolute_file_path"])
|
|
17916
|
+
return typing.cast(builtins.bool, jsii.invoke(self, "completelyIgnores", [absolute_file_path]))
|
|
17917
|
+
|
|
17905
17918
|
@jsii.member(jsii_name="ignores")
|
|
17906
17919
|
@abc.abstractmethod
|
|
17907
17920
|
def ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
|
|
@@ -19992,13 +20005,12 @@ class RemovalPolicy(enum.Enum):
|
|
|
19992
20005
|
'''
|
|
19993
20006
|
|
|
19994
20007
|
DESTROY = "DESTROY"
|
|
19995
|
-
'''
|
|
20008
|
+
'''When this removal policy is applied, the resource will be physically destroyed when it is removed from the stack or when the stack is deleted.'''
|
|
20009
|
+
RETAIN = "RETAIN"
|
|
20010
|
+
'''This uses the 'Retain' DeletionPolicy, which will cause the resource to be retained in the account, but orphaned from the stack.
|
|
19996
20011
|
|
|
19997
|
-
|
|
19998
|
-
removed from the app, it will be physically destroyed.
|
|
20012
|
+
Most resources default to this removal policy.
|
|
19999
20013
|
'''
|
|
20000
|
-
RETAIN = "RETAIN"
|
|
20001
|
-
'''This uses the 'Retain' DeletionPolicy, which will cause the resource to be retained in the account, but orphaned from the stack.'''
|
|
20002
20014
|
SNAPSHOT = "SNAPSHOT"
|
|
20003
20015
|
'''This retention policy deletes the resource, but saves a snapshot of its data before deleting, so that it can be re-created later.
|
|
20004
20016
|
|
|
@@ -21831,7 +21843,7 @@ class Stack(
|
|
|
21831
21843
|
:param stack_name: Name to deploy the stack with. Default: - Derived from construct path.
|
|
21832
21844
|
:param suppress_template_indentation: Enable this flag to suppress indentation in generated CloudFormation templates. If not specified, the value of the ``@aws-cdk/core:suppressTemplateIndentation`` context key will be used. If that is not specified, then the default value ``false`` will be used. Default: - the value of ``@aws-cdk/core:suppressTemplateIndentation``, or ``false`` if that is not set.
|
|
21833
21845
|
:param synthesizer: Synthesis method to use while deploying this stack. The Stack Synthesizer controls aspects of synthesis and deployment, like how assets are referenced and what IAM roles to use. For more information, see the README of the main CDK package. If not specified, the ``defaultStackSynthesizer`` from ``App`` will be used. If that is not specified, ``DefaultStackSynthesizer`` is used if ``@aws-cdk/core:newStyleStackSynthesis`` is set to ``true`` or the CDK major version is v2. In CDK v1 ``LegacyStackSynthesizer`` is the default if no other synthesizer is specified. Default: - The synthesizer specified on ``App``, or ``DefaultStackSynthesizer`` otherwise.
|
|
21834
|
-
:param tags:
|
|
21846
|
+
:param tags: Tags that will be applied to the Stack. These tags are applied to the CloudFormation Stack itself. They will not appear in the CloudFormation template. However, at deployment time, CloudFormation will apply these tags to all resources in the stack that support tagging. You will not be able to exempt resources from tagging (using the ``excludeResourceTypes`` property of ``Tags.of(...).add()``) for tags applied in this way. Default: {}
|
|
21835
21847
|
:param termination_protection: Whether to enable termination protection for this stack. Default: false
|
|
21836
21848
|
'''
|
|
21837
21849
|
if __debug__:
|
|
@@ -21920,6 +21932,21 @@ class Stack(
|
|
|
21920
21932
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
21921
21933
|
return typing.cast(None, jsii.invoke(self, "addMetadata", [key, value]))
|
|
21922
21934
|
|
|
21935
|
+
@jsii.member(jsii_name="addStackTag")
|
|
21936
|
+
def add_stack_tag(self, tag_name: builtins.str, tag_value: builtins.str) -> None:
|
|
21937
|
+
'''Configure a stack tag.
|
|
21938
|
+
|
|
21939
|
+
At deploy time, CloudFormation will automatically apply all stack tags to all resources in the stack.
|
|
21940
|
+
|
|
21941
|
+
:param tag_name: -
|
|
21942
|
+
:param tag_value: -
|
|
21943
|
+
'''
|
|
21944
|
+
if __debug__:
|
|
21945
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c79ea9b0cd54830acfa2c93ac0786782e515591ac5cda10c42b42f8ff76457a0)
|
|
21946
|
+
check_type(argname="argument tag_name", value=tag_name, expected_type=type_hints["tag_name"])
|
|
21947
|
+
check_type(argname="argument tag_value", value=tag_value, expected_type=type_hints["tag_value"])
|
|
21948
|
+
return typing.cast(None, jsii.invoke(self, "addStackTag", [tag_name, tag_value]))
|
|
21949
|
+
|
|
21923
21950
|
@jsii.member(jsii_name="addTransform")
|
|
21924
21951
|
def add_transform(self, transform: builtins.str) -> None:
|
|
21925
21952
|
'''Add a Transform to this stack. A Transform is a macro that AWS CloudFormation uses to process your template.
|
|
@@ -22191,6 +22218,19 @@ class Stack(
|
|
|
22191
22218
|
check_type(argname="argument default_value", value=default_value, expected_type=type_hints["default_value"])
|
|
22192
22219
|
return typing.cast(builtins.str, jsii.invoke(self, "regionalFact", [fact_name, default_value]))
|
|
22193
22220
|
|
|
22221
|
+
@jsii.member(jsii_name="removeStackTag")
|
|
22222
|
+
def remove_stack_tag(self, tag_name: builtins.str) -> None:
|
|
22223
|
+
'''Remove a stack tag.
|
|
22224
|
+
|
|
22225
|
+
At deploy time, CloudFormation will automatically apply all stack tags to all resources in the stack.
|
|
22226
|
+
|
|
22227
|
+
:param tag_name: -
|
|
22228
|
+
'''
|
|
22229
|
+
if __debug__:
|
|
22230
|
+
type_hints = typing.get_type_hints(_typecheckingstub__25f39c18a619c464f8e693cb5c5847cdf10f847438cac04672be8ba78d2b49d0)
|
|
22231
|
+
check_type(argname="argument tag_name", value=tag_name, expected_type=type_hints["tag_name"])
|
|
22232
|
+
return typing.cast(None, jsii.invoke(self, "removeStackTag", [tag_name]))
|
|
22233
|
+
|
|
22194
22234
|
@jsii.member(jsii_name="renameLogicalId")
|
|
22195
22235
|
def rename_logical_id(self, old_id: builtins.str, new_id: builtins.str) -> None:
|
|
22196
22236
|
'''Rename a generated logical identities.
|
|
@@ -22542,7 +22582,7 @@ class StackProps:
|
|
|
22542
22582
|
:param stack_name: Name to deploy the stack with. Default: - Derived from construct path.
|
|
22543
22583
|
:param suppress_template_indentation: Enable this flag to suppress indentation in generated CloudFormation templates. If not specified, the value of the ``@aws-cdk/core:suppressTemplateIndentation`` context key will be used. If that is not specified, then the default value ``false`` will be used. Default: - the value of ``@aws-cdk/core:suppressTemplateIndentation``, or ``false`` if that is not set.
|
|
22544
22584
|
:param synthesizer: Synthesis method to use while deploying this stack. The Stack Synthesizer controls aspects of synthesis and deployment, like how assets are referenced and what IAM roles to use. For more information, see the README of the main CDK package. If not specified, the ``defaultStackSynthesizer`` from ``App`` will be used. If that is not specified, ``DefaultStackSynthesizer`` is used if ``@aws-cdk/core:newStyleStackSynthesis`` is set to ``true`` or the CDK major version is v2. In CDK v1 ``LegacyStackSynthesizer`` is the default if no other synthesizer is specified. Default: - The synthesizer specified on ``App``, or ``DefaultStackSynthesizer`` otherwise.
|
|
22545
|
-
:param tags:
|
|
22585
|
+
:param tags: Tags that will be applied to the Stack. These tags are applied to the CloudFormation Stack itself. They will not appear in the CloudFormation template. However, at deployment time, CloudFormation will apply these tags to all resources in the stack that support tagging. You will not be able to exempt resources from tagging (using the ``excludeResourceTypes`` property of ``Tags.of(...).add()``) for tags applied in this way. Default: {}
|
|
22546
22586
|
:param termination_protection: Whether to enable termination protection for this stack. Default: false
|
|
22547
22587
|
|
|
22548
22588
|
:exampleMetadata: infused
|
|
@@ -22791,7 +22831,15 @@ class StackProps:
|
|
|
22791
22831
|
|
|
22792
22832
|
@builtins.property
|
|
22793
22833
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
22794
|
-
'''
|
|
22834
|
+
'''Tags that will be applied to the Stack.
|
|
22835
|
+
|
|
22836
|
+
These tags are applied to the CloudFormation Stack itself. They will not
|
|
22837
|
+
appear in the CloudFormation template.
|
|
22838
|
+
|
|
22839
|
+
However, at deployment time, CloudFormation will apply these tags to all
|
|
22840
|
+
resources in the stack that support tagging. You will not be able to exempt
|
|
22841
|
+
resources from tagging (using the ``excludeResourceTypes`` property of
|
|
22842
|
+
``Tags.of(...).add()``) for tags applied in this way.
|
|
22795
22843
|
|
|
22796
22844
|
:default: {}
|
|
22797
22845
|
'''
|
|
@@ -24710,7 +24758,26 @@ class Tags(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.Tags"):
|
|
|
24710
24758
|
include_resource_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
24711
24759
|
priority: typing.Optional[jsii.Number] = None,
|
|
24712
24760
|
) -> None:
|
|
24713
|
-
'''
|
|
24761
|
+
'''Add tags to the node of a construct and all its the taggable children.
|
|
24762
|
+
|
|
24763
|
+
|
|
24764
|
+
|
|
24765
|
+
Tagging and CloudFormation Stacks
|
|
24766
|
+
|
|
24767
|
+
If the feature flag ``@aws-cdk/core:explicitStackTags`` is set to ``true``
|
|
24768
|
+
(recommended modern behavior), Stacks will not automatically be tagged.
|
|
24769
|
+
Stack tags should be configured on Stacks directly (preferred), or
|
|
24770
|
+
you must explicitly include the resource type ``aws:cdk:stack`` in the
|
|
24771
|
+
``includeResourceTypes`` array.
|
|
24772
|
+
|
|
24773
|
+
If the feature flag is set to ``false`` (legacy behavior) then both Stacks
|
|
24774
|
+
and resources in the indicated scope will both be tagged by default, which
|
|
24775
|
+
leads to tags being applied twice (once in the template, and then once
|
|
24776
|
+
again automatically by CloudFormation as part of the stack deployment).
|
|
24777
|
+
That behavior leads to loss of control as ``excludeResourceTypes`` will
|
|
24778
|
+
prevent tags from appearing in the template, but they will still be
|
|
24779
|
+
applied to the Stack and hence CloudFormation will still apply them
|
|
24780
|
+
to the resource.
|
|
24714
24781
|
|
|
24715
24782
|
:param key: -
|
|
24716
24783
|
:param value: -
|
|
@@ -24824,18 +24891,25 @@ class TimeZone(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.TimeZone"):
|
|
|
24824
24891
|
Example::
|
|
24825
24892
|
|
|
24826
24893
|
from aws_cdk import TimeZone
|
|
24827
|
-
#
|
|
24894
|
+
# resource: SomeScalableResource
|
|
24895
|
+
|
|
24896
|
+
|
|
24897
|
+
capacity = resource.auto_scale_capacity(
|
|
24898
|
+
min_capacity=1,
|
|
24899
|
+
max_capacity=50
|
|
24900
|
+
)
|
|
24901
|
+
|
|
24902
|
+
capacity.scale_on_schedule("PrescaleInTheMorning",
|
|
24903
|
+
schedule=appscaling.Schedule.cron(hour="8", minute="0"),
|
|
24904
|
+
min_capacity=20,
|
|
24905
|
+
time_zone=TimeZone.AMERICA_DENVER
|
|
24906
|
+
)
|
|
24828
24907
|
|
|
24829
|
-
|
|
24830
|
-
|
|
24831
|
-
|
|
24832
|
-
|
|
24833
|
-
|
|
24834
|
-
hour="3",
|
|
24835
|
-
minute="30"),
|
|
24836
|
-
schedule_expression_timezone=TimeZone.ETC_UTC,
|
|
24837
|
-
move_to_cold_storage_after=Duration.days(30)
|
|
24838
|
-
))
|
|
24908
|
+
capacity.scale_on_schedule("AllowDownscalingAtNight",
|
|
24909
|
+
schedule=appscaling.Schedule.cron(hour="20", minute="0"),
|
|
24910
|
+
min_capacity=1,
|
|
24911
|
+
time_zone=TimeZone.AMERICA_DENVER
|
|
24912
|
+
)
|
|
24839
24913
|
'''
|
|
24840
24914
|
|
|
24841
24915
|
@jsii.member(jsii_name="of")
|
|
@@ -30383,7 +30457,7 @@ class CfnHookDefaultVersion(
|
|
|
30383
30457
|
@builtins.property
|
|
30384
30458
|
@jsii.member(jsii_name="attrArn")
|
|
30385
30459
|
def attr_arn(self) -> builtins.str:
|
|
30386
|
-
'''The Amazon Resource Number (ARN) of the activated Hook
|
|
30460
|
+
'''The Amazon Resource Number (ARN) of the activated Hook in this account and Region.
|
|
30387
30461
|
|
|
30388
30462
|
:cloudformationAttribute: Arn
|
|
30389
30463
|
'''
|
|
@@ -30528,7 +30602,7 @@ class CfnHookTypeConfig(
|
|
|
30528
30602
|
@builtins.property
|
|
30529
30603
|
@jsii.member(jsii_name="attrConfigurationArn")
|
|
30530
30604
|
def attr_configuration_arn(self) -> builtins.str:
|
|
30531
|
-
'''The Amazon Resource Number (ARN) of the activated Hook type configuration
|
|
30605
|
+
'''The Amazon Resource Number (ARN) of the activated Hook type configuration in this account and Region.
|
|
30532
30606
|
|
|
30533
30607
|
:cloudformationAttribute: ConfigurationArn
|
|
30534
30608
|
'''
|
|
@@ -31795,7 +31869,8 @@ class CfnMacro(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnM
|
|
|
31795
31869
|
@builtins.property
|
|
31796
31870
|
@jsii.member(jsii_name="attrId")
|
|
31797
31871
|
def attr_id(self) -> builtins.str:
|
|
31798
|
-
'''
|
|
31872
|
+
'''Returns a unique identifier for the resource.
|
|
31873
|
+
|
|
31799
31874
|
:cloudformationAttribute: Id
|
|
31800
31875
|
'''
|
|
31801
31876
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -33104,7 +33179,7 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
33104
33179
|
|
|
33105
33180
|
For more information, see `Nested stacks <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html>`_ in the *AWS CloudFormation User Guide* .
|
|
33106
33181
|
|
|
33107
|
-
You can add output values from a nested stack within the containing template. You use the `GetAtt <https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
33182
|
+
You can add output values from a nested stack within the containing template. You use the `GetAtt <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/intrinsic-function-reference-getatt.html>`_ function with the nested stack's logical name and the name of the output value in the nested stack in the format ``Outputs. *NestedStackOutputName*`` .
|
|
33108
33183
|
|
|
33109
33184
|
We strongly recommend that updates to nested stacks are run from the parent stack.
|
|
33110
33185
|
|
|
@@ -33238,7 +33313,7 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
33238
33313
|
@builtins.property
|
|
33239
33314
|
@jsii.member(jsii_name="attrChangeSetId")
|
|
33240
33315
|
def attr_change_set_id(self) -> builtins.str:
|
|
33241
|
-
'''Returns the unique
|
|
33316
|
+
'''Returns the unique identifier of the change set.
|
|
33242
33317
|
|
|
33243
33318
|
:cloudformationAttribute: ChangeSetId
|
|
33244
33319
|
'''
|
|
@@ -33247,7 +33322,7 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
33247
33322
|
@builtins.property
|
|
33248
33323
|
@jsii.member(jsii_name="attrCreationTime")
|
|
33249
33324
|
def attr_creation_time(self) -> builtins.str:
|
|
33250
|
-
'''Returns
|
|
33325
|
+
'''Returns the time the stack was created.
|
|
33251
33326
|
|
|
33252
33327
|
:cloudformationAttribute: CreationTime
|
|
33253
33328
|
'''
|
|
@@ -33507,9 +33582,9 @@ class CfnStackSet(
|
|
|
33507
33582
|
metaclass=jsii.JSIIMeta,
|
|
33508
33583
|
jsii_type="aws-cdk-lib.CfnStackSet",
|
|
33509
33584
|
):
|
|
33510
|
-
'''The ``AWS::CloudFormation::StackSet`` resource
|
|
33585
|
+
'''The ``AWS::CloudFormation::StackSet`` resource contains information about a StackSet.
|
|
33511
33586
|
|
|
33512
|
-
|
|
33587
|
+
With StackSets, you can provision stacks across AWS accounts and Regions from a single CloudFormation template. Each stack is based on the same CloudFormation template, but you can customize individual stacks using parameters.
|
|
33513
33588
|
.. epigraph::
|
|
33514
33589
|
|
|
33515
33590
|
Run deployments to nested StackSets from the parent stack, not directly through the StackSet API.
|
|
@@ -33602,17 +33677,17 @@ class CfnStackSet(
|
|
|
33602
33677
|
'''
|
|
33603
33678
|
:param scope: Scope in which this resource is defined.
|
|
33604
33679
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
33605
|
-
:param permission_model: Describes how the IAM roles required for
|
|
33606
|
-
:param stack_set_name: The name to associate with the
|
|
33607
|
-
:param administration_role_arn: The Amazon Resource Number (ARN) of the IAM role to use to create this
|
|
33680
|
+
:param permission_model: Describes how the IAM roles required for StackSet operations are created. - With ``SELF_MANAGED`` permissions, you must create the administrator and execution roles required to deploy to target accounts. For more information, see `Grant self-managed permissions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html>`_ in the *AWS CloudFormation User Guide* . - With ``SERVICE_MANAGED`` permissions, StackSets automatically creates the IAM roles required to deploy to accounts managed by AWS Organizations . For more information, see `Activate trusted access for StackSets with AWS Organizations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-activate-trusted-access.html>`_ in the *AWS CloudFormation User Guide* .
|
|
33681
|
+
:param stack_set_name: The name to associate with the StackSet. The name must be unique in the Region where you create your StackSet.
|
|
33682
|
+
:param administration_role_arn: The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet. Specify an IAM role only if you are using customized administrator roles to control which users or groups can manage specific StackSets within the same administrator account. Use customized administrator roles to control which users or groups can manage specific StackSets within the same administrator account. For more information, see `Grant self-managed permissions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html>`_ in the *AWS CloudFormation User Guide* . Valid only if the permissions model is ``SELF_MANAGED`` .
|
|
33608
33683
|
:param auto_deployment: Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). For more information, see `Enable or disable automatic deployments for StackSets in AWS Organizations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-manage-auto-deployment.html>`_ in the *AWS CloudFormation User Guide* . Required if the permissions model is ``SERVICE_MANAGED`` . (Not used with self-managed permissions.)
|
|
33609
|
-
:param call_as: Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default, ``SELF`` is specified. Use ``SELF`` for
|
|
33610
|
-
:param capabilities: The capabilities that are allowed in the
|
|
33611
|
-
:param description: A description of the
|
|
33612
|
-
:param execution_role_name: The name of the IAM execution role to use to create the
|
|
33613
|
-
:param managed_execution: Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. When active, StackSets performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, StackSets starts queued operations in request order. .. epigraph:: If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting. You can't modify your
|
|
33614
|
-
:param operation_preferences: The user-specified preferences for how CloudFormation performs a
|
|
33615
|
-
:param parameters: The input parameters for the
|
|
33684
|
+
:param call_as: Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. By default, ``SELF`` is specified. Use ``SELF`` for StackSets with self-managed permissions. - To create a StackSet with service-managed permissions while signed in to the management account, specify ``SELF`` . - To create a StackSet with service-managed permissions while signed in to a delegated administrator account, specify ``DELEGATED_ADMIN`` . Your AWS account must be registered as a delegated admin in the management account. For more information, see `Register a delegated administrator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html>`_ in the *AWS CloudFormation User Guide* . StackSets with service-managed permissions are created in the management account, including StackSets that are created by delegated administrators. Valid only if the permissions model is ``SERVICE_MANAGED`` .
|
|
33685
|
+
:param capabilities: The capabilities that are allowed in the StackSet. Some StackSet templates might include resources that can affect permissions in your AWS account —for example, by creating new IAM users. For more information, see `Acknowledging IAM resources in CloudFormation templates <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/control-access-with-iam.html#using-iam-capabilities>`_ in the *AWS CloudFormation User Guide* .
|
|
33686
|
+
:param description: A description of the StackSet.
|
|
33687
|
+
:param execution_role_name: The name of the IAM execution role to use to create the StackSet. If you don't specify an execution role, CloudFormation uses the ``AWSCloudFormationStackSetExecutionRole`` role for the StackSet operation. Valid only if the permissions model is ``SELF_MANAGED`` . *Pattern* : ``[a-zA-Z_0-9+=,.@-]+``
|
|
33688
|
+
:param managed_execution: Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. When active, StackSets performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, StackSets starts queued operations in request order. .. epigraph:: If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting. You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet. When inactive (default), StackSets performs one operation at a time in request order.
|
|
33689
|
+
:param operation_preferences: The user-specified preferences for how CloudFormation performs a StackSet operation.
|
|
33690
|
+
:param parameters: The input parameters for the StackSet template.
|
|
33616
33691
|
:param stack_instances_group: A group of stack instances with parameters in some specific accounts and Regions.
|
|
33617
33692
|
:param tags: Key-value pairs to associate with this stack. CloudFormation also propagates these tags to supported resources in the stack. You can specify a maximum number of 50 tags. If you don't specify this parameter, CloudFormation doesn't modify the stack's tags. If you specify an empty value, CloudFormation removes all associated tags.
|
|
33618
33693
|
:param template_body: The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. You must include either ``TemplateURL`` or ``TemplateBody`` in a StackSet, but you can't use both. Dynamic references in the ``TemplateBody`` may not work correctly in all cases. It's recommended to pass templates that contain dynamic references through ``TemplateUrl`` instead.
|
|
@@ -33675,7 +33750,7 @@ class CfnStackSet(
|
|
|
33675
33750
|
@builtins.property
|
|
33676
33751
|
@jsii.member(jsii_name="attrStackSetId")
|
|
33677
33752
|
def attr_stack_set_id(self) -> builtins.str:
|
|
33678
|
-
'''
|
|
33753
|
+
'''Returns the unique identifier of the resource.
|
|
33679
33754
|
|
|
33680
33755
|
:cloudformationAttribute: StackSetId
|
|
33681
33756
|
'''
|
|
@@ -33695,7 +33770,7 @@ class CfnStackSet(
|
|
|
33695
33770
|
@builtins.property
|
|
33696
33771
|
@jsii.member(jsii_name="permissionModel")
|
|
33697
33772
|
def permission_model(self) -> builtins.str:
|
|
33698
|
-
'''Describes how the IAM roles required for
|
|
33773
|
+
'''Describes how the IAM roles required for StackSet operations are created.'''
|
|
33699
33774
|
return typing.cast(builtins.str, jsii.get(self, "permissionModel"))
|
|
33700
33775
|
|
|
33701
33776
|
@permission_model.setter
|
|
@@ -33708,7 +33783,7 @@ class CfnStackSet(
|
|
|
33708
33783
|
@builtins.property
|
|
33709
33784
|
@jsii.member(jsii_name="stackSetName")
|
|
33710
33785
|
def stack_set_name(self) -> builtins.str:
|
|
33711
|
-
'''The name to associate with the
|
|
33786
|
+
'''The name to associate with the StackSet.'''
|
|
33712
33787
|
return typing.cast(builtins.str, jsii.get(self, "stackSetName"))
|
|
33713
33788
|
|
|
33714
33789
|
@stack_set_name.setter
|
|
@@ -33721,7 +33796,7 @@ class CfnStackSet(
|
|
|
33721
33796
|
@builtins.property
|
|
33722
33797
|
@jsii.member(jsii_name="administrationRoleArn")
|
|
33723
33798
|
def administration_role_arn(self) -> typing.Optional[builtins.str]:
|
|
33724
|
-
'''The Amazon Resource Number (ARN) of the IAM role to use to create this
|
|
33799
|
+
'''The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet.'''
|
|
33725
33800
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "administrationRoleArn"))
|
|
33726
33801
|
|
|
33727
33802
|
@administration_role_arn.setter
|
|
@@ -33765,7 +33840,7 @@ class CfnStackSet(
|
|
|
33765
33840
|
@builtins.property
|
|
33766
33841
|
@jsii.member(jsii_name="capabilities")
|
|
33767
33842
|
def capabilities(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
33768
|
-
'''The capabilities that are allowed in the
|
|
33843
|
+
'''The capabilities that are allowed in the StackSet.'''
|
|
33769
33844
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "capabilities"))
|
|
33770
33845
|
|
|
33771
33846
|
@capabilities.setter
|
|
@@ -33778,7 +33853,7 @@ class CfnStackSet(
|
|
|
33778
33853
|
@builtins.property
|
|
33779
33854
|
@jsii.member(jsii_name="description")
|
|
33780
33855
|
def description(self) -> typing.Optional[builtins.str]:
|
|
33781
|
-
'''A description of the
|
|
33856
|
+
'''A description of the StackSet.'''
|
|
33782
33857
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
33783
33858
|
|
|
33784
33859
|
@description.setter
|
|
@@ -33791,7 +33866,7 @@ class CfnStackSet(
|
|
|
33791
33866
|
@builtins.property
|
|
33792
33867
|
@jsii.member(jsii_name="executionRoleName")
|
|
33793
33868
|
def execution_role_name(self) -> typing.Optional[builtins.str]:
|
|
33794
|
-
'''The name of the IAM execution role to use to create the
|
|
33869
|
+
'''The name of the IAM execution role to use to create the StackSet.'''
|
|
33795
33870
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "executionRoleName"))
|
|
33796
33871
|
|
|
33797
33872
|
@execution_role_name.setter
|
|
@@ -33819,7 +33894,7 @@ class CfnStackSet(
|
|
|
33819
33894
|
def operation_preferences(
|
|
33820
33895
|
self,
|
|
33821
33896
|
) -> typing.Optional[typing.Union[IResolvable, "CfnStackSet.OperationPreferencesProperty"]]:
|
|
33822
|
-
'''The user-specified preferences for how CloudFormation performs a
|
|
33897
|
+
'''The user-specified preferences for how CloudFormation performs a StackSet operation.'''
|
|
33823
33898
|
return typing.cast(typing.Optional[typing.Union[IResolvable, "CfnStackSet.OperationPreferencesProperty"]], jsii.get(self, "operationPreferences"))
|
|
33824
33899
|
|
|
33825
33900
|
@operation_preferences.setter
|
|
@@ -33837,7 +33912,7 @@ class CfnStackSet(
|
|
|
33837
33912
|
def parameters(
|
|
33838
33913
|
self,
|
|
33839
33914
|
) -> typing.Optional[typing.Union[IResolvable, typing.List[typing.Union[IResolvable, "CfnStackSet.ParameterProperty"]]]]:
|
|
33840
|
-
'''The input parameters for the
|
|
33915
|
+
'''The input parameters for the StackSet template.'''
|
|
33841
33916
|
return typing.cast(typing.Optional[typing.Union[IResolvable, typing.List[typing.Union[IResolvable, "CfnStackSet.ParameterProperty"]]]], jsii.get(self, "parameters"))
|
|
33842
33917
|
|
|
33843
33918
|
@parameters.setter
|
|
@@ -34005,7 +34080,7 @@ class CfnStackSet(
|
|
|
34005
34080
|
accounts_url: typing.Optional[builtins.str] = None,
|
|
34006
34081
|
organizational_unit_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
34007
34082
|
) -> None:
|
|
34008
|
-
'''The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.
|
|
34083
|
+
'''The AWS ``OrganizationalUnitIds`` or ``Accounts`` for which to create stack instances in the specified Regions.
|
|
34009
34084
|
|
|
34010
34085
|
:param account_filter_type: Limit deployment targets to individual accounts or include additional accounts with provided OUs. The following is a list of possible values for the ``AccountFilterType`` operation. - ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` parameter. - ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` parameter. - ``UNION`` StackSet deploys to the OU, and the accounts specified in the ``Accounts`` parameter. ``UNION`` is not supported for create operations when using StackSet as a resource.
|
|
34011
34086
|
:param accounts: The account IDs of the AWS accounts . If you have many account numbers, you can provide those accounts using the ``AccountsUrl`` property instead. *Pattern* : ``^[0-9]{12}$``
|
|
@@ -34118,7 +34193,7 @@ class CfnStackSet(
|
|
|
34118
34193
|
) -> None:
|
|
34119
34194
|
'''Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.
|
|
34120
34195
|
|
|
34121
|
-
:param active: When ``true`` , StackSets performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, StackSets starts queued operations in request order. .. epigraph:: If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting. You can't modify your
|
|
34196
|
+
:param active: When ``true`` , StackSets performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, StackSets starts queued operations in request order. .. epigraph:: If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting. You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet. When ``false`` (default), StackSets performs one operation at a time in request order.
|
|
34122
34197
|
|
|
34123
34198
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-managedexecution.html
|
|
34124
34199
|
:exampleMetadata: fixture=_generated
|
|
@@ -34149,7 +34224,7 @@ class CfnStackSet(
|
|
|
34149
34224
|
|
|
34150
34225
|
If there are already running or queued operations, StackSets queues all incoming operations even if they are non-conflicting.
|
|
34151
34226
|
|
|
34152
|
-
You can't modify your
|
|
34227
|
+
You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet.
|
|
34153
34228
|
|
|
34154
34229
|
When ``false`` (default), StackSets performs one operation at a time in request order.
|
|
34155
34230
|
|
|
@@ -34194,13 +34269,13 @@ class CfnStackSet(
|
|
|
34194
34269
|
region_concurrency_type: typing.Optional[builtins.str] = None,
|
|
34195
34270
|
region_order: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
34196
34271
|
) -> None:
|
|
34197
|
-
'''The user-specified preferences for how CloudFormation performs a
|
|
34272
|
+
'''The user-specified preferences for how CloudFormation performs a StackSet operation.
|
|
34198
34273
|
|
|
34199
|
-
For more information on maximum concurrent accounts and failure tolerance, see `
|
|
34274
|
+
For more information on maximum concurrent accounts and failure tolerance, see `StackSet operation options <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options>`_ in the *AWS CloudFormation User Guide* .
|
|
34200
34275
|
|
|
34201
|
-
:param concurrency_mode: Specifies how the concurrency level behaves during the operation execution. - ``STRICT_FAILURE_TOLERANCE`` : This option dynamically lowers the concurrency level to ensure the number of failed accounts never exceeds the value of ``FailureToleranceCount`` +1. The initial actual concurrency is set to the lower of either the value of the ``MaxConcurrentCount`` , or the value of ``FailureToleranceCount`` +1. The actual concurrency is then reduced proportionally by the number of failures. This is the default behavior. If failure tolerance or Maximum concurrent accounts are set to percentages, the behavior is similar. - ``SOFT_FAILURE_TOLERANCE`` : This option decouples ``FailureToleranceCount`` from the actual concurrency. This allows
|
|
34202
|
-
:param failure_tolerance_count: The number of accounts
|
|
34203
|
-
:param failure_tolerance_percentage: The percentage of accounts
|
|
34276
|
+
:param concurrency_mode: Specifies how the concurrency level behaves during the operation execution. - ``STRICT_FAILURE_TOLERANCE`` : This option dynamically lowers the concurrency level to ensure the number of failed accounts never exceeds the value of ``FailureToleranceCount`` +1. The initial actual concurrency is set to the lower of either the value of the ``MaxConcurrentCount`` , or the value of ``FailureToleranceCount`` +1. The actual concurrency is then reduced proportionally by the number of failures. This is the default behavior. If failure tolerance or Maximum concurrent accounts are set to percentages, the behavior is similar. - ``SOFT_FAILURE_TOLERANCE`` : This option decouples ``FailureToleranceCount`` from the actual concurrency. This allows StackSet operations to run at the concurrency level set by the ``MaxConcurrentCount`` value, or ``MaxConcurrentPercentage`` , regardless of the number of failures.
|
|
34277
|
+
:param failure_tolerance_count: The number of accounts per Region this operation can fail in before CloudFormation stops the operation in that Region. If the operation is stopped in a Region, CloudFormation doesn't attempt the operation in any subsequent Regions. Conditional: You must specify either ``FailureToleranceCount`` or ``FailureTolerancePercentage`` (but not both).
|
|
34278
|
+
:param failure_tolerance_percentage: The percentage of accounts per Region this stack operation can fail in before CloudFormation stops the operation in that Region. If the operation is stopped in a Region, CloudFormation doesn't attempt the operation in any subsequent Regions. When calculating the number of accounts based on the specified percentage, CloudFormation rounds *down* to the next whole number. Conditional: You must specify either ``FailureToleranceCount`` or ``FailureTolerancePercentage`` , but not both.
|
|
34204
34279
|
:param max_concurrent_count: The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of ``FailureToleranceCount`` . ``MaxConcurrentCount`` is at most one more than the ``FailureToleranceCount`` . Note that this setting lets you specify the *maximum* for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either ``MaxConcurrentCount`` or ``MaxConcurrentPercentage`` , but not both.
|
|
34205
34280
|
:param max_concurrent_percentage: The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, CloudFormation rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, CloudFormation sets the number as one instead. Note that this setting lets you specify the *maximum* for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either ``MaxConcurrentCount`` or ``MaxConcurrentPercentage`` , but not both.
|
|
34206
34281
|
:param region_concurrency_type: The concurrency type of deploying StackSets operations in Regions, could be in parallel or one Region at a time.
|
|
@@ -34258,7 +34333,7 @@ class CfnStackSet(
|
|
|
34258
34333
|
|
|
34259
34334
|
If failure tolerance or Maximum concurrent accounts are set to percentages, the behavior is similar.
|
|
34260
34335
|
|
|
34261
|
-
- ``SOFT_FAILURE_TOLERANCE`` : This option decouples ``FailureToleranceCount`` from the actual concurrency. This allows
|
|
34336
|
+
- ``SOFT_FAILURE_TOLERANCE`` : This option decouples ``FailureToleranceCount`` from the actual concurrency. This allows StackSet operations to run at the concurrency level set by the ``MaxConcurrentCount`` value, or ``MaxConcurrentPercentage`` , regardless of the number of failures.
|
|
34262
34337
|
|
|
34263
34338
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html#cfn-cloudformation-stackset-operationpreferences-concurrencymode
|
|
34264
34339
|
'''
|
|
@@ -34267,7 +34342,7 @@ class CfnStackSet(
|
|
|
34267
34342
|
|
|
34268
34343
|
@builtins.property
|
|
34269
34344
|
def failure_tolerance_count(self) -> typing.Optional[jsii.Number]:
|
|
34270
|
-
'''The number of accounts
|
|
34345
|
+
'''The number of accounts per Region this operation can fail in before CloudFormation stops the operation in that Region.
|
|
34271
34346
|
|
|
34272
34347
|
If the operation is stopped in a Region, CloudFormation doesn't attempt the operation in any subsequent Regions.
|
|
34273
34348
|
|
|
@@ -34280,7 +34355,7 @@ class CfnStackSet(
|
|
|
34280
34355
|
|
|
34281
34356
|
@builtins.property
|
|
34282
34357
|
def failure_tolerance_percentage(self) -> typing.Optional[jsii.Number]:
|
|
34283
|
-
'''The percentage of accounts
|
|
34358
|
+
'''The percentage of accounts per Region this stack operation can fail in before CloudFormation stops the operation in that Region.
|
|
34284
34359
|
|
|
34285
34360
|
If the operation is stopped in a Region, CloudFormation doesn't attempt the operation in any subsequent Regions.
|
|
34286
34361
|
|
|
@@ -34449,7 +34524,7 @@ class CfnStackSet(
|
|
|
34449
34524
|
|
|
34450
34525
|
:param deployment_targets: The AWS ``OrganizationalUnitIds`` or ``Accounts`` for which to create stack instances in the specified Regions.
|
|
34451
34526
|
:param regions: The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
|
|
34452
|
-
:param parameter_overrides: A list of
|
|
34527
|
+
:param parameter_overrides: A list of StackSet parameters whose values you want to override in the selected stack instances.
|
|
34453
34528
|
|
|
34454
34529
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html
|
|
34455
34530
|
:exampleMetadata: fixture=_generated
|
|
@@ -34514,7 +34589,7 @@ class CfnStackSet(
|
|
|
34514
34589
|
def parameter_overrides(
|
|
34515
34590
|
self,
|
|
34516
34591
|
) -> typing.Optional[typing.Union[IResolvable, typing.List[typing.Union[IResolvable, "CfnStackSet.ParameterProperty"]]]]:
|
|
34517
|
-
'''A list of
|
|
34592
|
+
'''A list of StackSet parameters whose values you want to override in the selected stack instances.
|
|
34518
34593
|
|
|
34519
34594
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html#cfn-cloudformation-stackset-stackinstances-parameteroverrides
|
|
34520
34595
|
'''
|
|
@@ -34880,7 +34955,7 @@ class CfnWaitCondition(
|
|
|
34880
34955
|
):
|
|
34881
34956
|
'''The ``AWS::CloudFormation::WaitCondition`` resource provides a way to coordinate stack resource creation with configuration actions that are external to the stack creation or to track the status of a configuration process.
|
|
34882
34957
|
|
|
34883
|
-
In these situations, we recommend that you associate a ``CreationPolicy`` attribute with the wait condition instead of using a wait condition handle. For more information and an example, see `CreationPolicy attribute <https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
34958
|
+
In these situations, we recommend that you associate a ``CreationPolicy`` attribute with the wait condition instead of using a wait condition handle. For more information and an example, see `CreationPolicy attribute <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-attribute-creationpolicy.html>`_ in the *AWS CloudFormation User Guide* . If you use a ``CreationPolicy`` with a wait condition, don't specify any of the wait condition's properties.
|
|
34884
34959
|
.. epigraph::
|
|
34885
34960
|
|
|
34886
34961
|
If you use AWS PrivateLink , resources in the VPC that respond to wait conditions must have access to CloudFormation , specific Amazon S3 buckets. Resources must send wait condition responses to a presigned Amazon S3 URL. If they can't send responses to Amazon S3 , CloudFormation won't receive a response and the stack operation fails. For more information, see `Access CloudFormation using an interface endpoint ( AWS PrivateLink ) <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/vpc-interface-endpoints.html>`_ in the *AWS CloudFormation User Guide* . > For Amazon EC2 and Auto Scaling resources, we recommend that you use a ``CreationPolicy`` attribute instead of wait conditions. Add a ``CreationPolicy`` attribute to those resources, and use the ``cfn-signal`` helper script to signal when an instance creation process has completed successfully.
|
|
@@ -34967,7 +35042,8 @@ class CfnWaitCondition(
|
|
|
34967
35042
|
@builtins.property
|
|
34968
35043
|
@jsii.member(jsii_name="attrId")
|
|
34969
35044
|
def attr_id(self) -> builtins.str:
|
|
34970
|
-
'''
|
|
35045
|
+
'''Returns a unique identifier for the resource.
|
|
35046
|
+
|
|
34971
35047
|
:cloudformationAttribute: Id
|
|
34972
35048
|
'''
|
|
34973
35049
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -35092,7 +35168,7 @@ class CfnWaitConditionHandle(
|
|
|
35092
35168
|
@builtins.property
|
|
35093
35169
|
@jsii.member(jsii_name="attrId")
|
|
35094
35170
|
def attr_id(self) -> builtins.str:
|
|
35095
|
-
'''
|
|
35171
|
+
'''Returns a unique identifier for the resource.
|
|
35096
35172
|
|
|
35097
35173
|
:cloudformationAttribute: Id
|
|
35098
35174
|
'''
|
|
@@ -35748,6 +35824,19 @@ class DockerIgnoreStrategy(
|
|
|
35748
35824
|
check_type(argname="argument pattern", value=pattern, expected_type=type_hints["pattern"])
|
|
35749
35825
|
return typing.cast(None, jsii.invoke(self, "add", [pattern]))
|
|
35750
35826
|
|
|
35827
|
+
@jsii.member(jsii_name="completelyIgnores")
|
|
35828
|
+
def completely_ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
|
|
35829
|
+
'''Determines whether a given file path should be ignored and have all of its children ignored if its a directory.
|
|
35830
|
+
|
|
35831
|
+
:param absolute_file_path: absolute file path to be assessed against the pattern.
|
|
35832
|
+
|
|
35833
|
+
:return: ``true`` if the file should be ignored
|
|
35834
|
+
'''
|
|
35835
|
+
if __debug__:
|
|
35836
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4eeec3aad8660d3f77c7f5fd848b52abf32a847311801373080bbfe35642315a)
|
|
35837
|
+
check_type(argname="argument absolute_file_path", value=absolute_file_path, expected_type=type_hints["absolute_file_path"])
|
|
35838
|
+
return typing.cast(builtins.bool, jsii.invoke(self, "completelyIgnores", [absolute_file_path]))
|
|
35839
|
+
|
|
35751
35840
|
@jsii.member(jsii_name="ignores")
|
|
35752
35841
|
def ignores(self, absolute_file_path: builtins.str) -> builtins.bool:
|
|
35753
35842
|
'''Determines whether a given file path should be ignored or not.
|
|
@@ -37872,6 +37961,7 @@ __all__ = [
|
|
|
37872
37961
|
"aws_notifications",
|
|
37873
37962
|
"aws_notificationscontacts",
|
|
37874
37963
|
"aws_oam",
|
|
37964
|
+
"aws_odb",
|
|
37875
37965
|
"aws_omics",
|
|
37876
37966
|
"aws_opensearchserverless",
|
|
37877
37967
|
"aws_opensearchservice",
|
|
@@ -38174,6 +38264,7 @@ from . import aws_nimblestudio
|
|
|
38174
38264
|
from . import aws_notifications
|
|
38175
38265
|
from . import aws_notificationscontacts
|
|
38176
38266
|
from . import aws_oam
|
|
38267
|
+
from . import aws_odb
|
|
38177
38268
|
from . import aws_omics
|
|
38178
38269
|
from . import aws_opensearchserverless
|
|
38179
38270
|
from . import aws_opensearchservice
|
|
@@ -40282,6 +40373,12 @@ def _typecheckingstub__eece2ad7e2f3cbe035a92302343ee656a4e8438489e1b15a43554b124
|
|
|
40282
40373
|
"""Type checking stubs"""
|
|
40283
40374
|
pass
|
|
40284
40375
|
|
|
40376
|
+
def _typecheckingstub__3a80a66d2944a2c289e3c51a3686487dddf7c755eb54d7726f3fd91652eddcde(
|
|
40377
|
+
absolute_file_path: builtins.str,
|
|
40378
|
+
) -> None:
|
|
40379
|
+
"""Type checking stubs"""
|
|
40380
|
+
pass
|
|
40381
|
+
|
|
40285
40382
|
def _typecheckingstub__30e8e458c385d1db329cfc0c45f966d2d15c1b0166b3e7cfe8a57c7809196bf5(
|
|
40286
40383
|
pattern: builtins.str,
|
|
40287
40384
|
) -> None:
|
|
@@ -40897,6 +40994,13 @@ def _typecheckingstub__2747e69e9678b96621f1476e1bee4426100a530229cea9dce16210392
|
|
|
40897
40994
|
"""Type checking stubs"""
|
|
40898
40995
|
pass
|
|
40899
40996
|
|
|
40997
|
+
def _typecheckingstub__c79ea9b0cd54830acfa2c93ac0786782e515591ac5cda10c42b42f8ff76457a0(
|
|
40998
|
+
tag_name: builtins.str,
|
|
40999
|
+
tag_value: builtins.str,
|
|
41000
|
+
) -> None:
|
|
41001
|
+
"""Type checking stubs"""
|
|
41002
|
+
pass
|
|
41003
|
+
|
|
40900
41004
|
def _typecheckingstub__4b8bfc7ce675d439b6218b58ddc312a45cfe87ee7179a489f0cc18c67560faac(
|
|
40901
41005
|
transform: builtins.str,
|
|
40902
41006
|
) -> None:
|
|
@@ -40940,6 +41044,12 @@ def _typecheckingstub__1f4a18c1188f55ad7c4058f8aace9f6ebb7b7e9b596dd51616883b350
|
|
|
40940
41044
|
"""Type checking stubs"""
|
|
40941
41045
|
pass
|
|
40942
41046
|
|
|
41047
|
+
def _typecheckingstub__25f39c18a619c464f8e693cb5c5847cdf10f847438cac04672be8ba78d2b49d0(
|
|
41048
|
+
tag_name: builtins.str,
|
|
41049
|
+
) -> None:
|
|
41050
|
+
"""Type checking stubs"""
|
|
41051
|
+
pass
|
|
41052
|
+
|
|
40943
41053
|
def _typecheckingstub__363ae1d6a0b84b63acd48fd337e70f58cc140887b9d61b4f55f925b3a7e2cded(
|
|
40944
41054
|
old_id: builtins.str,
|
|
40945
41055
|
new_id: builtins.str,
|
|
@@ -42877,6 +42987,12 @@ def _typecheckingstub__dce0fd20685d4b7457e08a1567eb5aa8c53335612222538272b7d69db
|
|
|
42877
42987
|
"""Type checking stubs"""
|
|
42878
42988
|
pass
|
|
42879
42989
|
|
|
42990
|
+
def _typecheckingstub__4eeec3aad8660d3f77c7f5fd848b52abf32a847311801373080bbfe35642315a(
|
|
42991
|
+
absolute_file_path: builtins.str,
|
|
42992
|
+
) -> None:
|
|
42993
|
+
"""Type checking stubs"""
|
|
42994
|
+
pass
|
|
42995
|
+
|
|
42880
42996
|
def _typecheckingstub__a94afdff9185f6eef56446b1ee12df7551a9ea60e1fd57e80213dc039cb3980c(
|
|
42881
42997
|
absolute_file_path: builtins.str,
|
|
42882
42998
|
) -> None:
|