aws-cdk-lib 2.155.0__py3-none-any.whl → 2.157.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 +28 -24
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.155.0.jsii.tgz → aws-cdk-lib@2.157.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +10 -75
- aws_cdk/aws_amplify/__init__.py +106 -0
- aws_cdk/aws_apigatewayv2/__init__.py +81 -13
- aws_cdk/aws_appintegrations/__init__.py +14 -14
- aws_cdk/aws_applicationsignals/__init__.py +750 -1
- aws_cdk/aws_appsync/__init__.py +50 -18
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_backup/__init__.py +39 -0
- aws_cdk/aws_batch/__init__.py +41 -0
- aws_cdk/aws_bedrock/__init__.py +1528 -91
- aws_cdk/aws_chatbot/__init__.py +6 -6
- aws_cdk/aws_cloudformation/__init__.py +22 -22
- aws_cdk/aws_cloudfront/__init__.py +650 -57
- aws_cdk/aws_cloudfront/experimental/__init__.py +30 -3
- aws_cdk/aws_cloudfront_origins/__init__.py +2034 -91
- aws_cdk/aws_codebuild/__init__.py +1 -1
- aws_cdk/aws_datasync/__init__.py +40 -29
- aws_cdk/aws_docdb/__init__.py +78 -6
- aws_cdk/aws_ec2/__init__.py +397 -75
- aws_cdk/aws_ecs/__init__.py +271 -101
- aws_cdk/aws_ecs_patterns/__init__.py +129 -11
- aws_cdk/aws_eks/__init__.py +40 -4
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +26 -50
- aws_cdk/aws_entityresolution/__init__.py +117 -4
- aws_cdk/aws_events/__init__.py +40 -14
- aws_cdk/aws_events_targets/__init__.py +357 -0
- aws_cdk/aws_glue/__init__.py +0 -8
- aws_cdk/aws_groundstation/__init__.py +27 -16
- aws_cdk/aws_guardduty/__init__.py +26 -14
- aws_cdk/aws_iam/__init__.py +7 -8
- aws_cdk/aws_iotfleetwise/__init__.py +108 -0
- aws_cdk/aws_kms/__init__.py +53 -10
- aws_cdk/aws_lambda/__init__.py +147 -17
- aws_cdk/aws_lambda_nodejs/__init__.py +30 -3
- aws_cdk/aws_macie/__init__.py +4 -4
- aws_cdk/aws_medialive/__init__.py +348 -0
- aws_cdk/aws_mediapackagev2/__init__.py +38 -38
- aws_cdk/aws_neptune/__init__.py +14 -8
- aws_cdk/aws_opensearchservice/__init__.py +194 -0
- aws_cdk/aws_pcaconnectorscep/__init__.py +884 -0
- aws_cdk/aws_personalize/__init__.py +2 -2
- aws_cdk/aws_pipes/__init__.py +22 -22
- aws_cdk/aws_qbusiness/__init__.py +675 -6
- aws_cdk/aws_quicksight/__init__.py +3285 -0
- aws_cdk/aws_rds/__init__.py +24 -0
- aws_cdk/aws_s3/__init__.py +13 -14
- aws_cdk/aws_sagemaker/__init__.py +1167 -0
- aws_cdk/aws_secretsmanager/__init__.py +2 -3
- aws_cdk/aws_securityhub/__init__.py +108 -103
- aws_cdk/aws_ses/__init__.py +31 -0
- aws_cdk/aws_sns/__init__.py +19 -13
- aws_cdk/aws_ssm/__init__.py +10 -6
- aws_cdk/aws_ssmquicksetup/__init__.py +967 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +106 -45
- aws_cdk/aws_synthetics/__init__.py +13 -0
- aws_cdk/cx_api/__init__.py +16 -0
- aws_cdk/triggers/__init__.py +30 -3
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/RECORD +66 -64
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.155.0.dist-info → aws_cdk_lib-2.157.0.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py
CHANGED
|
@@ -2073,11 +2073,11 @@ class ArnComponents:
|
|
|
2073
2073
|
)
|
|
2074
2074
|
delegation_role = iam.Role.from_role_arn(self, "DelegationRole", delegation_role_arn)
|
|
2075
2075
|
|
|
2076
|
-
# create the record
|
|
2077
2076
|
route53.CrossAccountZoneDelegationRecord(self, "delegate",
|
|
2078
2077
|
delegated_zone=sub_zone,
|
|
2079
2078
|
parent_hosted_zone_name="someexample.com", # or you can use parentHostedZoneId
|
|
2080
|
-
delegation_role=delegation_role
|
|
2079
|
+
delegation_role=delegation_role,
|
|
2080
|
+
assume_role_region="us-east-1"
|
|
2081
2081
|
)
|
|
2082
2082
|
'''
|
|
2083
2083
|
if __debug__:
|
|
@@ -6734,7 +6734,7 @@ class CfnPublicTypeVersionProps:
|
|
|
6734
6734
|
|
|
6735
6735
|
:param arn: The Amazon Resource Number (ARN) of the extension. Conditional: You must specify ``Arn`` , or ``TypeName`` and ``Type`` .
|
|
6736
6736
|
:param log_delivery_bucket: The S3 bucket to which CloudFormation delivers the contract test execution logs. CloudFormation delivers the logs by the time contract testing has completed and the extension has been assigned a test type status of ``PASSED`` or ``FAILED`` . The user initiating the stack operation must be able to access items in the specified S3 bucket. Specifically, the user needs the following permissions: - GetObject - PutObject For more information, see `Actions, Resources, and Condition Keys for Amazon S3 <https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3.html>`_ in the *AWS Identity and Access Management User Guide* .
|
|
6737
|
-
:param public_version_number: The version number to assign to this version of the extension. Use the following format, and adhere to semantic versioning when assigning a version number to your extension: ``MAJOR.MINOR.PATCH`` For more information, see `Semantic Versioning 2.0.0 <https://docs.aws.amazon.com/https://semver.org/>`_ . If you don't specify a version number, CloudFormation increments the version number by one minor version release. You cannot specify a version number the first time you publish a type.
|
|
6737
|
+
:param public_version_number: The version number to assign to this version of the extension. Use the following format, and adhere to semantic versioning when assigning a version number to your extension: ``MAJOR.MINOR.PATCH`` For more information, see `Semantic Versioning 2.0.0 <https://docs.aws.amazon.com/https://semver.org/>`_ . If you don't specify a version number, CloudFormation increments the version number by one minor version release. You cannot specify a version number the first time you publish a type. CloudFormation automatically sets the first version number to be ``1.0.0`` .
|
|
6738
6738
|
:param type: The type of the extension to test. Conditional: You must specify ``Arn`` , or ``TypeName`` and ``Type`` .
|
|
6739
6739
|
:param type_name: The name of the extension to test. Conditional: You must specify ``Arn`` , or ``TypeName`` and ``Type`` .
|
|
6740
6740
|
|
|
@@ -6815,7 +6815,7 @@ class CfnPublicTypeVersionProps:
|
|
|
6815
6815
|
|
|
6816
6816
|
If you don't specify a version number, CloudFormation increments the version number by one minor version release.
|
|
6817
6817
|
|
|
6818
|
-
You cannot specify a version number the first time you publish a type.
|
|
6818
|
+
You cannot specify a version number the first time you publish a type. CloudFormation automatically sets the first version number to be ``1.0.0`` .
|
|
6819
6819
|
|
|
6820
6820
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publictypeversion.html#cfn-cloudformation-publictypeversion-publicversionnumber
|
|
6821
6821
|
'''
|
|
@@ -6874,7 +6874,7 @@ class CfnPublisherProps:
|
|
|
6874
6874
|
'''Properties for defining a ``CfnPublisher``.
|
|
6875
6875
|
|
|
6876
6876
|
:param accept_terms_and_conditions: Whether you accept the `Terms and Conditions <https://docs.aws.amazon.com/https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf>`_ for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to register to publish public extensions to the CloudFormation registry. The default is ``false`` .
|
|
6877
|
-
:param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *CloudFormation CLI User Guide* .
|
|
6877
|
+
:param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
|
|
6878
6878
|
|
|
6879
6879
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.html
|
|
6880
6880
|
:exampleMetadata: fixture=_generated
|
|
@@ -6918,7 +6918,7 @@ class CfnPublisherProps:
|
|
|
6918
6918
|
def connection_arn(self) -> typing.Optional[builtins.str]:
|
|
6919
6919
|
'''If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account.
|
|
6920
6920
|
|
|
6921
|
-
For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *CloudFormation CLI User Guide* .
|
|
6921
|
+
For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
|
|
6922
6922
|
|
|
6923
6923
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-publisher.html#cfn-cloudformation-publisher-connectionarn
|
|
6924
6924
|
'''
|
|
@@ -8090,9 +8090,9 @@ class CfnStackProps:
|
|
|
8090
8090
|
) -> None:
|
|
8091
8091
|
'''Properties for defining a ``CfnStack``.
|
|
8092
8092
|
|
|
8093
|
-
:param notification_arns: The Amazon
|
|
8093
|
+
: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).
|
|
8094
8094
|
: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. Conditional. 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.
|
|
8095
|
-
:param tags: Key-value pairs to associate with this stack.
|
|
8095
|
+
: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.
|
|
8096
8096
|
:param template_url: Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
8097
8097
|
: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.
|
|
8098
8098
|
|
|
@@ -8139,7 +8139,7 @@ class CfnStackProps:
|
|
|
8139
8139
|
|
|
8140
8140
|
@builtins.property
|
|
8141
8141
|
def notification_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
8142
|
-
'''The Amazon
|
|
8142
|
+
'''The Amazon SNS topic ARNs to publish stack related events.
|
|
8143
8143
|
|
|
8144
8144
|
You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).
|
|
8145
8145
|
|
|
@@ -8172,7 +8172,7 @@ class CfnStackProps:
|
|
|
8172
8172
|
def tags(self) -> typing.Optional[typing.List["CfnTag"]]:
|
|
8173
8173
|
'''Key-value pairs to associate with this stack.
|
|
8174
8174
|
|
|
8175
|
-
|
|
8175
|
+
CloudFormation also propagates these tags to the resources created in the stack. A maximum number of 50 tags can be specified.
|
|
8176
8176
|
|
|
8177
8177
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stack.html#cfn-cloudformation-stack-tags
|
|
8178
8178
|
'''
|
|
@@ -8272,7 +8272,7 @@ class CfnStackSetProps:
|
|
|
8272
8272
|
:param operation_preferences: The user-specified preferences for how AWS CloudFormation performs a stack set operation.
|
|
8273
8273
|
:param parameters: The input parameters for the stack set template.
|
|
8274
8274
|
:param stack_instances_group: A group of stack instances with parameters in some specific accounts and Regions.
|
|
8275
|
-
:param tags: Key-value pairs to associate with this stack.
|
|
8275
|
+
: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.
|
|
8276
8276
|
: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 containing dynamic references through ``TemplateUrl`` instead.
|
|
8277
8277
|
:param template_url: Location of file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. For more information, go to `Template Anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ in the AWS CloudFormation User Guide. Conditional: You must specify only one of the following parameters: ``TemplateBody`` , ``TemplateURL`` .
|
|
8278
8278
|
|
|
@@ -8558,9 +8558,9 @@ class CfnStackSetProps:
|
|
|
8558
8558
|
def tags(self) -> typing.Optional[typing.List["CfnTag"]]:
|
|
8559
8559
|
'''Key-value pairs to associate with this stack.
|
|
8560
8560
|
|
|
8561
|
-
|
|
8561
|
+
CloudFormation also propagates these tags to supported resources in the stack. You can specify a maximum number of 50 tags.
|
|
8562
8562
|
|
|
8563
|
-
If you don't specify this parameter,
|
|
8563
|
+
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.
|
|
8564
8564
|
|
|
8565
8565
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-stackset.html#cfn-cloudformation-stackset-tags
|
|
8566
8566
|
'''
|
|
@@ -28324,7 +28324,7 @@ class CfnModuleVersion(
|
|
|
28324
28324
|
def attr_schema(self) -> builtins.str:
|
|
28325
28325
|
'''The schema that defines the extension.
|
|
28326
28326
|
|
|
28327
|
-
For more information about extension schemas, see `Resource Provider Schema <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html>`_ in the *CloudFormation CLI User Guide* .
|
|
28327
|
+
For more information about extension schemas, see `Resource Provider Schema <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
|
|
28328
28328
|
|
|
28329
28329
|
:cloudformationAttribute: Schema
|
|
28330
28330
|
'''
|
|
@@ -28355,7 +28355,7 @@ class CfnModuleVersion(
|
|
|
28355
28355
|
|
|
28356
28356
|
Valid values include:
|
|
28357
28357
|
|
|
28358
|
-
- ``PRIVATE`` : The extension is only visible and usable within the account in which it is registered.
|
|
28358
|
+
- ``PRIVATE`` : The extension is only visible and usable within the account in which it is registered. CloudFormation marks any extensions you register as ``PRIVATE`` .
|
|
28359
28359
|
- ``PUBLIC`` : The extension is publicly visible and usable within any AWS account.
|
|
28360
28360
|
|
|
28361
28361
|
:cloudformationAttribute: Visibility
|
|
@@ -28450,7 +28450,7 @@ class CfnPublicTypeVersion(
|
|
|
28450
28450
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
28451
28451
|
:param arn: The Amazon Resource Number (ARN) of the extension. Conditional: You must specify ``Arn`` , or ``TypeName`` and ``Type`` .
|
|
28452
28452
|
:param log_delivery_bucket: The S3 bucket to which CloudFormation delivers the contract test execution logs. CloudFormation delivers the logs by the time contract testing has completed and the extension has been assigned a test type status of ``PASSED`` or ``FAILED`` . The user initiating the stack operation must be able to access items in the specified S3 bucket. Specifically, the user needs the following permissions: - GetObject - PutObject For more information, see `Actions, Resources, and Condition Keys for Amazon S3 <https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazons3.html>`_ in the *AWS Identity and Access Management User Guide* .
|
|
28453
|
-
:param public_version_number: The version number to assign to this version of the extension. Use the following format, and adhere to semantic versioning when assigning a version number to your extension: ``MAJOR.MINOR.PATCH`` For more information, see `Semantic Versioning 2.0.0 <https://docs.aws.amazon.com/https://semver.org/>`_ . If you don't specify a version number, CloudFormation increments the version number by one minor version release. You cannot specify a version number the first time you publish a type.
|
|
28453
|
+
:param public_version_number: The version number to assign to this version of the extension. Use the following format, and adhere to semantic versioning when assigning a version number to your extension: ``MAJOR.MINOR.PATCH`` For more information, see `Semantic Versioning 2.0.0 <https://docs.aws.amazon.com/https://semver.org/>`_ . If you don't specify a version number, CloudFormation increments the version number by one minor version release. You cannot specify a version number the first time you publish a type. CloudFormation automatically sets the first version number to be ``1.0.0`` .
|
|
28454
28454
|
:param type: The type of the extension to test. Conditional: You must specify ``Arn`` , or ``TypeName`` and ``Type`` .
|
|
28455
28455
|
:param type_name: The name of the extension to test. Conditional: You must specify ``Arn`` , or ``TypeName`` and ``Type`` .
|
|
28456
28456
|
'''
|
|
@@ -28640,7 +28640,7 @@ class CfnPublisher(
|
|
|
28640
28640
|
:param scope: Scope in which this resource is defined.
|
|
28641
28641
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
28642
28642
|
:param accept_terms_and_conditions: Whether you accept the `Terms and Conditions <https://docs.aws.amazon.com/https://cloudformation-registry-documents.s3.amazonaws.com/Terms_and_Conditions_for_AWS_CloudFormation_Registry_Publishers.pdf>`_ for publishing extensions in the CloudFormation registry. You must accept the terms and conditions in order to register to publish public extensions to the CloudFormation registry. The default is ``false`` .
|
|
28643
|
-
:param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *CloudFormation CLI User Guide* .
|
|
28643
|
+
:param connection_arn: If you are using a Bitbucket or GitHub account for identity verification, the Amazon Resource Name (ARN) for your connection to that account. For more information, see `Registering your account to publish CloudFormation extensions <https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-prereqs>`_ in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
|
|
28644
28644
|
'''
|
|
28645
28645
|
if __debug__:
|
|
28646
28646
|
type_hints = typing.get_type_hints(_typecheckingstub__5fe0cee8381373f35262956f781df87f6ffe5ce00d266fa1a0f22ce9b68aaac6)
|
|
@@ -29022,7 +29022,7 @@ class CfnResourceVersion(
|
|
|
29022
29022
|
def attr_provisioning_type(self) -> builtins.str:
|
|
29023
29023
|
'''For resource type extensions, the provisioning behavior of the resource type.
|
|
29024
29024
|
|
|
29025
|
-
|
|
29025
|
+
CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.
|
|
29026
29026
|
|
|
29027
29027
|
Valid values include:
|
|
29028
29028
|
|
|
@@ -29066,7 +29066,7 @@ class CfnResourceVersion(
|
|
|
29066
29066
|
|
|
29067
29067
|
Valid values include:
|
|
29068
29068
|
|
|
29069
|
-
- ``PRIVATE`` : The extension is only visible and usable within the account in which it is registered.
|
|
29069
|
+
- ``PRIVATE`` : The extension is only visible and usable within the account in which it is registered. CloudFormation marks any extensions you register as ``PRIVATE`` .
|
|
29070
29070
|
- ``PUBLIC`` : The extension is publicly visible and usable within any AWS account.
|
|
29071
29071
|
|
|
29072
29072
|
:cloudformationAttribute: Visibility
|
|
@@ -29290,9 +29290,9 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29290
29290
|
'''
|
|
29291
29291
|
:param scope: Scope in which this resource is defined.
|
|
29292
29292
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
29293
|
-
:param notification_arns: The Amazon
|
|
29293
|
+
: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).
|
|
29294
29294
|
: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. Conditional. 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.
|
|
29295
|
-
:param tags: Key-value pairs to associate with this stack.
|
|
29295
|
+
: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.
|
|
29296
29296
|
:param template_url: Location of file containing the template body. The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see `Template anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ . Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.
|
|
29297
29297
|
: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.
|
|
29298
29298
|
'''
|
|
@@ -29434,7 +29434,7 @@ class CfnStack(CfnResource, metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.CfnS
|
|
|
29434
29434
|
@builtins.property
|
|
29435
29435
|
@jsii.member(jsii_name="notificationArns")
|
|
29436
29436
|
def notification_arns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
29437
|
-
'''The Amazon
|
|
29437
|
+
'''The Amazon SNS topic ARNs to publish stack related events.'''
|
|
29438
29438
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "notificationArns"))
|
|
29439
29439
|
|
|
29440
29440
|
@notification_arns.setter
|
|
@@ -29723,7 +29723,7 @@ class CfnStackSet(
|
|
|
29723
29723
|
:param operation_preferences: The user-specified preferences for how AWS CloudFormation performs a stack set operation.
|
|
29724
29724
|
:param parameters: The input parameters for the stack set template.
|
|
29725
29725
|
:param stack_instances_group: A group of stack instances with parameters in some specific accounts and Regions.
|
|
29726
|
-
:param tags: Key-value pairs to associate with this stack.
|
|
29726
|
+
: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.
|
|
29727
29727
|
: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 containing dynamic references through ``TemplateUrl`` instead.
|
|
29728
29728
|
:param template_url: Location of file containing the template body. The URL must point to a template that's located in an Amazon S3 bucket or a Systems Manager document. For more information, go to `Template Anatomy <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html>`_ in the AWS CloudFormation User Guide. Conditional: You must specify only one of the following parameters: ``TemplateBody`` , ``TemplateURL`` .
|
|
29729
29729
|
'''
|
|
@@ -30652,7 +30652,7 @@ class CfnTypeActivation(
|
|
|
30652
30652
|
|
|
30653
30653
|
For more information, see `Using public extensions <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html>`_ in the *AWS CloudFormation User Guide* .
|
|
30654
30654
|
|
|
30655
|
-
Once you have activated a public third-party extension in your account and Region, use `SetTypeConfiguration <https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html>`_ to specify configuration properties for the extension. For more information, see `Configuring extensions at the account level <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-private.html#registry-set-configuration>`_ in the *CloudFormation User Guide* .
|
|
30655
|
+
Once you have activated a public third-party extension in your account and Region, use `SetTypeConfiguration <https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html>`_ to specify configuration properties for the extension. For more information, see `Configuring extensions at the account level <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-private.html#registry-set-configuration>`_ in the *AWS CloudFormation User Guide* .
|
|
30656
30656
|
|
|
30657
30657
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.html
|
|
30658
30658
|
:cloudformationResource: AWS::CloudFormation::TypeActivation
|
|
@@ -33931,6 +33931,7 @@ __all__ = [
|
|
|
33931
33931
|
"aws_panorama",
|
|
33932
33932
|
"aws_paymentcryptography",
|
|
33933
33933
|
"aws_pcaconnectorad",
|
|
33934
|
+
"aws_pcaconnectorscep",
|
|
33934
33935
|
"aws_personalize",
|
|
33935
33936
|
"aws_pinpoint",
|
|
33936
33937
|
"aws_pinpointemail",
|
|
@@ -33986,6 +33987,7 @@ __all__ = [
|
|
|
33986
33987
|
"aws_ssm",
|
|
33987
33988
|
"aws_ssmcontacts",
|
|
33988
33989
|
"aws_ssmincidents",
|
|
33990
|
+
"aws_ssmquicksetup",
|
|
33989
33991
|
"aws_sso",
|
|
33990
33992
|
"aws_stepfunctions",
|
|
33991
33993
|
"aws_stepfunctions_tasks",
|
|
@@ -34217,6 +34219,7 @@ from . import aws_osis
|
|
|
34217
34219
|
from . import aws_panorama
|
|
34218
34220
|
from . import aws_paymentcryptography
|
|
34219
34221
|
from . import aws_pcaconnectorad
|
|
34222
|
+
from . import aws_pcaconnectorscep
|
|
34220
34223
|
from . import aws_personalize
|
|
34221
34224
|
from . import aws_pinpoint
|
|
34222
34225
|
from . import aws_pinpointemail
|
|
@@ -34272,6 +34275,7 @@ from . import aws_sqs
|
|
|
34272
34275
|
from . import aws_ssm
|
|
34273
34276
|
from . import aws_ssmcontacts
|
|
34274
34277
|
from . import aws_ssmincidents
|
|
34278
|
+
from . import aws_ssmquicksetup
|
|
34275
34279
|
from . import aws_sso
|
|
34276
34280
|
from . import aws_stepfunctions
|
|
34277
34281
|
from . import aws_stepfunctions_tasks
|
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -20,7 +20,7 @@ import aws_cdk.cloud_assembly_schema._jsii
|
|
|
20
20
|
import constructs._jsii
|
|
21
21
|
|
|
22
22
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
23
|
-
"aws-cdk-lib", "2.
|
|
23
|
+
"aws-cdk-lib", "2.157.0", __name__[0:-6], "aws-cdk-lib@2.157.0.jsii.tgz"
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
__all__ = [
|
|
Binary file
|
aws_cdk/aws_acmpca/__init__.py
CHANGED
|
@@ -2297,7 +2297,7 @@ class CfnCertificateAuthority(
|
|
|
2297
2297
|
:param type: Type of your private CA.
|
|
2298
2298
|
:param csr_extensions: Specifies information to be added to the extension section of the certificate signing request (CSR).
|
|
2299
2299
|
:param key_storage_security_standard: Specifies a cryptographic key management compliance standard used for handling CA keys. Default: FIPS_140_2_LEVEL_3_OR_HIGHER .. epigraph:: Some AWS Regions do not support the default. When creating a CA in these Regions, you must provide ``FIPS_140_2_LEVEL_2_OR_HIGHER`` as the argument for ``KeyStorageSecurityStandard`` . Failure to do this results in an ``InvalidArgsException`` with the message, "A certificate authority cannot be created in this region with the specified security standard." For information about security standard support in various Regions, see `Storage and security compliance of AWS Private CA private keys <https://docs.aws.amazon.com/privateca/latest/userguide/data-protection.html#private-keys>`_ .
|
|
2300
|
-
:param revocation_configuration:
|
|
2300
|
+
:param revocation_configuration: Information about the Online Certificate Status Protocol (OCSP) configuration or certificate revocation list (CRL) created and maintained by your private CA.
|
|
2301
2301
|
:param tags: Key-value pairs that will be attached to the new private CA. You can associate up to 50 tags with a private CA. For information using tags with IAM to manage permissions, see `Controlling Access Using IAM Tags <https://docs.aws.amazon.com/IAM/latest/UserGuide/access_iam-tags.html>`_ .
|
|
2302
2302
|
:param usage_mode: Specifies whether the CA issues general-purpose certificates that typically require a revocation mechanism, or short-lived certificates that may optionally omit revocation because they expire quickly. Short-lived certificate validity is limited to seven days. The default value is GENERAL_PURPOSE.
|
|
2303
2303
|
'''
|
|
@@ -2474,7 +2474,7 @@ class CfnCertificateAuthority(
|
|
|
2474
2474
|
def revocation_configuration(
|
|
2475
2475
|
self,
|
|
2476
2476
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCertificateAuthority.RevocationConfigurationProperty"]]:
|
|
2477
|
-
'''
|
|
2477
|
+
'''Information about the Online Certificate Status Protocol (OCSP) configuration or certificate revocation list (CRL) created and maintained by your private CA.'''
|
|
2478
2478
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCertificateAuthority.RevocationConfigurationProperty"]], jsii.get(self, "revocationConfiguration"))
|
|
2479
2479
|
|
|
2480
2480
|
@revocation_configuration.setter
|
|
@@ -2714,10 +2714,7 @@ class CfnCertificateAuthority(
|
|
|
2714
2714
|
"enabled": "enabled",
|
|
2715
2715
|
"crl_distribution_point_extension_configuration": "crlDistributionPointExtensionConfiguration",
|
|
2716
2716
|
"custom_cname": "customCname",
|
|
2717
|
-
"custom_path": "customPath",
|
|
2718
2717
|
"expiration_in_days": "expirationInDays",
|
|
2719
|
-
"partitioning_enabled": "partitioningEnabled",
|
|
2720
|
-
"retain_expired_certificates": "retainExpiredCertificates",
|
|
2721
2718
|
"s3_bucket_name": "s3BucketName",
|
|
2722
2719
|
"s3_object_acl": "s3ObjectAcl",
|
|
2723
2720
|
},
|
|
@@ -2729,10 +2726,7 @@ class CfnCertificateAuthority(
|
|
|
2729
2726
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
2730
2727
|
crl_distribution_point_extension_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCertificateAuthority.CrlDistributionPointExtensionConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2731
2728
|
custom_cname: typing.Optional[builtins.str] = None,
|
|
2732
|
-
custom_path: typing.Optional[builtins.str] = None,
|
|
2733
2729
|
expiration_in_days: typing.Optional[jsii.Number] = None,
|
|
2734
|
-
partitioning_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2735
|
-
retain_expired_certificates: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2736
2730
|
s3_bucket_name: typing.Optional[builtins.str] = None,
|
|
2737
2731
|
s3_object_acl: typing.Optional[builtins.str] = None,
|
|
2738
2732
|
) -> None:
|
|
@@ -2773,10 +2767,7 @@ class CfnCertificateAuthority(
|
|
|
2773
2767
|
:param enabled: Boolean value that specifies whether certificate revocation lists (CRLs) are enabled. You can use this value to enable certificate revocation for a new CA when you call the ``CreateCertificateAuthority`` operation or for an existing CA when you call the ``UpdateCertificateAuthority`` operation.
|
|
2774
2768
|
:param crl_distribution_point_extension_configuration: Configures the default behavior of the CRL Distribution Point extension for certificates issued by your CA. If this field is not provided, then the CRL Distribution Point extension will be present and contain the default CRL URL.
|
|
2775
2769
|
:param custom_cname: Name inserted into the certificate *CRL Distribution Points* extension that enables the use of an alias for the CRL distribution point. Use this value if you don't want the name of your S3 bucket to be public. .. epigraph:: The content of a Canonical Name (CNAME) record must conform to `RFC2396 <https://docs.aws.amazon.com/https://www.ietf.org/rfc/rfc2396.txt>`_ restrictions on the use of special characters in URIs. Additionally, the value of the CNAME must not include a protocol prefix such as "http://" or "https://".
|
|
2776
|
-
:param custom_path:
|
|
2777
2770
|
:param expiration_in_days: Validity period of the CRL in days.
|
|
2778
|
-
:param partitioning_enabled:
|
|
2779
|
-
:param retain_expired_certificates:
|
|
2780
2771
|
:param s3_bucket_name: Name of the S3 bucket that contains the CRL. If you do not provide a value for the *CustomCname* argument, the name of your S3 bucket is placed into the *CRL Distribution Points* extension of the issued certificate. You can change the name of your bucket by calling the `UpdateCertificateAuthority <https://docs.aws.amazon.com/privateca/latest/APIReference/API_UpdateCertificateAuthority.html>`_ operation. You must specify a `bucket policy <https://docs.aws.amazon.com/privateca/latest/userguide/PcaCreateCa.html#s3-policies>`_ that allows AWS Private CA to write the CRL to your bucket. .. epigraph:: The ``S3BucketName`` parameter must conform to the `S3 bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html>`_ .
|
|
2781
2772
|
:param s3_object_acl: Determines whether the CRL will be publicly readable or privately held in the CRL Amazon S3 bucket. If you choose PUBLIC_READ, the CRL will be accessible over the public internet. If you choose BUCKET_OWNER_FULL_CONTROL, only the owner of the CRL S3 bucket can access the CRL, and your PKI clients may need an alternative method of access. If no value is specified, the default is PUBLIC_READ. *Note:* This default can cause CA creation to fail in some circumstances. If you have have enabled the Block Public Access (BPA) feature in your S3 account, then you must specify the value of this parameter as ``BUCKET_OWNER_FULL_CONTROL`` , and not doing so results in an error. If you have disabled BPA in S3, then you can specify either ``BUCKET_OWNER_FULL_CONTROL`` or ``PUBLIC_READ`` as the value. For more information, see `Blocking public access to the S3 bucket <https://docs.aws.amazon.com/privateca/latest/userguide/PcaCreateCa.html#s3-bpa>`_ .
|
|
2782
2773
|
|
|
@@ -2797,10 +2788,7 @@ class CfnCertificateAuthority(
|
|
|
2797
2788
|
omit_extension=False
|
|
2798
2789
|
),
|
|
2799
2790
|
custom_cname="customCname",
|
|
2800
|
-
custom_path="customPath",
|
|
2801
2791
|
expiration_in_days=123,
|
|
2802
|
-
partitioning_enabled=False,
|
|
2803
|
-
retain_expired_certificates=False,
|
|
2804
2792
|
s3_bucket_name="s3BucketName",
|
|
2805
2793
|
s3_object_acl="s3ObjectAcl"
|
|
2806
2794
|
)
|
|
@@ -2810,10 +2798,7 @@ class CfnCertificateAuthority(
|
|
|
2810
2798
|
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
2811
2799
|
check_type(argname="argument crl_distribution_point_extension_configuration", value=crl_distribution_point_extension_configuration, expected_type=type_hints["crl_distribution_point_extension_configuration"])
|
|
2812
2800
|
check_type(argname="argument custom_cname", value=custom_cname, expected_type=type_hints["custom_cname"])
|
|
2813
|
-
check_type(argname="argument custom_path", value=custom_path, expected_type=type_hints["custom_path"])
|
|
2814
2801
|
check_type(argname="argument expiration_in_days", value=expiration_in_days, expected_type=type_hints["expiration_in_days"])
|
|
2815
|
-
check_type(argname="argument partitioning_enabled", value=partitioning_enabled, expected_type=type_hints["partitioning_enabled"])
|
|
2816
|
-
check_type(argname="argument retain_expired_certificates", value=retain_expired_certificates, expected_type=type_hints["retain_expired_certificates"])
|
|
2817
2802
|
check_type(argname="argument s3_bucket_name", value=s3_bucket_name, expected_type=type_hints["s3_bucket_name"])
|
|
2818
2803
|
check_type(argname="argument s3_object_acl", value=s3_object_acl, expected_type=type_hints["s3_object_acl"])
|
|
2819
2804
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -2823,14 +2808,8 @@ class CfnCertificateAuthority(
|
|
|
2823
2808
|
self._values["crl_distribution_point_extension_configuration"] = crl_distribution_point_extension_configuration
|
|
2824
2809
|
if custom_cname is not None:
|
|
2825
2810
|
self._values["custom_cname"] = custom_cname
|
|
2826
|
-
if custom_path is not None:
|
|
2827
|
-
self._values["custom_path"] = custom_path
|
|
2828
2811
|
if expiration_in_days is not None:
|
|
2829
2812
|
self._values["expiration_in_days"] = expiration_in_days
|
|
2830
|
-
if partitioning_enabled is not None:
|
|
2831
|
-
self._values["partitioning_enabled"] = partitioning_enabled
|
|
2832
|
-
if retain_expired_certificates is not None:
|
|
2833
|
-
self._values["retain_expired_certificates"] = retain_expired_certificates
|
|
2834
2813
|
if s3_bucket_name is not None:
|
|
2835
2814
|
self._values["s3_bucket_name"] = s3_bucket_name
|
|
2836
2815
|
if s3_object_acl is not None:
|
|
@@ -2875,14 +2854,6 @@ class CfnCertificateAuthority(
|
|
|
2875
2854
|
result = self._values.get("custom_cname")
|
|
2876
2855
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2877
2856
|
|
|
2878
|
-
@builtins.property
|
|
2879
|
-
def custom_path(self) -> typing.Optional[builtins.str]:
|
|
2880
|
-
'''
|
|
2881
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-custompath
|
|
2882
|
-
'''
|
|
2883
|
-
result = self._values.get("custom_path")
|
|
2884
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
2885
|
-
|
|
2886
2857
|
@builtins.property
|
|
2887
2858
|
def expiration_in_days(self) -> typing.Optional[jsii.Number]:
|
|
2888
2859
|
'''Validity period of the CRL in days.
|
|
@@ -2892,26 +2863,6 @@ class CfnCertificateAuthority(
|
|
|
2892
2863
|
result = self._values.get("expiration_in_days")
|
|
2893
2864
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
2894
2865
|
|
|
2895
|
-
@builtins.property
|
|
2896
|
-
def partitioning_enabled(
|
|
2897
|
-
self,
|
|
2898
|
-
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2899
|
-
'''
|
|
2900
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-partitioningenabled
|
|
2901
|
-
'''
|
|
2902
|
-
result = self._values.get("partitioning_enabled")
|
|
2903
|
-
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2904
|
-
|
|
2905
|
-
@builtins.property
|
|
2906
|
-
def retain_expired_certificates(
|
|
2907
|
-
self,
|
|
2908
|
-
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2909
|
-
'''
|
|
2910
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-crlconfiguration.html#cfn-acmpca-certificateauthority-crlconfiguration-retainexpiredcertificates
|
|
2911
|
-
'''
|
|
2912
|
-
result = self._values.get("retain_expired_certificates")
|
|
2913
|
-
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2914
|
-
|
|
2915
2866
|
@builtins.property
|
|
2916
2867
|
def s3_bucket_name(self) -> typing.Optional[builtins.str]:
|
|
2917
2868
|
'''Name of the S3 bucket that contains the CRL.
|
|
@@ -3882,14 +3833,13 @@ class CfnCertificateAuthority(
|
|
|
3882
3833
|
) -> None:
|
|
3883
3834
|
'''Certificate revocation information used by the `CreateCertificateAuthority <https://docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html>`_ and `UpdateCertificateAuthority <https://docs.aws.amazon.com/privateca/latest/APIReference/API_UpdateCertificateAuthority.html>`_ actions. Your private certificate authority (CA) can configure Online Certificate Status Protocol (OCSP) support and/or maintain a certificate revocation list (CRL). OCSP returns validation information about certificates as requested by clients, and a CRL contains an updated list of certificates revoked by your CA. For more information, see `RevokeCertificate <https://docs.aws.amazon.com/privateca/latest/APIReference/API_RevokeCertificate.html>`_ in the *AWS Private CA API Reference* and `Setting up a certificate revocation method <https://docs.aws.amazon.com/privateca/latest/userguide/revocation-setup.html>`_ in the *AWS Private CA User Guide* .
|
|
3884
3835
|
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
The following requirements apply to revocation configurations.
|
|
3836
|
+
The following requirements and constraints apply to revocation configurations.
|
|
3888
3837
|
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3838
|
+
- A configuration disabling CRLs or OCSP must contain only the ``Enabled=False`` parameter, and will fail if other parameters such as ``CustomCname`` or ``ExpirationInDays`` are included.
|
|
3839
|
+
- In a CRL configuration, the ``S3BucketName`` parameter must conform to the `Amazon S3 bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html>`_ .
|
|
3840
|
+
- A configuration containing a custom Canonical Name (CNAME) parameter for CRLs or OCSP must conform to `RFC2396 <https://docs.aws.amazon.com/https://www.ietf.org/rfc/rfc2396.txt>`_ restrictions on the use of special characters in a CNAME.
|
|
3841
|
+
- In a CRL or OCSP configuration, the value of a CNAME parameter must not include a protocol prefix such as "http://" or "https://".
|
|
3842
|
+
- To revoke a certificate, delete the resource from your template, and call the AWS Private CA `RevokeCertificate <https://docs.aws.amazon.com/privateca/latest/APIReference/API_RevokeCertificate.html>`_ API and specify the resource's certificate authority ARN.
|
|
3893
3843
|
|
|
3894
3844
|
:param crl_configuration: Configuration of the certificate revocation list (CRL), if any, maintained by your private CA.
|
|
3895
3845
|
:param ocsp_configuration: Configuration of Online Certificate Status Protocol (OCSP) support, if any, maintained by your private CA.
|
|
@@ -3912,10 +3862,7 @@ class CfnCertificateAuthority(
|
|
|
3912
3862
|
omit_extension=False
|
|
3913
3863
|
),
|
|
3914
3864
|
custom_cname="customCname",
|
|
3915
|
-
custom_path="customPath",
|
|
3916
3865
|
expiration_in_days=123,
|
|
3917
|
-
partitioning_enabled=False,
|
|
3918
|
-
retain_expired_certificates=False,
|
|
3919
3866
|
s3_bucket_name="s3BucketName",
|
|
3920
3867
|
s3_object_acl="s3ObjectAcl"
|
|
3921
3868
|
),
|
|
@@ -4569,7 +4516,7 @@ class CfnCertificateAuthorityProps:
|
|
|
4569
4516
|
:param type: Type of your private CA.
|
|
4570
4517
|
:param csr_extensions: Specifies information to be added to the extension section of the certificate signing request (CSR).
|
|
4571
4518
|
:param key_storage_security_standard: Specifies a cryptographic key management compliance standard used for handling CA keys. Default: FIPS_140_2_LEVEL_3_OR_HIGHER .. epigraph:: Some AWS Regions do not support the default. When creating a CA in these Regions, you must provide ``FIPS_140_2_LEVEL_2_OR_HIGHER`` as the argument for ``KeyStorageSecurityStandard`` . Failure to do this results in an ``InvalidArgsException`` with the message, "A certificate authority cannot be created in this region with the specified security standard." For information about security standard support in various Regions, see `Storage and security compliance of AWS Private CA private keys <https://docs.aws.amazon.com/privateca/latest/userguide/data-protection.html#private-keys>`_ .
|
|
4572
|
-
:param revocation_configuration:
|
|
4519
|
+
:param revocation_configuration: Information about the Online Certificate Status Protocol (OCSP) configuration or certificate revocation list (CRL) created and maintained by your private CA.
|
|
4573
4520
|
:param tags: Key-value pairs that will be attached to the new private CA. You can associate up to 50 tags with a private CA. For information using tags with IAM to manage permissions, see `Controlling Access Using IAM Tags <https://docs.aws.amazon.com/IAM/latest/UserGuide/access_iam-tags.html>`_ .
|
|
4574
4521
|
:param usage_mode: Specifies whether the CA issues general-purpose certificates that typically require a revocation mechanism, or short-lived certificates that may optionally omit revocation because they expire quickly. Short-lived certificate validity is limited to seven days. The default value is GENERAL_PURPOSE.
|
|
4575
4522
|
|
|
@@ -4705,16 +4652,7 @@ class CfnCertificateAuthorityProps:
|
|
|
4705
4652
|
def revocation_configuration(
|
|
4706
4653
|
self,
|
|
4707
4654
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCertificateAuthority.RevocationConfigurationProperty]]:
|
|
4708
|
-
'''
|
|
4709
|
-
|
|
4710
|
-
.. epigraph::
|
|
4711
|
-
|
|
4712
|
-
The following requirements apply to revocation configurations.
|
|
4713
|
-
|
|
4714
|
-
- A configuration disabling CRLs or OCSP must contain only the ``Enabled=False`` parameter, and will fail if other parameters such as ``CustomCname`` or ``ExpirationInDays`` are included.
|
|
4715
|
-
- In a CRL configuration, the ``S3BucketName`` parameter must conform to the `Amazon S3 bucket naming rules <https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html>`_ .
|
|
4716
|
-
- A configuration containing a custom Canonical Name (CNAME) parameter for CRLs or OCSP must conform to `RFC2396 <https://docs.aws.amazon.com/https://www.ietf.org/rfc/rfc2396.txt>`_ restrictions on the use of special characters in a CNAME.
|
|
4717
|
-
- In a CRL or OCSP configuration, the value of a CNAME parameter must not include a protocol prefix such as "http://" or "https://".
|
|
4655
|
+
'''Information about the Online Certificate Status Protocol (OCSP) configuration or certificate revocation list (CRL) created and maintained by your private CA.
|
|
4718
4656
|
|
|
4719
4657
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-certificateauthority.html#cfn-acmpca-certificateauthority-revocationconfiguration
|
|
4720
4658
|
'''
|
|
@@ -5672,10 +5610,7 @@ def _typecheckingstub__de72782a3b3117c1f101c2c6c2fad457863e581a5bdcd67a1280a825d
|
|
|
5672
5610
|
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
5673
5611
|
crl_distribution_point_extension_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCertificateAuthority.CrlDistributionPointExtensionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5674
5612
|
custom_cname: typing.Optional[builtins.str] = None,
|
|
5675
|
-
custom_path: typing.Optional[builtins.str] = None,
|
|
5676
5613
|
expiration_in_days: typing.Optional[jsii.Number] = None,
|
|
5677
|
-
partitioning_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5678
|
-
retain_expired_certificates: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5679
5614
|
s3_bucket_name: typing.Optional[builtins.str] = None,
|
|
5680
5615
|
s3_object_acl: typing.Optional[builtins.str] = None,
|
|
5681
5616
|
) -> None:
|