aws-cdk-lib 2.202.0__py3-none-any.whl → 2.203.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 +46 -47
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.202.0.jsii.tgz → aws-cdk-lib@2.203.1.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +310 -4
- aws_cdk/aws_aiops/__init__.py +964 -0
- aws_cdk/aws_amplify/__init__.py +127 -0
- aws_cdk/aws_arczonalshift/__init__.py +8 -8
- aws_cdk/aws_b2bi/__init__.py +782 -3
- aws_cdk/aws_backup/__init__.py +22 -0
- aws_cdk/aws_batch/__init__.py +53 -1
- aws_cdk/aws_bedrock/__init__.py +123 -9
- aws_cdk/aws_cleanrooms/__init__.py +157 -154
- aws_cdk/aws_cloudformation/__init__.py +28 -28
- aws_cdk/aws_cloudfront/__init__.py +61 -18
- aws_cdk/aws_cloudfront/experimental/__init__.py +37 -3
- aws_cdk/aws_cloudwatch/__init__.py +228 -2
- aws_cdk/aws_connect/__init__.py +120 -8
- aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
- aws_cdk/aws_customerprofiles/__init__.py +140 -20
- aws_cdk/aws_datazone/__init__.py +23 -4
- aws_cdk/aws_deadline/__init__.py +4 -4
- aws_cdk/aws_dsql/__init__.py +148 -0
- aws_cdk/aws_ec2/__init__.py +159 -7
- aws_cdk/aws_ecr/__init__.py +3 -3
- aws_cdk/aws_ecs/__init__.py +48 -13
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
- aws_cdk/aws_emrserverless/__init__.py +118 -0
- aws_cdk/aws_fsx/__init__.py +891 -0
- aws_cdk/aws_iam/__init__.py +8 -8
- aws_cdk/aws_inspectorv2/__init__.py +442 -3
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kms/__init__.py +14 -8
- aws_cdk/aws_lambda/__init__.py +191 -24
- aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
- aws_cdk/aws_lex/__init__.py +703 -0
- aws_cdk/aws_logs/__init__.py +144 -0
- aws_cdk/aws_mediatailor/__init__.py +399 -0
- aws_cdk/aws_mpa/__init__.py +1475 -0
- aws_cdk/aws_networkfirewall/__init__.py +4 -2
- aws_cdk/aws_networkmanager/__init__.py +51 -3
- aws_cdk/aws_opsworkscm/__init__.py +44 -2
- aws_cdk/aws_rds/__init__.py +171 -41
- aws_cdk/aws_redshiftserverless/__init__.py +632 -0
- aws_cdk/aws_route53resolver/__init__.py +58 -10
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3tables/__init__.py +230 -0
- aws_cdk/aws_sagemaker/__init__.py +6 -2
- aws_cdk/aws_securityhub/__init__.py +2887 -56
- aws_cdk/aws_synthetics/__init__.py +21 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -4
- aws_cdk/aws_wafv2/__init__.py +156 -51
- aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
- aws_cdk/cloud_assembly_schema/__init__.py +200 -4
- aws_cdk/cx_api/__init__.py +15 -14
- aws_cdk/pipelines/__init__.py +31 -3
- aws_cdk/triggers/__init__.py +41 -4
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/RECORD +62 -59
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/top_level.txt +0 -0
|
@@ -744,7 +744,7 @@ class CfnGuardHook(
|
|
|
744
744
|
) -> None:
|
|
745
745
|
'''Specifies the S3 location where your Guard rules or input parameters are located.
|
|
746
746
|
|
|
747
|
-
:param uri: Specifies the S3 path to the file
|
|
747
|
+
:param uri: Specifies the S3 path to the file that contains your Guard rules or input parameters (in the form ``s3://<bucket name>/<file name>`` ). For Guard rules, the object stored in S3 must have one of the following file extensions: ``.guard`` , ``.zip`` , or ``.tar.gz`` . For input parameters, the object stored in S3 must have one of the following file extensions: ``.yaml`` , ``.json`` , ``.zip`` , or ``.tar.gz`` .
|
|
748
748
|
:param version_id: For S3 buckets with versioning enabled, specifies the unique ID of the S3 object version to download your Guard rules or input parameters from. The Guard Hook downloads files from S3 every time the Hook is invoked. To prevent accidental changes or deletions, we recommend using a version when configuring your Guard Hook.
|
|
749
749
|
|
|
750
750
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-s3location.html
|
|
@@ -775,7 +775,7 @@ class CfnGuardHook(
|
|
|
775
775
|
|
|
776
776
|
@builtins.property
|
|
777
777
|
def uri(self) -> builtins.str:
|
|
778
|
-
'''Specifies the S3 path to the file
|
|
778
|
+
'''Specifies the S3 path to the file that contains your Guard rules or input parameters (in the form ``s3://<bucket name>/<file name>`` ).
|
|
779
779
|
|
|
780
780
|
For Guard rules, the object stored in S3 must have one of the following file extensions: ``.guard`` , ``.zip`` , or ``.tar.gz`` .
|
|
781
781
|
|
|
@@ -2034,7 +2034,7 @@ class CfnHookVersion(
|
|
|
2034
2034
|
'''
|
|
2035
2035
|
:param scope: Scope in which this resource is defined.
|
|
2036
2036
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2037
|
-
:param schema_handler_package: A URL to the Amazon S3 bucket
|
|
2037
|
+
:param schema_handler_package: A URL to the Amazon S3 bucket for the Hook project package that contains the necessary files for the Hook you want to register. For information on generating a schema handler package, see `Modeling custom CloudFormation Hooks <https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/hooks-model.html>`_ in the *AWS CloudFormation Hooks User Guide* . .. epigraph:: To register the Hook, you must have ``s3:GetObject`` permissions to access the S3 objects.
|
|
2038
2038
|
:param type_name: The unique name for your hook. Specifies a three-part namespace for your hook, with a recommended pattern of ``Organization::Service::Hook`` . .. epigraph:: The following organization namespaces are reserved and can't be used in your hook type names: - ``Alexa`` - ``AMZN`` - ``Amazon`` - ``ASK`` - ``AWS`` - ``Custom`` - ``Dev``
|
|
2039
2039
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the task execution role that grants the Hook permission.
|
|
2040
2040
|
:param logging_config: Contains logging configuration information for an extension.
|
|
@@ -2138,7 +2138,7 @@ class CfnHookVersion(
|
|
|
2138
2138
|
@builtins.property
|
|
2139
2139
|
@jsii.member(jsii_name="schemaHandlerPackage")
|
|
2140
2140
|
def schema_handler_package(self) -> builtins.str:
|
|
2141
|
-
'''A URL to the Amazon S3 bucket
|
|
2141
|
+
'''A URL to the Amazon S3 bucket for the Hook project package that contains the necessary files for the Hook you want to register.'''
|
|
2142
2142
|
return typing.cast(builtins.str, jsii.get(self, "schemaHandlerPackage"))
|
|
2143
2143
|
|
|
2144
2144
|
@schema_handler_package.setter
|
|
@@ -2284,7 +2284,7 @@ class CfnHookVersionProps:
|
|
|
2284
2284
|
) -> None:
|
|
2285
2285
|
'''Properties for defining a ``CfnHookVersion``.
|
|
2286
2286
|
|
|
2287
|
-
:param schema_handler_package: A URL to the Amazon S3 bucket
|
|
2287
|
+
:param schema_handler_package: A URL to the Amazon S3 bucket for the Hook project package that contains the necessary files for the Hook you want to register. For information on generating a schema handler package, see `Modeling custom CloudFormation Hooks <https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/hooks-model.html>`_ in the *AWS CloudFormation Hooks User Guide* . .. epigraph:: To register the Hook, you must have ``s3:GetObject`` permissions to access the S3 objects.
|
|
2288
2288
|
:param type_name: The unique name for your hook. Specifies a three-part namespace for your hook, with a recommended pattern of ``Organization::Service::Hook`` . .. epigraph:: The following organization namespaces are reserved and can't be used in your hook type names: - ``Alexa`` - ``AMZN`` - ``Amazon`` - ``ASK`` - ``AWS`` - ``Custom`` - ``Dev``
|
|
2289
2289
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the task execution role that grants the Hook permission.
|
|
2290
2290
|
:param logging_config: Contains logging configuration information for an extension.
|
|
@@ -2327,7 +2327,7 @@ class CfnHookVersionProps:
|
|
|
2327
2327
|
|
|
2328
2328
|
@builtins.property
|
|
2329
2329
|
def schema_handler_package(self) -> builtins.str:
|
|
2330
|
-
'''A URL to the Amazon S3 bucket
|
|
2330
|
+
'''A URL to the Amazon S3 bucket for the Hook project package that contains the necessary files for the Hook you want to register.
|
|
2331
2331
|
|
|
2332
2332
|
For information on generating a schema handler package, see `Modeling custom CloudFormation Hooks <https://docs.aws.amazon.com/cloudformation-cli/latest/hooks-userguide/hooks-model.html>`_ in the *AWS CloudFormation Hooks User Guide* .
|
|
2333
2333
|
.. epigraph::
|
|
@@ -3936,7 +3936,7 @@ class CfnModuleVersion(
|
|
|
3936
3936
|
:param scope: Scope in which this resource is defined.
|
|
3937
3937
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3938
3938
|
:param module_name: The name of the module being registered.
|
|
3939
|
-
:param module_package: A URL to the S3 bucket
|
|
3939
|
+
:param module_package: A URL to the S3 bucket for the package that contains the template fragment and schema files for the module version to register. For more information, see `Module structure and requirements <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/modules-structure.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* . .. epigraph:: To register the module version, you must have ``s3:GetObject`` permissions to access the S3 objects.
|
|
3940
3940
|
'''
|
|
3941
3941
|
if __debug__:
|
|
3942
3942
|
type_hints = typing.get_type_hints(_typecheckingstub__50da97e251a6b1bacc1202d70f10c857ca74139ea4e8bcc35b2ff47e8b8b2729)
|
|
@@ -4076,7 +4076,7 @@ class CfnModuleVersion(
|
|
|
4076
4076
|
@builtins.property
|
|
4077
4077
|
@jsii.member(jsii_name="modulePackage")
|
|
4078
4078
|
def module_package(self) -> builtins.str:
|
|
4079
|
-
'''A URL to the S3 bucket
|
|
4079
|
+
'''A URL to the S3 bucket for the package that contains the template fragment and schema files for the module version to register.'''
|
|
4080
4080
|
return typing.cast(builtins.str, jsii.get(self, "modulePackage"))
|
|
4081
4081
|
|
|
4082
4082
|
@module_package.setter
|
|
@@ -4102,7 +4102,7 @@ class CfnModuleVersionProps:
|
|
|
4102
4102
|
'''Properties for defining a ``CfnModuleVersion``.
|
|
4103
4103
|
|
|
4104
4104
|
:param module_name: The name of the module being registered.
|
|
4105
|
-
:param module_package: A URL to the S3 bucket
|
|
4105
|
+
:param module_package: A URL to the S3 bucket for the package that contains the template fragment and schema files for the module version to register. For more information, see `Module structure and requirements <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/modules-structure.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* . .. epigraph:: To register the module version, you must have ``s3:GetObject`` permissions to access the S3 objects.
|
|
4106
4106
|
|
|
4107
4107
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html
|
|
4108
4108
|
:exampleMetadata: fixture=_generated
|
|
@@ -4139,7 +4139,7 @@ class CfnModuleVersionProps:
|
|
|
4139
4139
|
|
|
4140
4140
|
@builtins.property
|
|
4141
4141
|
def module_package(self) -> builtins.str:
|
|
4142
|
-
'''A URL to the S3 bucket
|
|
4142
|
+
'''A URL to the S3 bucket for the package that contains the template fragment and schema files for the module version to register.
|
|
4143
4143
|
|
|
4144
4144
|
For more information, see `Module structure and requirements <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/modules-structure.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
|
|
4145
4145
|
.. epigraph::
|
|
@@ -5049,7 +5049,7 @@ class CfnResourceVersion(
|
|
|
5049
5049
|
'''
|
|
5050
5050
|
:param scope: Scope in which this resource is defined.
|
|
5051
5051
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5052
|
-
:param schema_handler_package: A URL to the S3 bucket
|
|
5052
|
+
:param schema_handler_package: A URL to the S3 bucket for the resource project package that contains the necessary files for the resource you want to register. For information on generating a schema handler package, see `Modeling resource types to use with AWS CloudFormation <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* . .. epigraph:: To register the resource version, you must have ``s3:GetObject`` permissions to access the S3 objects.
|
|
5053
5053
|
:param type_name: The name of the resource being registered. We recommend that resource names adhere to the following pattern: *company_or_organization* :: *service* :: *type* . .. epigraph:: The following organization namespaces are reserved and can't be used in your resource names: - ``Alexa`` - ``AMZN`` - ``Amazon`` - ``AWS`` - ``Custom`` - ``Dev``
|
|
5054
5054
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the resource. If your resource calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the resource type handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the resource type handler, thereby supplying your resource type with the appropriate credentials.
|
|
5055
5055
|
:param logging_config: Logging configuration information for a resource.
|
|
@@ -5177,7 +5177,7 @@ class CfnResourceVersion(
|
|
|
5177
5177
|
@builtins.property
|
|
5178
5178
|
@jsii.member(jsii_name="schemaHandlerPackage")
|
|
5179
5179
|
def schema_handler_package(self) -> builtins.str:
|
|
5180
|
-
'''A URL to the S3 bucket
|
|
5180
|
+
'''A URL to the S3 bucket for the resource project package that contains the necessary files for the resource you want to register.'''
|
|
5181
5181
|
return typing.cast(builtins.str, jsii.get(self, "schemaHandlerPackage"))
|
|
5182
5182
|
|
|
5183
5183
|
@schema_handler_package.setter
|
|
@@ -5323,7 +5323,7 @@ class CfnResourceVersionProps:
|
|
|
5323
5323
|
) -> None:
|
|
5324
5324
|
'''Properties for defining a ``CfnResourceVersion``.
|
|
5325
5325
|
|
|
5326
|
-
:param schema_handler_package: A URL to the S3 bucket
|
|
5326
|
+
:param schema_handler_package: A URL to the S3 bucket for the resource project package that contains the necessary files for the resource you want to register. For information on generating a schema handler package, see `Modeling resource types to use with AWS CloudFormation <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* . .. epigraph:: To register the resource version, you must have ``s3:GetObject`` permissions to access the S3 objects.
|
|
5327
5327
|
:param type_name: The name of the resource being registered. We recommend that resource names adhere to the following pattern: *company_or_organization* :: *service* :: *type* . .. epigraph:: The following organization namespaces are reserved and can't be used in your resource names: - ``Alexa`` - ``AMZN`` - ``Amazon`` - ``AWS`` - ``Custom`` - ``Dev``
|
|
5328
5328
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the IAM role for CloudFormation to assume when invoking the resource. If your resource calls AWS APIs in any of its handlers, you must create an IAM execution role that includes the necessary permissions to call those AWS APIs, and provision that execution role in your account. When CloudFormation needs to invoke the resource type handler, CloudFormation assumes this execution role to create a temporary session token, which it then passes to the resource type handler, thereby supplying your resource type with the appropriate credentials.
|
|
5329
5329
|
:param logging_config: Logging configuration information for a resource.
|
|
@@ -5366,7 +5366,7 @@ class CfnResourceVersionProps:
|
|
|
5366
5366
|
|
|
5367
5367
|
@builtins.property
|
|
5368
5368
|
def schema_handler_package(self) -> builtins.str:
|
|
5369
|
-
'''A URL to the S3 bucket
|
|
5369
|
+
'''A URL to the S3 bucket for the resource project package that contains the necessary files for the resource you want to register.
|
|
5370
5370
|
|
|
5371
5371
|
For information on generating a schema handler package, see `Modeling resource types to use with AWS CloudFormation <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
|
|
5372
5372
|
.. epigraph::
|
|
@@ -5529,7 +5529,7 @@ class CfnStack(
|
|
|
5529
5529
|
:param notification_arns: The Amazon SNS topic ARNs to publish stack related events. You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).
|
|
5530
5530
|
:param parameters: The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created. Each parameter has a name corresponding to a parameter defined in the embedded template and a value representing the value that you want to set for the parameter. .. epigraph:: If you use the ``Ref`` function to pass a parameter value to a nested stack, comma-delimited list parameters must be of type ``String`` . In other words, you can't pass values that are of type ``CommaDelimitedList`` to nested stacks. Required if the nested stack requires input parameters. Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
5531
5531
|
:param tags: Key-value pairs to associate with this stack. CloudFormation also propagates these tags to the resources created in the stack. A maximum number of 50 tags can be specified.
|
|
5532
|
-
:param template_url: The URL of a file
|
|
5532
|
+
:param template_url: The URL of a file that contains the template body. The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket. The location for an Amazon S3 bucket must start with ``https://`` . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
5533
5533
|
:param timeout_in_minutes: The length of time, in minutes, that CloudFormation waits for the nested stack to reach the ``CREATE_COMPLETE`` state. The default is no timeout. When CloudFormation detects that the nested stack has reached the ``CREATE_COMPLETE`` state, it marks the nested stack resource as ``CREATE_COMPLETE`` in the parent stack and resumes creating the parent stack. If the timeout period expires before the nested stack reaches ``CREATE_COMPLETE`` , CloudFormation marks the nested stack as failed and rolls back both the nested stack and parent stack. Updates aren't supported.
|
|
5534
5534
|
'''
|
|
5535
5535
|
if __debug__:
|
|
@@ -5713,7 +5713,7 @@ class CfnStack(
|
|
|
5713
5713
|
@builtins.property
|
|
5714
5714
|
@jsii.member(jsii_name="templateUrl")
|
|
5715
5715
|
def template_url(self) -> typing.Optional[builtins.str]:
|
|
5716
|
-
'''The URL of a file
|
|
5716
|
+
'''The URL of a file that contains the template body.'''
|
|
5717
5717
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "templateUrl"))
|
|
5718
5718
|
|
|
5719
5719
|
@template_url.setter
|
|
@@ -5868,7 +5868,7 @@ class CfnStackProps:
|
|
|
5868
5868
|
:param notification_arns: The Amazon SNS topic ARNs to publish stack related events. You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).
|
|
5869
5869
|
:param parameters: The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created. Each parameter has a name corresponding to a parameter defined in the embedded template and a value representing the value that you want to set for the parameter. .. epigraph:: If you use the ``Ref`` function to pass a parameter value to a nested stack, comma-delimited list parameters must be of type ``String`` . In other words, you can't pass values that are of type ``CommaDelimitedList`` to nested stacks. Required if the nested stack requires input parameters. Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
5870
5870
|
:param tags: Key-value pairs to associate with this stack. CloudFormation also propagates these tags to the resources created in the stack. A maximum number of 50 tags can be specified.
|
|
5871
|
-
:param template_url: The URL of a file
|
|
5871
|
+
:param template_url: The URL of a file that contains the template body. The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket. The location for an Amazon S3 bucket must start with ``https://`` . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
5872
5872
|
:param timeout_in_minutes: The length of time, in minutes, that CloudFormation waits for the nested stack to reach the ``CREATE_COMPLETE`` state. The default is no timeout. When CloudFormation detects that the nested stack has reached the ``CREATE_COMPLETE`` state, it marks the nested stack resource as ``CREATE_COMPLETE`` in the parent stack and resumes creating the parent stack. If the timeout period expires before the nested stack reaches ``CREATE_COMPLETE`` , CloudFormation marks the nested stack as failed and rolls back both the nested stack and parent stack. Updates aren't supported.
|
|
5873
5873
|
|
|
5874
5874
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html
|
|
@@ -5956,7 +5956,7 @@ class CfnStackProps:
|
|
|
5956
5956
|
|
|
5957
5957
|
@builtins.property
|
|
5958
5958
|
def template_url(self) -> typing.Optional[builtins.str]:
|
|
5959
|
-
'''The URL of a file
|
|
5959
|
+
'''The URL of a file that contains the template body.
|
|
5960
5960
|
|
|
5961
5961
|
The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket. The location for an Amazon S3 bucket must start with ``https://`` .
|
|
5962
5962
|
|
|
@@ -6106,8 +6106,8 @@ class CfnStackSet(
|
|
|
6106
6106
|
:param parameters: The input parameters for the stack set template.
|
|
6107
6107
|
:param stack_instances_group: A group of stack instances with parameters in some specific accounts and Regions.
|
|
6108
6108
|
: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.
|
|
6109
|
-
: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
|
|
6110
|
-
:param template_url: The URL of a file
|
|
6109
|
+
: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.
|
|
6110
|
+
:param template_url: The URL of a file that contains the template body. The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket or a Systems Manager document. The location for an Amazon S3 bucket must start with ``https://`` . Conditional: You must specify only one of the following parameters: ``TemplateBody`` , ``TemplateURL`` .
|
|
6111
6111
|
'''
|
|
6112
6112
|
if __debug__:
|
|
6113
6113
|
type_hints = typing.get_type_hints(_typecheckingstub__6d9c85250c99fa8473d88e65c23c7c33031b75b34da26e2bece38ee28bd4570d)
|
|
@@ -6388,7 +6388,7 @@ class CfnStackSet(
|
|
|
6388
6388
|
@builtins.property
|
|
6389
6389
|
@jsii.member(jsii_name="templateUrl")
|
|
6390
6390
|
def template_url(self) -> typing.Optional[builtins.str]:
|
|
6391
|
-
'''The URL of a file
|
|
6391
|
+
'''The URL of a file that contains the template body.'''
|
|
6392
6392
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "templateUrl"))
|
|
6393
6393
|
|
|
6394
6394
|
@template_url.setter
|
|
@@ -7084,8 +7084,8 @@ class CfnStackSetProps:
|
|
|
7084
7084
|
:param parameters: The input parameters for the stack set template.
|
|
7085
7085
|
:param stack_instances_group: A group of stack instances with parameters in some specific accounts and Regions.
|
|
7086
7086
|
: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.
|
|
7087
|
-
: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
|
|
7088
|
-
:param template_url: The URL of a file
|
|
7087
|
+
: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.
|
|
7088
|
+
:param template_url: The URL of a file that contains the template body. The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket or a Systems Manager document. The location for an Amazon S3 bucket must start with ``https://`` . Conditional: You must specify only one of the following parameters: ``TemplateBody`` , ``TemplateURL`` .
|
|
7089
7089
|
|
|
7090
7090
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html
|
|
7091
7091
|
:exampleMetadata: fixture=_generated
|
|
@@ -7375,7 +7375,7 @@ class CfnStackSetProps:
|
|
|
7375
7375
|
def template_body(self) -> typing.Optional[builtins.str]:
|
|
7376
7376
|
'''The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes.
|
|
7377
7377
|
|
|
7378
|
-
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
|
|
7378
|
+
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.
|
|
7379
7379
|
|
|
7380
7380
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-templatebody
|
|
7381
7381
|
'''
|
|
@@ -7384,7 +7384,7 @@ class CfnStackSetProps:
|
|
|
7384
7384
|
|
|
7385
7385
|
@builtins.property
|
|
7386
7386
|
def template_url(self) -> typing.Optional[builtins.str]:
|
|
7387
|
-
'''The URL of a file
|
|
7387
|
+
'''The URL of a file that contains the template body.
|
|
7388
7388
|
|
|
7389
7389
|
The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket or a Systems Manager document. The location for an Amazon S3 bucket must start with ``https://`` .
|
|
7390
7390
|
|
|
@@ -8025,7 +8025,7 @@ class CfnWaitCondition(
|
|
|
8025
8025
|
:param scope: Scope in which this resource is defined.
|
|
8026
8026
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
8027
8027
|
:param count: The number of success signals that CloudFormation must receive before it continues the stack creation process. When the wait condition receives the requisite number of success signals, CloudFormation resumes the creation of the stack. If the wait condition doesn't receive the specified number of success signals before the Timeout period expires, CloudFormation assumes that the wait condition has failed and rolls the stack back. Updates aren't supported.
|
|
8028
|
-
:param handle: A reference to the wait condition handle used to signal this wait condition. Use the ``Ref`` intrinsic function to specify an `AWS::CloudFormation::WaitConditionHandle <https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
8028
|
+
:param handle: A reference to the wait condition handle used to signal this wait condition. Use the ``Ref`` intrinsic function to specify an `AWS::CloudFormation::WaitConditionHandle <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudformation-waitconditionhandle.html>`_ resource. Anytime you add a ``WaitCondition`` resource during a stack update, you must associate the wait condition with a new WaitConditionHandle resource. Don't reuse an old wait condition handle that has already been defined in the template. If you reuse a wait condition handle, the wait condition might evaluate old signals from a previous create or update stack command. Updates aren't supported.
|
|
8029
8029
|
:param timeout: The length of time (in seconds) to wait for the number of signals that the ``Count`` property specifies. ``Timeout`` is a minimum-bound property, meaning the timeout occurs no sooner than the time you specify, but can occur shortly thereafter. The maximum time that can be specified for this property is 12 hours (43200 seconds). Updates aren't supported.
|
|
8030
8030
|
'''
|
|
8031
8031
|
if __debug__:
|
|
@@ -8264,7 +8264,7 @@ class CfnWaitConditionProps:
|
|
|
8264
8264
|
'''Properties for defining a ``CfnWaitCondition``.
|
|
8265
8265
|
|
|
8266
8266
|
:param count: The number of success signals that CloudFormation must receive before it continues the stack creation process. When the wait condition receives the requisite number of success signals, CloudFormation resumes the creation of the stack. If the wait condition doesn't receive the specified number of success signals before the Timeout period expires, CloudFormation assumes that the wait condition has failed and rolls the stack back. Updates aren't supported.
|
|
8267
|
-
:param handle: A reference to the wait condition handle used to signal this wait condition. Use the ``Ref`` intrinsic function to specify an `AWS::CloudFormation::WaitConditionHandle <https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
8267
|
+
:param handle: A reference to the wait condition handle used to signal this wait condition. Use the ``Ref`` intrinsic function to specify an `AWS::CloudFormation::WaitConditionHandle <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudformation-waitconditionhandle.html>`_ resource. Anytime you add a ``WaitCondition`` resource during a stack update, you must associate the wait condition with a new WaitConditionHandle resource. Don't reuse an old wait condition handle that has already been defined in the template. If you reuse a wait condition handle, the wait condition might evaluate old signals from a previous create or update stack command. Updates aren't supported.
|
|
8268
8268
|
:param timeout: The length of time (in seconds) to wait for the number of signals that the ``Count`` property specifies. ``Timeout`` is a minimum-bound property, meaning the timeout occurs no sooner than the time you specify, but can occur shortly thereafter. The maximum time that can be specified for this property is 12 hours (43200 seconds). Updates aren't supported.
|
|
8269
8269
|
|
|
8270
8270
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-waitcondition.html
|
|
@@ -8312,7 +8312,7 @@ class CfnWaitConditionProps:
|
|
|
8312
8312
|
def handle(self) -> typing.Optional[builtins.str]:
|
|
8313
8313
|
'''A reference to the wait condition handle used to signal this wait condition.
|
|
8314
8314
|
|
|
8315
|
-
Use the ``Ref`` intrinsic function to specify an `AWS::CloudFormation::WaitConditionHandle <https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
8315
|
+
Use the ``Ref`` intrinsic function to specify an `AWS::CloudFormation::WaitConditionHandle <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudformation-waitconditionhandle.html>`_ resource.
|
|
8316
8316
|
|
|
8317
8317
|
Anytime you add a ``WaitCondition`` resource during a stack update, you must associate the wait condition with a new WaitConditionHandle resource. Don't reuse an old wait condition handle that has already been defined in the template. If you reuse a wait condition handle, the wait condition might evaluate old signals from a previous create or update stack command.
|
|
8318
8318
|
|
|
@@ -6609,9 +6609,9 @@ class CfnDistribution(
|
|
|
6609
6609
|
:param origin_protocol_policy: Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:. - ``http-only`` – CloudFront always uses HTTP to connect to the origin. - ``match-viewer`` – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront. - ``https-only`` – CloudFront always uses HTTPS to connect to the origin.
|
|
6610
6610
|
:param http_port: The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on. Default: - 80
|
|
6611
6611
|
:param https_port: The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on. Default: - 443
|
|
6612
|
-
:param origin_keepalive_timeout: Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds. For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
6613
|
-
:param origin_read_timeout: Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds. For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
6614
|
-
:param origin_ssl_protocols: Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` . For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
6612
|
+
:param origin_keepalive_timeout: Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds. For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout>`_ in the *Amazon CloudFront Developer Guide* . Default: - 5
|
|
6613
|
+
:param origin_read_timeout: Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds. For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout>`_ in the *Amazon CloudFront Developer Guide* . Default: - 30
|
|
6614
|
+
:param origin_ssl_protocols: Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` . For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginSSLProtocols>`_ in the *Amazon CloudFront Developer Guide* .
|
|
6615
6615
|
|
|
6616
6616
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html
|
|
6617
6617
|
:exampleMetadata: fixture=_generated
|
|
@@ -6701,7 +6701,7 @@ class CfnDistribution(
|
|
|
6701
6701
|
|
|
6702
6702
|
The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.
|
|
6703
6703
|
|
|
6704
|
-
For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
6704
|
+
For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout>`_ in the *Amazon CloudFront Developer Guide* .
|
|
6705
6705
|
|
|
6706
6706
|
:default: - 5
|
|
6707
6707
|
|
|
@@ -6716,7 +6716,7 @@ class CfnDistribution(
|
|
|
6716
6716
|
|
|
6717
6717
|
This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
6718
6718
|
|
|
6719
|
-
For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
6719
|
+
For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout>`_ in the *Amazon CloudFront Developer Guide* .
|
|
6720
6720
|
|
|
6721
6721
|
:default: - 30
|
|
6722
6722
|
|
|
@@ -6731,7 +6731,7 @@ class CfnDistribution(
|
|
|
6731
6731
|
|
|
6732
6732
|
Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` .
|
|
6733
6733
|
|
|
6734
|
-
For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
6734
|
+
For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginSSLProtocols>`_ in the *Amazon CloudFront Developer Guide* .
|
|
6735
6735
|
|
|
6736
6736
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originsslprotocols
|
|
6737
6737
|
'''
|
|
@@ -7573,8 +7573,10 @@ class CfnDistribution(
|
|
|
7573
7573
|
enabled=False,
|
|
7574
7574
|
origin_shield_region="originShieldRegion"
|
|
7575
7575
|
),
|
|
7576
|
+
response_completion_timeout=123,
|
|
7576
7577
|
s3_origin_config=cloudfront.CfnDistribution.S3OriginConfigProperty(
|
|
7577
|
-
origin_access_identity="originAccessIdentity"
|
|
7578
|
+
origin_access_identity="originAccessIdentity",
|
|
7579
|
+
origin_read_timeout=123
|
|
7578
7580
|
),
|
|
7579
7581
|
vpc_origin_config=cloudfront.CfnDistribution.VpcOriginConfigProperty(
|
|
7580
7582
|
vpc_origin_id="vpcOriginId",
|
|
@@ -9343,6 +9345,7 @@ class CfnDistribution(
|
|
|
9343
9345
|
"origin_custom_headers": "originCustomHeaders",
|
|
9344
9346
|
"origin_path": "originPath",
|
|
9345
9347
|
"origin_shield": "originShield",
|
|
9348
|
+
"response_completion_timeout": "responseCompletionTimeout",
|
|
9346
9349
|
"s3_origin_config": "s3OriginConfig",
|
|
9347
9350
|
"vpc_origin_config": "vpcOriginConfig",
|
|
9348
9351
|
},
|
|
@@ -9360,6 +9363,7 @@ class CfnDistribution(
|
|
|
9360
9363
|
origin_custom_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.OriginCustomHeaderProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
9361
9364
|
origin_path: typing.Optional[builtins.str] = None,
|
|
9362
9365
|
origin_shield: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.OriginShieldProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9366
|
+
response_completion_timeout: typing.Optional[jsii.Number] = None,
|
|
9363
9367
|
s3_origin_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.S3OriginConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9364
9368
|
vpc_origin_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDistribution.VpcOriginConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
9365
9369
|
) -> None:
|
|
@@ -9387,6 +9391,7 @@ class CfnDistribution(
|
|
|
9387
9391
|
:param origin_custom_headers: A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin. For more information, see `Adding Custom Headers to Origin Requests <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/add-origin-custom-headers.html>`_ in the *Amazon CloudFront Developer Guide* .
|
|
9388
9392
|
:param origin_path: An optional path that CloudFront appends to the origin domain name when CloudFront requests content from the origin. For more information, see `Origin Path <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginPath>`_ in the *Amazon CloudFront Developer Guide* . Default: - ""
|
|
9389
9393
|
:param origin_shield: CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin. For more information, see `Using Origin Shield <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html>`_ in the *Amazon CloudFront Developer Guide* .
|
|
9394
|
+
:param response_completion_timeout:
|
|
9390
9395
|
:param s3_origin_config: Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the ``CustomOriginConfig`` type instead.
|
|
9391
9396
|
:param vpc_origin_config: The VPC origin configuration.
|
|
9392
9397
|
|
|
@@ -9426,8 +9431,10 @@ class CfnDistribution(
|
|
|
9426
9431
|
enabled=False,
|
|
9427
9432
|
origin_shield_region="originShieldRegion"
|
|
9428
9433
|
),
|
|
9434
|
+
response_completion_timeout=123,
|
|
9429
9435
|
s3_origin_config=cloudfront.CfnDistribution.S3OriginConfigProperty(
|
|
9430
|
-
origin_access_identity="originAccessIdentity"
|
|
9436
|
+
origin_access_identity="originAccessIdentity",
|
|
9437
|
+
origin_read_timeout=123
|
|
9431
9438
|
),
|
|
9432
9439
|
vpc_origin_config=cloudfront.CfnDistribution.VpcOriginConfigProperty(
|
|
9433
9440
|
vpc_origin_id="vpcOriginId",
|
|
@@ -9449,6 +9456,7 @@ class CfnDistribution(
|
|
|
9449
9456
|
check_type(argname="argument origin_custom_headers", value=origin_custom_headers, expected_type=type_hints["origin_custom_headers"])
|
|
9450
9457
|
check_type(argname="argument origin_path", value=origin_path, expected_type=type_hints["origin_path"])
|
|
9451
9458
|
check_type(argname="argument origin_shield", value=origin_shield, expected_type=type_hints["origin_shield"])
|
|
9459
|
+
check_type(argname="argument response_completion_timeout", value=response_completion_timeout, expected_type=type_hints["response_completion_timeout"])
|
|
9452
9460
|
check_type(argname="argument s3_origin_config", value=s3_origin_config, expected_type=type_hints["s3_origin_config"])
|
|
9453
9461
|
check_type(argname="argument vpc_origin_config", value=vpc_origin_config, expected_type=type_hints["vpc_origin_config"])
|
|
9454
9462
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -9469,6 +9477,8 @@ class CfnDistribution(
|
|
|
9469
9477
|
self._values["origin_path"] = origin_path
|
|
9470
9478
|
if origin_shield is not None:
|
|
9471
9479
|
self._values["origin_shield"] = origin_shield
|
|
9480
|
+
if response_completion_timeout is not None:
|
|
9481
|
+
self._values["response_completion_timeout"] = response_completion_timeout
|
|
9472
9482
|
if s3_origin_config is not None:
|
|
9473
9483
|
self._values["s3_origin_config"] = s3_origin_config
|
|
9474
9484
|
if vpc_origin_config is not None:
|
|
@@ -9589,6 +9599,14 @@ class CfnDistribution(
|
|
|
9589
9599
|
result = self._values.get("origin_shield")
|
|
9590
9600
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDistribution.OriginShieldProperty"]], result)
|
|
9591
9601
|
|
|
9602
|
+
@builtins.property
|
|
9603
|
+
def response_completion_timeout(self) -> typing.Optional[jsii.Number]:
|
|
9604
|
+
'''
|
|
9605
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-responsecompletiontimeout
|
|
9606
|
+
'''
|
|
9607
|
+
result = self._values.get("response_completion_timeout")
|
|
9608
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
9609
|
+
|
|
9592
9610
|
@builtins.property
|
|
9593
9611
|
def s3_origin_config(
|
|
9594
9612
|
self,
|
|
@@ -9858,19 +9876,24 @@ class CfnDistribution(
|
|
|
9858
9876
|
@jsii.data_type(
|
|
9859
9877
|
jsii_type="aws-cdk-lib.aws_cloudfront.CfnDistribution.S3OriginConfigProperty",
|
|
9860
9878
|
jsii_struct_bases=[],
|
|
9861
|
-
name_mapping={
|
|
9879
|
+
name_mapping={
|
|
9880
|
+
"origin_access_identity": "originAccessIdentity",
|
|
9881
|
+
"origin_read_timeout": "originReadTimeout",
|
|
9882
|
+
},
|
|
9862
9883
|
)
|
|
9863
9884
|
class S3OriginConfigProperty:
|
|
9864
9885
|
def __init__(
|
|
9865
9886
|
self,
|
|
9866
9887
|
*,
|
|
9867
9888
|
origin_access_identity: typing.Optional[builtins.str] = None,
|
|
9889
|
+
origin_read_timeout: typing.Optional[jsii.Number] = None,
|
|
9868
9890
|
) -> None:
|
|
9869
9891
|
'''A complex type that contains information about the Amazon S3 origin.
|
|
9870
9892
|
|
|
9871
9893
|
If the origin is a custom origin or an S3 bucket that is configured as a website endpoint, use the ``CustomOriginConfig`` element instead.
|
|
9872
9894
|
|
|
9873
9895
|
:param origin_access_identity: .. epigraph:: If you're using origin access control (OAC) instead of origin access identity, specify an empty ``OriginAccessIdentity`` element. For more information, see `Restricting access to an AWS <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-origin.html>`_ in the *Amazon CloudFront Developer Guide* . The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can *only* access objects in an Amazon S3 bucket through CloudFront. The format of the value is: ``origin-access-identity/cloudfront/ID-of-origin-access-identity`` The ``*ID-of-origin-access-identity*`` is the value that CloudFront returned in the ``ID`` element when you created the origin access identity. If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty ``OriginAccessIdentity`` element. To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty ``OriginAccessIdentity`` element. To replace the origin access identity, update the distribution configuration and specify the new origin access identity. For more information about the origin access identity, see `Serving Private Content through CloudFront <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html>`_ in the *Amazon CloudFront Developer Guide* . Default: - ""
|
|
9896
|
+
:param origin_read_timeout: Default: - 30
|
|
9874
9897
|
|
|
9875
9898
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-s3originconfig.html
|
|
9876
9899
|
:exampleMetadata: fixture=_generated
|
|
@@ -9882,15 +9905,19 @@ class CfnDistribution(
|
|
|
9882
9905
|
from aws_cdk import aws_cloudfront as cloudfront
|
|
9883
9906
|
|
|
9884
9907
|
s3_origin_config_property = cloudfront.CfnDistribution.S3OriginConfigProperty(
|
|
9885
|
-
origin_access_identity="originAccessIdentity"
|
|
9908
|
+
origin_access_identity="originAccessIdentity",
|
|
9909
|
+
origin_read_timeout=123
|
|
9886
9910
|
)
|
|
9887
9911
|
'''
|
|
9888
9912
|
if __debug__:
|
|
9889
9913
|
type_hints = typing.get_type_hints(_typecheckingstub__8d9ff629693eb9bcb66704ce461d05e62e0755b651cbbc7ead2b89151325cad7)
|
|
9890
9914
|
check_type(argname="argument origin_access_identity", value=origin_access_identity, expected_type=type_hints["origin_access_identity"])
|
|
9915
|
+
check_type(argname="argument origin_read_timeout", value=origin_read_timeout, expected_type=type_hints["origin_read_timeout"])
|
|
9891
9916
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
9892
9917
|
if origin_access_identity is not None:
|
|
9893
9918
|
self._values["origin_access_identity"] = origin_access_identity
|
|
9919
|
+
if origin_read_timeout is not None:
|
|
9920
|
+
self._values["origin_read_timeout"] = origin_read_timeout
|
|
9894
9921
|
|
|
9895
9922
|
@builtins.property
|
|
9896
9923
|
def origin_access_identity(self) -> typing.Optional[builtins.str]:
|
|
@@ -9921,6 +9948,16 @@ class CfnDistribution(
|
|
|
9921
9948
|
result = self._values.get("origin_access_identity")
|
|
9922
9949
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
9923
9950
|
|
|
9951
|
+
@builtins.property
|
|
9952
|
+
def origin_read_timeout(self) -> typing.Optional[jsii.Number]:
|
|
9953
|
+
'''
|
|
9954
|
+
:default: - 30
|
|
9955
|
+
|
|
9956
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-s3originconfig.html#cfn-cloudfront-distribution-s3originconfig-originreadtimeout
|
|
9957
|
+
'''
|
|
9958
|
+
result = self._values.get("origin_read_timeout")
|
|
9959
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
9960
|
+
|
|
9924
9961
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
9925
9962
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
9926
9963
|
|
|
@@ -10362,8 +10399,8 @@ class CfnDistribution(
|
|
|
10362
10399
|
'''An Amazon CloudFront VPC origin configuration.
|
|
10363
10400
|
|
|
10364
10401
|
:param vpc_origin_id: The VPC origin ID.
|
|
10365
|
-
:param origin_keepalive_timeout: Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds. For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
10366
|
-
:param origin_read_timeout: Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds. For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
10402
|
+
:param origin_keepalive_timeout: Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds. For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout>`_ in the *Amazon CloudFront Developer Guide* . Default: - 5
|
|
10403
|
+
:param origin_read_timeout: Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds. For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout>`_ in the *Amazon CloudFront Developer Guide* . Default: - 30
|
|
10367
10404
|
|
|
10368
10405
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html
|
|
10369
10406
|
:exampleMetadata: fixture=_generated
|
|
@@ -10411,7 +10448,7 @@ class CfnDistribution(
|
|
|
10411
10448
|
|
|
10412
10449
|
The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.
|
|
10413
10450
|
|
|
10414
|
-
For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
10451
|
+
For more information, see `Keep-alive timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout>`_ in the *Amazon CloudFront Developer Guide* .
|
|
10415
10452
|
|
|
10416
10453
|
:default: - 5
|
|
10417
10454
|
|
|
@@ -10426,7 +10463,7 @@ class CfnDistribution(
|
|
|
10426
10463
|
|
|
10427
10464
|
This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
10428
10465
|
|
|
10429
|
-
For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
10466
|
+
For more information, see `Response timeout (custom origins only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout>`_ in the *Amazon CloudFront Developer Guide* .
|
|
10430
10467
|
|
|
10431
10468
|
:default: - 30
|
|
10432
10469
|
|
|
@@ -10650,8 +10687,10 @@ class CfnDistributionProps:
|
|
|
10650
10687
|
enabled=False,
|
|
10651
10688
|
origin_shield_region="originShieldRegion"
|
|
10652
10689
|
),
|
|
10690
|
+
response_completion_timeout=123,
|
|
10653
10691
|
s3_origin_config=cloudfront.CfnDistribution.S3OriginConfigProperty(
|
|
10654
|
-
origin_access_identity="originAccessIdentity"
|
|
10692
|
+
origin_access_identity="originAccessIdentity",
|
|
10693
|
+
origin_read_timeout=123
|
|
10655
10694
|
),
|
|
10656
10695
|
vpc_origin_config=cloudfront.CfnDistribution.VpcOriginConfigProperty(
|
|
10657
10696
|
vpc_origin_id="vpcOriginId",
|
|
@@ -18036,7 +18075,7 @@ class CfnVpcOrigin(
|
|
|
18036
18075
|
:param http_port: The HTTP port for the CloudFront VPC origin endpoint configuration. The default value is ``80`` . Default: - 80
|
|
18037
18076
|
:param https_port: The HTTPS port of the CloudFront VPC origin endpoint configuration. The default value is ``443`` . Default: - 443
|
|
18038
18077
|
:param origin_protocol_policy: The origin protocol policy for the CloudFront VPC origin endpoint configuration. Default: - "match-viewer"
|
|
18039
|
-
:param origin_ssl_protocols: Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` . For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
18078
|
+
:param origin_ssl_protocols: Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` . For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginSSLProtocols>`_ in the *Amazon CloudFront Developer Guide* .
|
|
18040
18079
|
|
|
18041
18080
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-vpcoriginendpointconfig.html
|
|
18042
18081
|
:exampleMetadata: fixture=_generated
|
|
@@ -18142,7 +18181,7 @@ class CfnVpcOrigin(
|
|
|
18142
18181
|
|
|
18143
18182
|
Valid values include ``SSLv3`` , ``TLSv1`` , ``TLSv1.1`` , and ``TLSv1.2`` .
|
|
18144
18183
|
|
|
18145
|
-
For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/
|
|
18184
|
+
For more information, see `Minimum Origin SSL Protocol <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginSSLProtocols>`_ in the *Amazon CloudFront Developer Guide* .
|
|
18146
18185
|
|
|
18147
18186
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-vpcoriginendpointconfig.html#cfn-cloudfront-vpcorigin-vpcoriginendpointconfig-originsslprotocols
|
|
18148
18187
|
'''
|
|
@@ -22256,8 +22295,10 @@ class OriginBindConfig:
|
|
|
22256
22295
|
enabled=False,
|
|
22257
22296
|
origin_shield_region="originShieldRegion"
|
|
22258
22297
|
),
|
|
22298
|
+
response_completion_timeout=123,
|
|
22259
22299
|
s3_origin_config=cloudfront.CfnDistribution.S3OriginConfigProperty(
|
|
22260
|
-
origin_access_identity="originAccessIdentity"
|
|
22300
|
+
origin_access_identity="originAccessIdentity",
|
|
22301
|
+
origin_read_timeout=123
|
|
22261
22302
|
),
|
|
22262
22303
|
vpc_origin_config=cloudfront.CfnDistribution.VpcOriginConfigProperty(
|
|
22263
22304
|
vpc_origin_id="vpcOriginId",
|
|
@@ -29812,6 +29853,7 @@ def _typecheckingstub__cb4237408749840dbecf9d9aed57975910052da22b994c7e13cc97c98
|
|
|
29812
29853
|
origin_custom_headers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistribution.OriginCustomHeaderProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
29813
29854
|
origin_path: typing.Optional[builtins.str] = None,
|
|
29814
29855
|
origin_shield: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistribution.OriginShieldProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29856
|
+
response_completion_timeout: typing.Optional[jsii.Number] = None,
|
|
29815
29857
|
s3_origin_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistribution.S3OriginConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29816
29858
|
vpc_origin_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDistribution.VpcOriginConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
29817
29859
|
) -> None:
|
|
@@ -29844,6 +29886,7 @@ def _typecheckingstub__4deb0a9215bd7c703383e0e2be801747efa09772f2b073423550aa963
|
|
|
29844
29886
|
def _typecheckingstub__8d9ff629693eb9bcb66704ce461d05e62e0755b651cbbc7ead2b89151325cad7(
|
|
29845
29887
|
*,
|
|
29846
29888
|
origin_access_identity: typing.Optional[builtins.str] = None,
|
|
29889
|
+
origin_read_timeout: typing.Optional[jsii.Number] = None,
|
|
29847
29890
|
) -> None:
|
|
29848
29891
|
"""Type checking stubs"""
|
|
29849
29892
|
pass
|