aws-cdk-lib 2.215.0__py3-none-any.whl → 2.217.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 +90 -58
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.215.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +32 -21
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +162 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +91 -10
- aws_cdk/aws_cloudfront_origins/__init__.py +422 -47
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecr/__init__.py +4 -0
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +275 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_events/__init__.py +187 -0
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kinesisanalytics/__init__.py +315 -125
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +62 -8
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_route53/__init__.py +5926 -4376
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +669 -81
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +64 -62
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
|
@@ -871,7 +871,7 @@ class CfnCertificateProps:
|
|
|
871
871
|
:param domain_name: The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, ``*.example.com`` protects ``www.example.com`` , ``site.example.com`` , and ``images.example.com.``.
|
|
872
872
|
:param certificate_authority_arn: The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. If you do not provide an ARN and you are trying to request a private certificate, ACM will attempt to issue a public certificate. For more information about private CAs, see the `AWS Private Certificate Authority <https://docs.aws.amazon.com/privateca/latest/userguide/PcaWelcome.html>`_ user guide. The ARN must have the following form: ``arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012``
|
|
873
873
|
:param certificate_export: You can opt out of allowing export of your certificate by specifying the ``DISABLED`` option. Allow export of your certificate by specifying the ``ENABLED`` option. If you do not specify an export preference in a new CloudFormation template, it is the same as explicitly denying export of your certificate.
|
|
874
|
-
:param certificate_transparency_logging_preference: You can opt out of certificate transparency logging by specifying the ``DISABLED`` option. Opt in by specifying ``ENABLED`` . If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference. Changing the certificate transparency logging preference will update the existing resource by calling ``UpdateCertificateOptions`` on the certificate. This action will not create a new resource.
|
|
874
|
+
:param certificate_transparency_logging_preference: You can opt out of certificate transparency logging by specifying the ``DISABLED`` option. Opt in by specifying ``ENABLED`` . This setting doces not apply to private certificates. If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference. Changing the certificate transparency logging preference will update the existing resource by calling ``UpdateCertificateOptions`` on the certificate. This action will not create a new resource.
|
|
875
875
|
:param domain_validation_options: Domain information that domain name registrars use to verify your identity. .. epigraph:: In order for a AWS::CertificateManager::Certificate to be provisioned and validated in CloudFormation automatically, the ``DomainName`` property needs to be identical to one of the ``DomainName`` property supplied in DomainValidationOptions, if the ValidationMethod is **DNS**. Failing to keep them like-for-like will result in failure to create the domain validation records in Route53.
|
|
876
876
|
:param key_algorithm: Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. RSA is the default key algorithm for ACM certificates. Elliptic Curve Digital Signature Algorithm (ECDSA) keys are smaller, offering security comparable to RSA keys but with greater computing efficiency. However, ECDSA is not supported by all network clients. Some AWS services may require RSA keys, or only support ECDSA keys of a particular size, while others allow the use of either RSA and ECDSA keys to ensure that compatibility is not broken. Check the requirements for the AWS service where you plan to deploy your certificate. For more information about selecting an algorithm, see `Key algorithms <https://docs.aws.amazon.com/acm/latest/userguide/acm-certificate-characteristics.html#algorithms-term>`_ . .. epigraph:: Algorithms supported for an ACM certificate request include: - ``RSA_2048`` - ``EC_prime256v1`` - ``EC_secp384r1`` Other listed algorithms are for imported certificates only. > When you request a private PKI certificate signed by a CA from AWS Private CA, the specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key. Default: RSA_2048
|
|
877
877
|
:param subject_alternative_names: Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. For example, you can add www.example.net to a certificate for which the ``DomainName`` field is www.example.com if users can reach your site by using either name.
|
|
@@ -981,7 +981,9 @@ class CfnCertificateProps:
|
|
|
981
981
|
def certificate_transparency_logging_preference(
|
|
982
982
|
self,
|
|
983
983
|
) -> typing.Optional[builtins.str]:
|
|
984
|
-
'''You can opt out of certificate transparency logging by specifying the ``DISABLED`` option.
|
|
984
|
+
'''You can opt out of certificate transparency logging by specifying the ``DISABLED`` option.
|
|
985
|
+
|
|
986
|
+
Opt in by specifying ``ENABLED`` . This setting doces not apply to private certificates.
|
|
985
987
|
|
|
986
988
|
If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference.
|
|
987
989
|
|
|
@@ -2274,9 +2276,9 @@ class CfnCertificate(
|
|
|
2274
2276
|
metaclass=jsii.JSIIMeta,
|
|
2275
2277
|
jsii_type="aws-cdk-lib.aws_certificatemanager.CfnCertificate",
|
|
2276
2278
|
):
|
|
2277
|
-
'''The ``AWS::CertificateManager::Certificate`` resource requests an
|
|
2279
|
+
'''The ``AWS::CertificateManager::Certificate`` resource requests an Certificate Manager ( ACM ) certificate that you can use to enable secure connections.
|
|
2278
2280
|
|
|
2279
|
-
For example, you can deploy an ACM certificate to an Elastic Load Balancer to enable HTTPS support. For more information, see `RequestCertificate <https://docs.aws.amazon.com/acm/latest/APIReference/API_RequestCertificate.html>`_ in the
|
|
2281
|
+
For example, you can deploy an ACM certificate to an Elastic Load Balancer to enable HTTPS support. For more information, see `RequestCertificate <https://docs.aws.amazon.com/acm/latest/APIReference/API_RequestCertificate.html>`_ in the Certificate Manager API Reference.
|
|
2280
2282
|
.. epigraph::
|
|
2281
2283
|
|
|
2282
2284
|
When you use the ``AWS::CertificateManager::Certificate`` resource in a CloudFormation stack, domain validation is handled automatically if all three of the following are true: The certificate domain is hosted in Amazon Route 53, the domain resides in your AWS account , and you are using DNS validation.
|
|
@@ -2338,7 +2340,7 @@ class CfnCertificate(
|
|
|
2338
2340
|
:param domain_name: The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, ``*.example.com`` protects ``www.example.com`` , ``site.example.com`` , and ``images.example.com.``.
|
|
2339
2341
|
:param certificate_authority_arn: The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. If you do not provide an ARN and you are trying to request a private certificate, ACM will attempt to issue a public certificate. For more information about private CAs, see the `AWS Private Certificate Authority <https://docs.aws.amazon.com/privateca/latest/userguide/PcaWelcome.html>`_ user guide. The ARN must have the following form: ``arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012``
|
|
2340
2342
|
:param certificate_export: You can opt out of allowing export of your certificate by specifying the ``DISABLED`` option. Allow export of your certificate by specifying the ``ENABLED`` option. If you do not specify an export preference in a new CloudFormation template, it is the same as explicitly denying export of your certificate.
|
|
2341
|
-
:param certificate_transparency_logging_preference: You can opt out of certificate transparency logging by specifying the ``DISABLED`` option. Opt in by specifying ``ENABLED`` . If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference. Changing the certificate transparency logging preference will update the existing resource by calling ``UpdateCertificateOptions`` on the certificate. This action will not create a new resource.
|
|
2343
|
+
:param certificate_transparency_logging_preference: You can opt out of certificate transparency logging by specifying the ``DISABLED`` option. Opt in by specifying ``ENABLED`` . This setting doces not apply to private certificates. If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference. Changing the certificate transparency logging preference will update the existing resource by calling ``UpdateCertificateOptions`` on the certificate. This action will not create a new resource.
|
|
2342
2344
|
:param domain_validation_options: Domain information that domain name registrars use to verify your identity. .. epigraph:: In order for a AWS::CertificateManager::Certificate to be provisioned and validated in CloudFormation automatically, the ``DomainName`` property needs to be identical to one of the ``DomainName`` property supplied in DomainValidationOptions, if the ValidationMethod is **DNS**. Failing to keep them like-for-like will result in failure to create the domain validation records in Route53.
|
|
2343
2345
|
:param key_algorithm: Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. RSA is the default key algorithm for ACM certificates. Elliptic Curve Digital Signature Algorithm (ECDSA) keys are smaller, offering security comparable to RSA keys but with greater computing efficiency. However, ECDSA is not supported by all network clients. Some AWS services may require RSA keys, or only support ECDSA keys of a particular size, while others allow the use of either RSA and ECDSA keys to ensure that compatibility is not broken. Check the requirements for the AWS service where you plan to deploy your certificate. For more information about selecting an algorithm, see `Key algorithms <https://docs.aws.amazon.com/acm/latest/userguide/acm-certificate-characteristics.html#algorithms-term>`_ . .. epigraph:: Algorithms supported for an ACM certificate request include: - ``RSA_2048`` - ``EC_prime256v1`` - ``EC_secp384r1`` Other listed algorithms are for imported certificates only. > When you request a private PKI certificate signed by a CA from AWS Private CA, the specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key. Default: RSA_2048
|
|
2344
2346
|
:param subject_alternative_names: Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. For example, you can add www.example.net to a certificate for which the ``DomainName`` field is www.example.com if users can reach your site by using either name.
|
|
@@ -2462,10 +2464,7 @@ class CfnCertificate(
|
|
|
2462
2464
|
def certificate_transparency_logging_preference(
|
|
2463
2465
|
self,
|
|
2464
2466
|
) -> typing.Optional[builtins.str]:
|
|
2465
|
-
'''You can opt out of certificate transparency logging by specifying the ``DISABLED`` option.
|
|
2466
|
-
|
|
2467
|
-
Opt in by specifying ``ENABLED`` .
|
|
2468
|
-
'''
|
|
2467
|
+
'''You can opt out of certificate transparency logging by specifying the ``DISABLED`` option.'''
|
|
2469
2468
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "certificateTransparencyLoggingPreference"))
|
|
2470
2469
|
|
|
2471
2470
|
@certificate_transparency_logging_preference.setter
|
|
@@ -2568,7 +2567,7 @@ class CfnCertificate(
|
|
|
2568
2567
|
hosted_zone_id: typing.Optional[builtins.str] = None,
|
|
2569
2568
|
validation_domain: typing.Optional[builtins.str] = None,
|
|
2570
2569
|
) -> None:
|
|
2571
|
-
'''``DomainValidationOption`` is a property of the `AWS::CertificateManager::Certificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html>`_ resource that specifies the
|
|
2570
|
+
'''``DomainValidationOption`` is a property of the `AWS::CertificateManager::Certificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html>`_ resource that specifies the Certificate Manager ( ACM ) certificate domain to validate. Depending on the chosen validation method, ACM checks the domain's DNS record for a validation CNAME, or it attempts to send a validation email message to the domain owner.
|
|
2572
2571
|
|
|
2573
2572
|
:param domain_name: A fully qualified domain name (FQDN) in the certificate request.
|
|
2574
2573
|
:param hosted_zone_id: The ``HostedZoneId`` option, which is available if you are using Route 53 as your domain registrar, causes ACM to add your CNAME to the domain record. Your list of ``DomainValidationOptions`` must contain one and only one of the domain-validation options, and the ``HostedZoneId`` can be used only when ``DNS`` is specified as your validation method. Use the Route 53 ``ListHostedZones`` API to discover IDs for available hosted zones. This option is required for publicly trusted certificates. .. epigraph:: The ``ListHostedZones`` API returns IDs in the format "/hostedzone/Z111111QQQQQQQ", but CloudFormation requires the IDs to be in the format "Z111111QQQQQQQ". When you change your ``DomainValidationOptions`` , a new resource is created.
|
|
@@ -170,6 +170,7 @@ class AnalysisTemplateReference:
|
|
|
170
170
|
"source": "source",
|
|
171
171
|
"analysis_parameters": "analysisParameters",
|
|
172
172
|
"description": "description",
|
|
173
|
+
"error_message_configuration": "errorMessageConfiguration",
|
|
173
174
|
"schema": "schema",
|
|
174
175
|
"source_metadata": "sourceMetadata",
|
|
175
176
|
"tags": "tags",
|
|
@@ -185,6 +186,7 @@ class CfnAnalysisTemplateProps:
|
|
|
185
186
|
source: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSourceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
186
187
|
analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
187
188
|
description: typing.Optional[builtins.str] = None,
|
|
189
|
+
error_message_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.ErrorMessageConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
188
190
|
schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSchemaProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
189
191
|
source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSourceMetadataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
190
192
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -197,6 +199,7 @@ class CfnAnalysisTemplateProps:
|
|
|
197
199
|
:param source: The source of the analysis template.
|
|
198
200
|
:param analysis_parameters: The parameters of the analysis template.
|
|
199
201
|
:param description: The description of the analysis template.
|
|
202
|
+
:param error_message_configuration: The configuration that specifies the level of detail in error messages returned by analyses using this template. When set to ``DETAILED`` , error messages include more information to help troubleshoot issues with PySpark jobs. Detailed error messages may expose underlying data, including sensitive information. Recommended for faster troubleshooting in development and testing environments.
|
|
200
203
|
:param schema: The entire schema object.
|
|
201
204
|
:param source_metadata: The source metadata for the analysis template.
|
|
202
205
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -244,6 +247,9 @@ class CfnAnalysisTemplateProps:
|
|
|
244
247
|
default_value="defaultValue"
|
|
245
248
|
)],
|
|
246
249
|
description="description",
|
|
250
|
+
error_message_configuration=cleanrooms.CfnAnalysisTemplate.ErrorMessageConfigurationProperty(
|
|
251
|
+
type="type"
|
|
252
|
+
),
|
|
247
253
|
schema=cleanrooms.CfnAnalysisTemplate.AnalysisSchemaProperty(
|
|
248
254
|
referenced_tables=["referencedTables"]
|
|
249
255
|
),
|
|
@@ -273,6 +279,7 @@ class CfnAnalysisTemplateProps:
|
|
|
273
279
|
check_type(argname="argument source", value=source, expected_type=type_hints["source"])
|
|
274
280
|
check_type(argname="argument analysis_parameters", value=analysis_parameters, expected_type=type_hints["analysis_parameters"])
|
|
275
281
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
282
|
+
check_type(argname="argument error_message_configuration", value=error_message_configuration, expected_type=type_hints["error_message_configuration"])
|
|
276
283
|
check_type(argname="argument schema", value=schema, expected_type=type_hints["schema"])
|
|
277
284
|
check_type(argname="argument source_metadata", value=source_metadata, expected_type=type_hints["source_metadata"])
|
|
278
285
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -286,6 +293,8 @@ class CfnAnalysisTemplateProps:
|
|
|
286
293
|
self._values["analysis_parameters"] = analysis_parameters
|
|
287
294
|
if description is not None:
|
|
288
295
|
self._values["description"] = description
|
|
296
|
+
if error_message_configuration is not None:
|
|
297
|
+
self._values["error_message_configuration"] = error_message_configuration
|
|
289
298
|
if schema is not None:
|
|
290
299
|
self._values["schema"] = schema
|
|
291
300
|
if source_metadata is not None:
|
|
@@ -355,6 +364,19 @@ class CfnAnalysisTemplateProps:
|
|
|
355
364
|
result = self._values.get("description")
|
|
356
365
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
357
366
|
|
|
367
|
+
@builtins.property
|
|
368
|
+
def error_message_configuration(
|
|
369
|
+
self,
|
|
370
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.ErrorMessageConfigurationProperty"]]:
|
|
371
|
+
'''The configuration that specifies the level of detail in error messages returned by analyses using this template.
|
|
372
|
+
|
|
373
|
+
When set to ``DETAILED`` , error messages include more information to help troubleshoot issues with PySpark jobs. Detailed error messages may expose underlying data, including sensitive information. Recommended for faster troubleshooting in development and testing environments.
|
|
374
|
+
|
|
375
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html#cfn-cleanrooms-analysistemplate-errormessageconfiguration
|
|
376
|
+
'''
|
|
377
|
+
result = self._values.get("error_message_configuration")
|
|
378
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.ErrorMessageConfigurationProperty"]], result)
|
|
379
|
+
|
|
358
380
|
@builtins.property
|
|
359
381
|
def schema(
|
|
360
382
|
self,
|
|
@@ -409,6 +431,7 @@ class CfnAnalysisTemplateProps:
|
|
|
409
431
|
"name": "name",
|
|
410
432
|
"query_log_status": "queryLogStatus",
|
|
411
433
|
"analytics_engine": "analyticsEngine",
|
|
434
|
+
"auto_approved_change_types": "autoApprovedChangeTypes",
|
|
412
435
|
"creator_member_abilities": "creatorMemberAbilities",
|
|
413
436
|
"creator_ml_member_abilities": "creatorMlMemberAbilities",
|
|
414
437
|
"creator_payment_configuration": "creatorPaymentConfiguration",
|
|
@@ -427,6 +450,7 @@ class CfnCollaborationProps:
|
|
|
427
450
|
name: builtins.str,
|
|
428
451
|
query_log_status: builtins.str,
|
|
429
452
|
analytics_engine: typing.Optional[builtins.str] = None,
|
|
453
|
+
auto_approved_change_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
430
454
|
creator_member_abilities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
431
455
|
creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.MLMemberAbilitiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
432
456
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.PaymentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -442,6 +466,7 @@ class CfnCollaborationProps:
|
|
|
442
466
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
443
467
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
444
468
|
:param analytics_engine: The analytics engine for the collaboration. .. epigraph:: After July 16, 2025, the ``CLEAN_ROOMS_SQL`` parameter will no longer be available.
|
|
469
|
+
:param auto_approved_change_types: The types of change requests that are automatically approved for this collaboration.
|
|
445
470
|
:param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
|
|
446
471
|
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
447
472
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
@@ -467,6 +492,7 @@ class CfnCollaborationProps:
|
|
|
467
492
|
|
|
468
493
|
# the properties below are optional
|
|
469
494
|
analytics_engine="analyticsEngine",
|
|
495
|
+
auto_approved_change_types=["autoApprovedChangeTypes"],
|
|
470
496
|
creator_member_abilities=["creatorMemberAbilities"],
|
|
471
497
|
creator_ml_member_abilities=cleanrooms.CfnCollaboration.MLMemberAbilitiesProperty(
|
|
472
498
|
custom_ml_member_abilities=["customMlMemberAbilities"]
|
|
@@ -537,6 +563,7 @@ class CfnCollaborationProps:
|
|
|
537
563
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
538
564
|
check_type(argname="argument query_log_status", value=query_log_status, expected_type=type_hints["query_log_status"])
|
|
539
565
|
check_type(argname="argument analytics_engine", value=analytics_engine, expected_type=type_hints["analytics_engine"])
|
|
566
|
+
check_type(argname="argument auto_approved_change_types", value=auto_approved_change_types, expected_type=type_hints["auto_approved_change_types"])
|
|
540
567
|
check_type(argname="argument creator_member_abilities", value=creator_member_abilities, expected_type=type_hints["creator_member_abilities"])
|
|
541
568
|
check_type(argname="argument creator_ml_member_abilities", value=creator_ml_member_abilities, expected_type=type_hints["creator_ml_member_abilities"])
|
|
542
569
|
check_type(argname="argument creator_payment_configuration", value=creator_payment_configuration, expected_type=type_hints["creator_payment_configuration"])
|
|
@@ -552,6 +579,8 @@ class CfnCollaborationProps:
|
|
|
552
579
|
}
|
|
553
580
|
if analytics_engine is not None:
|
|
554
581
|
self._values["analytics_engine"] = analytics_engine
|
|
582
|
+
if auto_approved_change_types is not None:
|
|
583
|
+
self._values["auto_approved_change_types"] = auto_approved_change_types
|
|
555
584
|
if creator_member_abilities is not None:
|
|
556
585
|
self._values["creator_member_abilities"] = creator_member_abilities
|
|
557
586
|
if creator_ml_member_abilities is not None:
|
|
@@ -624,6 +653,15 @@ class CfnCollaborationProps:
|
|
|
624
653
|
result = self._values.get("analytics_engine")
|
|
625
654
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
626
655
|
|
|
656
|
+
@builtins.property
|
|
657
|
+
def auto_approved_change_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
658
|
+
'''The types of change requests that are automatically approved for this collaboration.
|
|
659
|
+
|
|
660
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-autoapprovedchangetypes
|
|
661
|
+
'''
|
|
662
|
+
result = self._values.get("auto_approved_change_types")
|
|
663
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
664
|
+
|
|
627
665
|
@builtins.property
|
|
628
666
|
def creator_member_abilities(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
629
667
|
'''The abilities granted to the collaboration creator.
|
|
@@ -2730,6 +2768,9 @@ class CfnAnalysisTemplate(
|
|
|
2730
2768
|
default_value="defaultValue"
|
|
2731
2769
|
)],
|
|
2732
2770
|
description="description",
|
|
2771
|
+
error_message_configuration=cleanrooms.CfnAnalysisTemplate.ErrorMessageConfigurationProperty(
|
|
2772
|
+
type="type"
|
|
2773
|
+
),
|
|
2733
2774
|
schema=cleanrooms.CfnAnalysisTemplate.AnalysisSchemaProperty(
|
|
2734
2775
|
referenced_tables=["referencedTables"]
|
|
2735
2776
|
),
|
|
@@ -2763,6 +2804,7 @@ class CfnAnalysisTemplate(
|
|
|
2763
2804
|
source: typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSourceProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
2764
2805
|
analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2765
2806
|
description: typing.Optional[builtins.str] = None,
|
|
2807
|
+
error_message_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.ErrorMessageConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2766
2808
|
schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSchemaProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2767
2809
|
source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnAnalysisTemplate.AnalysisSourceMetadataProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2768
2810
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2776,6 +2818,7 @@ class CfnAnalysisTemplate(
|
|
|
2776
2818
|
:param source: The source of the analysis template.
|
|
2777
2819
|
:param analysis_parameters: The parameters of the analysis template.
|
|
2778
2820
|
:param description: The description of the analysis template.
|
|
2821
|
+
:param error_message_configuration: The configuration that specifies the level of detail in error messages returned by analyses using this template. When set to ``DETAILED`` , error messages include more information to help troubleshoot issues with PySpark jobs. Detailed error messages may expose underlying data, including sensitive information. Recommended for faster troubleshooting in development and testing environments.
|
|
2779
2822
|
:param schema: The entire schema object.
|
|
2780
2823
|
:param source_metadata: The source metadata for the analysis template.
|
|
2781
2824
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -2791,6 +2834,7 @@ class CfnAnalysisTemplate(
|
|
|
2791
2834
|
source=source,
|
|
2792
2835
|
analysis_parameters=analysis_parameters,
|
|
2793
2836
|
description=description,
|
|
2837
|
+
error_message_configuration=error_message_configuration,
|
|
2794
2838
|
schema=schema,
|
|
2795
2839
|
source_metadata=source_metadata,
|
|
2796
2840
|
tags=tags,
|
|
@@ -3004,6 +3048,24 @@ class CfnAnalysisTemplate(
|
|
|
3004
3048
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3005
3049
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
3006
3050
|
|
|
3051
|
+
@builtins.property
|
|
3052
|
+
@jsii.member(jsii_name="errorMessageConfiguration")
|
|
3053
|
+
def error_message_configuration(
|
|
3054
|
+
self,
|
|
3055
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.ErrorMessageConfigurationProperty"]]:
|
|
3056
|
+
'''The configuration that specifies the level of detail in error messages returned by analyses using this template.'''
|
|
3057
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.ErrorMessageConfigurationProperty"]], jsii.get(self, "errorMessageConfiguration"))
|
|
3058
|
+
|
|
3059
|
+
@error_message_configuration.setter
|
|
3060
|
+
def error_message_configuration(
|
|
3061
|
+
self,
|
|
3062
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAnalysisTemplate.ErrorMessageConfigurationProperty"]],
|
|
3063
|
+
) -> None:
|
|
3064
|
+
if __debug__:
|
|
3065
|
+
type_hints = typing.get_type_hints(_typecheckingstub__34831cf7179b15aa74fb46a0ab1a549fbfe4b6acc73cf2a5eabf79947604e497)
|
|
3066
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3067
|
+
jsii.set(self, "errorMessageConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
3068
|
+
|
|
3007
3069
|
@builtins.property
|
|
3008
3070
|
@jsii.member(jsii_name="schema")
|
|
3009
3071
|
def schema(
|
|
@@ -3605,6 +3667,64 @@ class CfnAnalysisTemplate(
|
|
|
3605
3667
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3606
3668
|
)
|
|
3607
3669
|
|
|
3670
|
+
@jsii.data_type(
|
|
3671
|
+
jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.ErrorMessageConfigurationProperty",
|
|
3672
|
+
jsii_struct_bases=[],
|
|
3673
|
+
name_mapping={"type": "type"},
|
|
3674
|
+
)
|
|
3675
|
+
class ErrorMessageConfigurationProperty:
|
|
3676
|
+
def __init__(self, *, type: builtins.str) -> None:
|
|
3677
|
+
'''A structure that defines the level of detail included in error messages returned by PySpark jobs.
|
|
3678
|
+
|
|
3679
|
+
This configuration allows you to control the verbosity of error messages to help with troubleshooting PySpark jobs while maintaining appropriate security controls.
|
|
3680
|
+
|
|
3681
|
+
:param type: The level of detail for error messages returned by the PySpark job. When set to DETAILED, error messages include more information to help troubleshoot issues with your PySpark job. Because this setting may expose sensitive data, it is recommended for development and testing environments.
|
|
3682
|
+
|
|
3683
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html
|
|
3684
|
+
:exampleMetadata: fixture=_generated
|
|
3685
|
+
|
|
3686
|
+
Example::
|
|
3687
|
+
|
|
3688
|
+
# The code below shows an example of how to instantiate this type.
|
|
3689
|
+
# The values are placeholders you should change.
|
|
3690
|
+
from aws_cdk import aws_cleanrooms as cleanrooms
|
|
3691
|
+
|
|
3692
|
+
error_message_configuration_property = cleanrooms.CfnAnalysisTemplate.ErrorMessageConfigurationProperty(
|
|
3693
|
+
type="type"
|
|
3694
|
+
)
|
|
3695
|
+
'''
|
|
3696
|
+
if __debug__:
|
|
3697
|
+
type_hints = typing.get_type_hints(_typecheckingstub__99300f4ea5e5ce616768e3b03748c2f91f6e99c88a31ea4331c5d105bb2a1544)
|
|
3698
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
3699
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3700
|
+
"type": type,
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
@builtins.property
|
|
3704
|
+
def type(self) -> builtins.str:
|
|
3705
|
+
'''The level of detail for error messages returned by the PySpark job.
|
|
3706
|
+
|
|
3707
|
+
When set to DETAILED, error messages include more information to help troubleshoot issues with your PySpark job.
|
|
3708
|
+
|
|
3709
|
+
Because this setting may expose sensitive data, it is recommended for development and testing environments.
|
|
3710
|
+
|
|
3711
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html#cfn-cleanrooms-analysistemplate-errormessageconfiguration-type
|
|
3712
|
+
'''
|
|
3713
|
+
result = self._values.get("type")
|
|
3714
|
+
assert result is not None, "Required property 'type' is missing"
|
|
3715
|
+
return typing.cast(builtins.str, result)
|
|
3716
|
+
|
|
3717
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3718
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3719
|
+
|
|
3720
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3721
|
+
return not (rhs == self)
|
|
3722
|
+
|
|
3723
|
+
def __repr__(self) -> str:
|
|
3724
|
+
return "ErrorMessageConfigurationProperty(%s)" % ", ".join(
|
|
3725
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3726
|
+
)
|
|
3727
|
+
|
|
3608
3728
|
@jsii.data_type(
|
|
3609
3729
|
jsii_type="aws-cdk-lib.aws_cleanrooms.CfnAnalysisTemplate.HashProperty",
|
|
3610
3730
|
jsii_struct_bases=[],
|
|
@@ -3749,6 +3869,7 @@ class CfnCollaboration(
|
|
|
3749
3869
|
|
|
3750
3870
|
# the properties below are optional
|
|
3751
3871
|
analytics_engine="analyticsEngine",
|
|
3872
|
+
auto_approved_change_types=["autoApprovedChangeTypes"],
|
|
3752
3873
|
creator_member_abilities=["creatorMemberAbilities"],
|
|
3753
3874
|
creator_ml_member_abilities=cleanrooms.CfnCollaboration.MLMemberAbilitiesProperty(
|
|
3754
3875
|
custom_ml_member_abilities=["customMlMemberAbilities"]
|
|
@@ -3823,6 +3944,7 @@ class CfnCollaboration(
|
|
|
3823
3944
|
name: builtins.str,
|
|
3824
3945
|
query_log_status: builtins.str,
|
|
3825
3946
|
analytics_engine: typing.Optional[builtins.str] = None,
|
|
3947
|
+
auto_approved_change_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3826
3948
|
creator_member_abilities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3827
3949
|
creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.MLMemberAbilitiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3828
3950
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCollaboration.PaymentConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -3839,6 +3961,7 @@ class CfnCollaboration(
|
|
|
3839
3961
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
3840
3962
|
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
3841
3963
|
:param analytics_engine: The analytics engine for the collaboration. .. epigraph:: After July 16, 2025, the ``CLEAN_ROOMS_SQL`` parameter will no longer be available.
|
|
3964
|
+
:param auto_approved_change_types: The types of change requests that are automatically approved for this collaboration.
|
|
3842
3965
|
:param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
|
|
3843
3966
|
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
3844
3967
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
@@ -3857,6 +3980,7 @@ class CfnCollaboration(
|
|
|
3857
3980
|
name=name,
|
|
3858
3981
|
query_log_status=query_log_status,
|
|
3859
3982
|
analytics_engine=analytics_engine,
|
|
3983
|
+
auto_approved_change_types=auto_approved_change_types,
|
|
3860
3984
|
creator_member_abilities=creator_member_abilities,
|
|
3861
3985
|
creator_ml_member_abilities=creator_ml_member_abilities,
|
|
3862
3986
|
creator_payment_configuration=creator_payment_configuration,
|
|
@@ -4002,6 +4126,22 @@ class CfnCollaboration(
|
|
|
4002
4126
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4003
4127
|
jsii.set(self, "analyticsEngine", value) # pyright: ignore[reportArgumentType]
|
|
4004
4128
|
|
|
4129
|
+
@builtins.property
|
|
4130
|
+
@jsii.member(jsii_name="autoApprovedChangeTypes")
|
|
4131
|
+
def auto_approved_change_types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4132
|
+
'''The types of change requests that are automatically approved for this collaboration.'''
|
|
4133
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "autoApprovedChangeTypes"))
|
|
4134
|
+
|
|
4135
|
+
@auto_approved_change_types.setter
|
|
4136
|
+
def auto_approved_change_types(
|
|
4137
|
+
self,
|
|
4138
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
4139
|
+
) -> None:
|
|
4140
|
+
if __debug__:
|
|
4141
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bae84907df1f2d3ba640faa4bdd3ba5349c36d0d41a201d71e35e6741dacf1ee)
|
|
4142
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4143
|
+
jsii.set(self, "autoApprovedChangeTypes", value) # pyright: ignore[reportArgumentType]
|
|
4144
|
+
|
|
4005
4145
|
@builtins.property
|
|
4006
4146
|
@jsii.member(jsii_name="creatorMemberAbilities")
|
|
4007
4147
|
def creator_member_abilities(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -10160,6 +10300,7 @@ def _typecheckingstub__e1c797e3fa5f8683aa0eb66424f00b6b29c5014d5c45e7771fe0c5b1e
|
|
|
10160
10300
|
source: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
10161
10301
|
analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10162
10302
|
description: typing.Optional[builtins.str] = None,
|
|
10303
|
+
error_message_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.ErrorMessageConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10163
10304
|
schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSchemaProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10164
10305
|
source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10165
10306
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -10174,6 +10315,7 @@ def _typecheckingstub__2049291a9933df94c4258b33838a3aa8100d0214a4519c3d84e6d70ed
|
|
|
10174
10315
|
name: builtins.str,
|
|
10175
10316
|
query_log_status: builtins.str,
|
|
10176
10317
|
analytics_engine: typing.Optional[builtins.str] = None,
|
|
10318
|
+
auto_approved_change_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10177
10319
|
creator_member_abilities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10178
10320
|
creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MLMemberAbilitiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10179
10321
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -10330,6 +10472,7 @@ def _typecheckingstub__0e650aead4f74afeaf90193249293bee92f9a4eb687f4f9678e1a1368
|
|
|
10330
10472
|
source: typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
10331
10473
|
analysis_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10332
10474
|
description: typing.Optional[builtins.str] = None,
|
|
10475
|
+
error_message_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.ErrorMessageConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10333
10476
|
schema: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSchemaProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10334
10477
|
source_metadata: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnAnalysisTemplate.AnalysisSourceMetadataProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10335
10478
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -10385,6 +10528,12 @@ def _typecheckingstub__a8ea0f1530d49d0cf3ea112be450d6887b42e42d18ffdc9233aac3656
|
|
|
10385
10528
|
"""Type checking stubs"""
|
|
10386
10529
|
pass
|
|
10387
10530
|
|
|
10531
|
+
def _typecheckingstub__34831cf7179b15aa74fb46a0ab1a549fbfe4b6acc73cf2a5eabf79947604e497(
|
|
10532
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.ErrorMessageConfigurationProperty]],
|
|
10533
|
+
) -> None:
|
|
10534
|
+
"""Type checking stubs"""
|
|
10535
|
+
pass
|
|
10536
|
+
|
|
10388
10537
|
def _typecheckingstub__b08707b577f4e2e4847fc726614c034787b0608c33e3b6db3ed058d8262f49f5(
|
|
10389
10538
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnAnalysisTemplate.AnalysisSchemaProperty]],
|
|
10390
10539
|
) -> None:
|
|
@@ -10458,6 +10607,13 @@ def _typecheckingstub__de78ae9ecad686157204e702611c0cf015331e3aa099f1e87ab18d5cd
|
|
|
10458
10607
|
"""Type checking stubs"""
|
|
10459
10608
|
pass
|
|
10460
10609
|
|
|
10610
|
+
def _typecheckingstub__99300f4ea5e5ce616768e3b03748c2f91f6e99c88a31ea4331c5d105bb2a1544(
|
|
10611
|
+
*,
|
|
10612
|
+
type: builtins.str,
|
|
10613
|
+
) -> None:
|
|
10614
|
+
"""Type checking stubs"""
|
|
10615
|
+
pass
|
|
10616
|
+
|
|
10461
10617
|
def _typecheckingstub__43be85fff22ad377febb791857a9bfd90b262e37e83d363df6adfb5783ea6cb5(
|
|
10462
10618
|
*,
|
|
10463
10619
|
sha256: typing.Optional[builtins.str] = None,
|
|
@@ -10482,6 +10638,7 @@ def _typecheckingstub__a8995527da9ce4212caf3c1fdf601e4947c02ff1e364e92811ac8635b
|
|
|
10482
10638
|
name: builtins.str,
|
|
10483
10639
|
query_log_status: builtins.str,
|
|
10484
10640
|
analytics_engine: typing.Optional[builtins.str] = None,
|
|
10641
|
+
auto_approved_change_types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10485
10642
|
creator_member_abilities: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10486
10643
|
creator_ml_member_abilities: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.MLMemberAbilitiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10487
10644
|
creator_payment_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCollaboration.PaymentConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -10535,6 +10692,12 @@ def _typecheckingstub__1052deb6a86709adcf30bca5621af3b50e52d20c54f6e014b8baeaa99
|
|
|
10535
10692
|
"""Type checking stubs"""
|
|
10536
10693
|
pass
|
|
10537
10694
|
|
|
10695
|
+
def _typecheckingstub__bae84907df1f2d3ba640faa4bdd3ba5349c36d0d41a201d71e35e6741dacf1ee(
|
|
10696
|
+
value: typing.Optional[typing.List[builtins.str]],
|
|
10697
|
+
) -> None:
|
|
10698
|
+
"""Type checking stubs"""
|
|
10699
|
+
pass
|
|
10700
|
+
|
|
10538
10701
|
def _typecheckingstub__1ee81f8b64fd681cae1a860e0339dfa0ddeb287c4e709f0b34cc3c8bcf9bc6bd(
|
|
10539
10702
|
value: typing.Optional[typing.List[builtins.str]],
|
|
10540
10703
|
) -> None:
|
|
@@ -172,7 +172,7 @@ class CfnGuardHookProps:
|
|
|
172
172
|
:param log_bucket: Specifies the name of an S3 bucket to store the Guard output report. This report contains the results of your Guard rule validations.
|
|
173
173
|
:param options: Specifies the S3 location of your input parameters.
|
|
174
174
|
:param stack_filters: Specifies the stack level filters for the Hook. Example stack level filter in JSON: ``"StackFilters": {"FilteringCriteria": "ALL", "StackNames": {"Exclude": [ "stack-1", "stack-2"]}}`` Example stack level filter in YAML: ``StackFilters: FilteringCriteria: ALL StackNames: Exclude: - stack-1 - stack-2``
|
|
175
|
-
:param target_filters: Specifies the target filters for the Hook. Example target filter in JSON: ``"TargetFilters": {"Actions": [ "
|
|
175
|
+
:param target_filters: Specifies the target filters for the Hook. Example target filter in JSON: ``"TargetFilters": {"Actions": [ "CREATE", "UPDATE", "DELETE" ]}`` Example target filter in YAML: ``TargetFilters: Actions: - CREATE - UPDATE - DELETE``
|
|
176
176
|
|
|
177
177
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html
|
|
178
178
|
:exampleMetadata: fixture=_generated
|
|
@@ -386,7 +386,7 @@ class CfnGuardHookProps:
|
|
|
386
386
|
|
|
387
387
|
Example target filter in JSON:
|
|
388
388
|
|
|
389
|
-
``"TargetFilters": {"Actions": [ "
|
|
389
|
+
``"TargetFilters": {"Actions": [ "CREATE", "UPDATE", "DELETE" ]}``
|
|
390
390
|
|
|
391
391
|
Example target filter in YAML:
|
|
392
392
|
|
|
@@ -648,7 +648,7 @@ class CfnHookVersionProps:
|
|
|
648
648
|
'''Properties for defining a ``CfnHookVersion``.
|
|
649
649
|
|
|
650
650
|
: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.
|
|
651
|
-
:param type_name: The unique name for your
|
|
651
|
+
: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``
|
|
652
652
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the task execution role that grants the Hook permission.
|
|
653
653
|
:param logging_config: Contains logging configuration information for an extension.
|
|
654
654
|
|
|
@@ -705,12 +705,12 @@ class CfnHookVersionProps:
|
|
|
705
705
|
|
|
706
706
|
@builtins.property
|
|
707
707
|
def type_name(self) -> builtins.str:
|
|
708
|
-
'''The unique name for your
|
|
708
|
+
'''The unique name for your Hook.
|
|
709
709
|
|
|
710
|
-
Specifies a three-part namespace for your
|
|
710
|
+
Specifies a three-part namespace for your Hook, with a recommended pattern of ``Organization::Service::Hook`` .
|
|
711
711
|
.. epigraph::
|
|
712
712
|
|
|
713
|
-
The following organization namespaces are reserved and can't be used in your
|
|
713
|
+
The following organization namespaces are reserved and can't be used in your Hook type names:
|
|
714
714
|
|
|
715
715
|
- ``Alexa``
|
|
716
716
|
- ``AMZN``
|
|
@@ -2319,7 +2319,7 @@ class CfnTypeActivationProps:
|
|
|
2319
2319
|
:param publisher_id: The ID of the extension publisher. Conditional: You must specify ``PublicTypeArn`` , or ``TypeName`` , ``Type`` , and ``PublisherId`` .
|
|
2320
2320
|
:param type: The extension type. Conditional: You must specify ``PublicTypeArn`` , or ``TypeName`` , ``Type`` , and ``PublisherId`` .
|
|
2321
2321
|
:param type_name: The name of the extension. Conditional: You must specify ``PublicTypeArn`` , or ``TypeName`` , ``Type`` , and ``PublisherId`` .
|
|
2322
|
-
:param type_name_alias: An alias to assign to the public extension
|
|
2322
|
+
:param type_name_alias: An alias to assign to the public extension in this account and Region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console. An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.
|
|
2323
2323
|
:param version_bump: Manually updates a previously-activated type to a new major or minor version, if available. You can also use this parameter to update the value of ``AutoUpdate`` . - ``MAJOR`` : CloudFormation updates the extension to the newest major version, if one is available. - ``MINOR`` : CloudFormation updates the extension to the newest minor version, if one is available.
|
|
2324
2324
|
|
|
2325
2325
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.html
|
|
@@ -2475,7 +2475,7 @@ class CfnTypeActivationProps:
|
|
|
2475
2475
|
|
|
2476
2476
|
@builtins.property
|
|
2477
2477
|
def type_name_alias(self) -> typing.Optional[builtins.str]:
|
|
2478
|
-
'''An alias to assign to the public extension
|
|
2478
|
+
'''An alias to assign to the public extension in this account and Region.
|
|
2479
2479
|
|
|
2480
2480
|
If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.
|
|
2481
2481
|
|
|
@@ -4497,7 +4497,7 @@ class CfnGuardHook(
|
|
|
4497
4497
|
:param log_bucket: Specifies the name of an S3 bucket to store the Guard output report. This report contains the results of your Guard rule validations.
|
|
4498
4498
|
:param options: Specifies the S3 location of your input parameters.
|
|
4499
4499
|
:param stack_filters: Specifies the stack level filters for the Hook. Example stack level filter in JSON: ``"StackFilters": {"FilteringCriteria": "ALL", "StackNames": {"Exclude": [ "stack-1", "stack-2"]}}`` Example stack level filter in YAML: ``StackFilters: FilteringCriteria: ALL StackNames: Exclude: - stack-1 - stack-2``
|
|
4500
|
-
:param target_filters: Specifies the target filters for the Hook. Example target filter in JSON: ``"TargetFilters": {"Actions": [ "
|
|
4500
|
+
:param target_filters: Specifies the target filters for the Hook. Example target filter in JSON: ``"TargetFilters": {"Actions": [ "CREATE", "UPDATE", "DELETE" ]}`` Example target filter in YAML: ``TargetFilters: Actions: - CREATE - UPDATE - DELETE``
|
|
4501
4501
|
'''
|
|
4502
4502
|
if __debug__:
|
|
4503
4503
|
type_hints = typing.get_type_hints(_typecheckingstub__03161d7a487fda6efdcca08ffddf765149d688cda393f699958050fcb318e260)
|
|
@@ -5696,7 +5696,7 @@ class CfnHookVersion(
|
|
|
5696
5696
|
:param scope: Scope in which this resource is defined.
|
|
5697
5697
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
5698
5698
|
: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.
|
|
5699
|
-
:param type_name: The unique name for your
|
|
5699
|
+
: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``
|
|
5700
5700
|
:param execution_role_arn: The Amazon Resource Name (ARN) of the task execution role that grants the Hook permission.
|
|
5701
5701
|
:param logging_config: Contains logging configuration information for an extension.
|
|
5702
5702
|
'''
|
|
@@ -5818,7 +5818,7 @@ class CfnHookVersion(
|
|
|
5818
5818
|
@builtins.property
|
|
5819
5819
|
@jsii.member(jsii_name="typeName")
|
|
5820
5820
|
def type_name(self) -> builtins.str:
|
|
5821
|
-
'''The unique name for your
|
|
5821
|
+
'''The unique name for your Hook.'''
|
|
5822
5822
|
return typing.cast(builtins.str, jsii.get(self, "typeName"))
|
|
5823
5823
|
|
|
5824
5824
|
@type_name.setter
|
|
@@ -9560,7 +9560,7 @@ class CfnTypeActivation(
|
|
|
9560
9560
|
:param publisher_id: The ID of the extension publisher. Conditional: You must specify ``PublicTypeArn`` , or ``TypeName`` , ``Type`` , and ``PublisherId`` .
|
|
9561
9561
|
:param type: The extension type. Conditional: You must specify ``PublicTypeArn`` , or ``TypeName`` , ``Type`` , and ``PublisherId`` .
|
|
9562
9562
|
:param type_name: The name of the extension. Conditional: You must specify ``PublicTypeArn`` , or ``TypeName`` , ``Type`` , and ``PublisherId`` .
|
|
9563
|
-
:param type_name_alias: An alias to assign to the public extension
|
|
9563
|
+
:param type_name_alias: An alias to assign to the public extension in this account and Region. If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console. An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.
|
|
9564
9564
|
:param version_bump: Manually updates a previously-activated type to a new major or minor version, if available. You can also use this parameter to update the value of ``AutoUpdate`` . - ``MAJOR`` : CloudFormation updates the extension to the newest major version, if one is available. - ``MINOR`` : CloudFormation updates the extension to the newest minor version, if one is available.
|
|
9565
9565
|
'''
|
|
9566
9566
|
if __debug__:
|
|
@@ -9615,7 +9615,7 @@ class CfnTypeActivation(
|
|
|
9615
9615
|
@builtins.property
|
|
9616
9616
|
@jsii.member(jsii_name="attrArn")
|
|
9617
9617
|
def attr_arn(self) -> builtins.str:
|
|
9618
|
-
'''The Amazon Resource Name (ARN) of the activated extension
|
|
9618
|
+
'''The Amazon Resource Name (ARN) of the activated extension in this account and Region.
|
|
9619
9619
|
|
|
9620
9620
|
:cloudformationAttribute: Arn
|
|
9621
9621
|
'''
|
|
@@ -9749,7 +9749,7 @@ class CfnTypeActivation(
|
|
|
9749
9749
|
@builtins.property
|
|
9750
9750
|
@jsii.member(jsii_name="typeNameAlias")
|
|
9751
9751
|
def type_name_alias(self) -> typing.Optional[builtins.str]:
|
|
9752
|
-
'''An alias to assign to the public extension
|
|
9752
|
+
'''An alias to assign to the public extension in this account and Region.'''
|
|
9753
9753
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "typeNameAlias"))
|
|
9754
9754
|
|
|
9755
9755
|
@type_name_alias.setter
|