aws-cdk-lib 2.207.0__py3-none-any.whl → 2.209.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 +31 -3
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.207.0.jsii.tgz → aws-cdk-lib@2.209.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +16 -12
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_bedrock/__init__.py +227 -102
- aws_cdk/aws_certificatemanager/__init__.py +45 -0
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +58 -16
- aws_cdk/aws_ecs/__init__.py +1554 -78
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +27 -15
- aws_cdk/aws_events/__init__.py +142 -0
- aws_cdk/aws_gamelift/__init__.py +2 -2
- aws_cdk/aws_guardduty/__init__.py +86 -0
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_lambda/__init__.py +76 -67
- aws_cdk/aws_logs/__init__.py +53 -4
- aws_cdk/aws_mediapackagev2/__init__.py +881 -0
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +214 -10
- aws_cdk/aws_route53/__init__.py +97 -41
- aws_cdk/aws_s3/__init__.py +775 -5
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +524 -137
- aws_cdk/aws_ssm/__init__.py +48 -0
- aws_cdk/aws_transfer/__init__.py +49 -0
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- aws_cdk/cloud_assembly_schema/__init__.py +28 -2
- aws_cdk/custom_resources/__init__.py +1 -1
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/RECORD +41 -41
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.207.0.dist-info → aws_cdk_lib-2.209.0.dist-info}/top_level.txt +0 -0
|
@@ -910,6 +910,7 @@ class CfnCertificate(
|
|
|
910
910
|
|
|
911
911
|
# the properties below are optional
|
|
912
912
|
certificate_authority_arn="certificateAuthorityArn",
|
|
913
|
+
certificate_export="certificateExport",
|
|
913
914
|
certificate_transparency_logging_preference="certificateTransparencyLoggingPreference",
|
|
914
915
|
domain_validation_options=[certificatemanager.CfnCertificate.DomainValidationOptionProperty(
|
|
915
916
|
domain_name="domainName",
|
|
@@ -935,6 +936,7 @@ class CfnCertificate(
|
|
|
935
936
|
*,
|
|
936
937
|
domain_name: builtins.str,
|
|
937
938
|
certificate_authority_arn: typing.Optional[builtins.str] = None,
|
|
939
|
+
certificate_export: typing.Optional[builtins.str] = None,
|
|
938
940
|
certificate_transparency_logging_preference: typing.Optional[builtins.str] = None,
|
|
939
941
|
domain_validation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCertificate.DomainValidationOptionProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
940
942
|
key_algorithm: typing.Optional[builtins.str] = None,
|
|
@@ -947,6 +949,7 @@ class CfnCertificate(
|
|
|
947
949
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
948
950
|
: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.``.
|
|
949
951
|
: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``
|
|
952
|
+
: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.
|
|
950
953
|
: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.
|
|
951
954
|
: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.
|
|
952
955
|
: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
|
|
@@ -961,6 +964,7 @@ class CfnCertificate(
|
|
|
961
964
|
props = CfnCertificateProps(
|
|
962
965
|
domain_name=domain_name,
|
|
963
966
|
certificate_authority_arn=certificate_authority_arn,
|
|
967
|
+
certificate_export=certificate_export,
|
|
964
968
|
certificate_transparency_logging_preference=certificate_transparency_logging_preference,
|
|
965
969
|
domain_validation_options=domain_validation_options,
|
|
966
970
|
key_algorithm=key_algorithm,
|
|
@@ -1046,6 +1050,19 @@ class CfnCertificate(
|
|
|
1046
1050
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1047
1051
|
jsii.set(self, "certificateAuthorityArn", value) # pyright: ignore[reportArgumentType]
|
|
1048
1052
|
|
|
1053
|
+
@builtins.property
|
|
1054
|
+
@jsii.member(jsii_name="certificateExport")
|
|
1055
|
+
def certificate_export(self) -> typing.Optional[builtins.str]:
|
|
1056
|
+
'''You can opt out of allowing export of your certificate by specifying the ``DISABLED`` option.'''
|
|
1057
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "certificateExport"))
|
|
1058
|
+
|
|
1059
|
+
@certificate_export.setter
|
|
1060
|
+
def certificate_export(self, value: typing.Optional[builtins.str]) -> None:
|
|
1061
|
+
if __debug__:
|
|
1062
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d950c422d5c6ee00cbcc4b8b9fb7d0b251571a9084cb4b6e68065e797e461b4a)
|
|
1063
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1064
|
+
jsii.set(self, "certificateExport", value) # pyright: ignore[reportArgumentType]
|
|
1065
|
+
|
|
1049
1066
|
@builtins.property
|
|
1050
1067
|
@jsii.member(jsii_name="certificateTransparencyLoggingPreference")
|
|
1051
1068
|
def certificate_transparency_logging_preference(
|
|
@@ -1258,6 +1275,7 @@ class CfnCertificate(
|
|
|
1258
1275
|
name_mapping={
|
|
1259
1276
|
"domain_name": "domainName",
|
|
1260
1277
|
"certificate_authority_arn": "certificateAuthorityArn",
|
|
1278
|
+
"certificate_export": "certificateExport",
|
|
1261
1279
|
"certificate_transparency_logging_preference": "certificateTransparencyLoggingPreference",
|
|
1262
1280
|
"domain_validation_options": "domainValidationOptions",
|
|
1263
1281
|
"key_algorithm": "keyAlgorithm",
|
|
@@ -1272,6 +1290,7 @@ class CfnCertificateProps:
|
|
|
1272
1290
|
*,
|
|
1273
1291
|
domain_name: builtins.str,
|
|
1274
1292
|
certificate_authority_arn: typing.Optional[builtins.str] = None,
|
|
1293
|
+
certificate_export: typing.Optional[builtins.str] = None,
|
|
1275
1294
|
certificate_transparency_logging_preference: typing.Optional[builtins.str] = None,
|
|
1276
1295
|
domain_validation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCertificate.DomainValidationOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1277
1296
|
key_algorithm: typing.Optional[builtins.str] = None,
|
|
@@ -1283,6 +1302,7 @@ class CfnCertificateProps:
|
|
|
1283
1302
|
|
|
1284
1303
|
: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.``.
|
|
1285
1304
|
: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``
|
|
1305
|
+
: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.
|
|
1286
1306
|
: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.
|
|
1287
1307
|
: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.
|
|
1288
1308
|
: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
|
|
@@ -1304,6 +1324,7 @@ class CfnCertificateProps:
|
|
|
1304
1324
|
|
|
1305
1325
|
# the properties below are optional
|
|
1306
1326
|
certificate_authority_arn="certificateAuthorityArn",
|
|
1327
|
+
certificate_export="certificateExport",
|
|
1307
1328
|
certificate_transparency_logging_preference="certificateTransparencyLoggingPreference",
|
|
1308
1329
|
domain_validation_options=[certificatemanager.CfnCertificate.DomainValidationOptionProperty(
|
|
1309
1330
|
domain_name="domainName",
|
|
@@ -1325,6 +1346,7 @@ class CfnCertificateProps:
|
|
|
1325
1346
|
type_hints = typing.get_type_hints(_typecheckingstub__0e42a641d895acaee35ba9ec88335a357b8cbfb64b98867f1792ccd63242a79d)
|
|
1326
1347
|
check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
|
|
1327
1348
|
check_type(argname="argument certificate_authority_arn", value=certificate_authority_arn, expected_type=type_hints["certificate_authority_arn"])
|
|
1349
|
+
check_type(argname="argument certificate_export", value=certificate_export, expected_type=type_hints["certificate_export"])
|
|
1328
1350
|
check_type(argname="argument certificate_transparency_logging_preference", value=certificate_transparency_logging_preference, expected_type=type_hints["certificate_transparency_logging_preference"])
|
|
1329
1351
|
check_type(argname="argument domain_validation_options", value=domain_validation_options, expected_type=type_hints["domain_validation_options"])
|
|
1330
1352
|
check_type(argname="argument key_algorithm", value=key_algorithm, expected_type=type_hints["key_algorithm"])
|
|
@@ -1336,6 +1358,8 @@ class CfnCertificateProps:
|
|
|
1336
1358
|
}
|
|
1337
1359
|
if certificate_authority_arn is not None:
|
|
1338
1360
|
self._values["certificate_authority_arn"] = certificate_authority_arn
|
|
1361
|
+
if certificate_export is not None:
|
|
1362
|
+
self._values["certificate_export"] = certificate_export
|
|
1339
1363
|
if certificate_transparency_logging_preference is not None:
|
|
1340
1364
|
self._values["certificate_transparency_logging_preference"] = certificate_transparency_logging_preference
|
|
1341
1365
|
if domain_validation_options is not None:
|
|
@@ -1372,6 +1396,19 @@ class CfnCertificateProps:
|
|
|
1372
1396
|
result = self._values.get("certificate_authority_arn")
|
|
1373
1397
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1374
1398
|
|
|
1399
|
+
@builtins.property
|
|
1400
|
+
def certificate_export(self) -> typing.Optional[builtins.str]:
|
|
1401
|
+
'''You can opt out of allowing export of your certificate by specifying the ``DISABLED`` option.
|
|
1402
|
+
|
|
1403
|
+
Allow export of your certificate by specifying the ``ENABLED`` option.
|
|
1404
|
+
|
|
1405
|
+
If you do not specify an export preference in a new CloudFormation template, it is the same as explicitly denying export of your certificate.
|
|
1406
|
+
|
|
1407
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateexport
|
|
1408
|
+
'''
|
|
1409
|
+
result = self._values.get("certificate_export")
|
|
1410
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1411
|
+
|
|
1375
1412
|
@builtins.property
|
|
1376
1413
|
def certificate_transparency_logging_preference(
|
|
1377
1414
|
self,
|
|
@@ -2687,6 +2724,7 @@ def _typecheckingstub__6f094b3f6a318b9501162c46d45eaf42466c16a9c333dd4021dc90258
|
|
|
2687
2724
|
*,
|
|
2688
2725
|
domain_name: builtins.str,
|
|
2689
2726
|
certificate_authority_arn: typing.Optional[builtins.str] = None,
|
|
2727
|
+
certificate_export: typing.Optional[builtins.str] = None,
|
|
2690
2728
|
certificate_transparency_logging_preference: typing.Optional[builtins.str] = None,
|
|
2691
2729
|
domain_validation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCertificate.DomainValidationOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2692
2730
|
key_algorithm: typing.Optional[builtins.str] = None,
|
|
@@ -2721,6 +2759,12 @@ def _typecheckingstub__58a46e864da863431c56823a56fc6f403857fef239765fe1b0400f623
|
|
|
2721
2759
|
"""Type checking stubs"""
|
|
2722
2760
|
pass
|
|
2723
2761
|
|
|
2762
|
+
def _typecheckingstub__d950c422d5c6ee00cbcc4b8b9fb7d0b251571a9084cb4b6e68065e797e461b4a(
|
|
2763
|
+
value: typing.Optional[builtins.str],
|
|
2764
|
+
) -> None:
|
|
2765
|
+
"""Type checking stubs"""
|
|
2766
|
+
pass
|
|
2767
|
+
|
|
2724
2768
|
def _typecheckingstub__f6946e1448636db36ed5e4ce9c801fc6db4c58d0f89d88789b24f93a2628abc0(
|
|
2725
2769
|
value: typing.Optional[builtins.str],
|
|
2726
2770
|
) -> None:
|
|
@@ -2770,6 +2814,7 @@ def _typecheckingstub__0e42a641d895acaee35ba9ec88335a357b8cbfb64b98867f1792ccd63
|
|
|
2770
2814
|
*,
|
|
2771
2815
|
domain_name: builtins.str,
|
|
2772
2816
|
certificate_authority_arn: typing.Optional[builtins.str] = None,
|
|
2817
|
+
certificate_export: typing.Optional[builtins.str] = None,
|
|
2773
2818
|
certificate_transparency_logging_preference: typing.Optional[builtins.str] = None,
|
|
2774
2819
|
domain_validation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCertificate.DomainValidationOptionProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2775
2820
|
key_algorithm: typing.Optional[builtins.str] = None,
|
|
@@ -3831,6 +3831,10 @@ class CfnCachePolicy(
|
|
|
3831
3831
|
- The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer.
|
|
3832
3832
|
- The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.
|
|
3833
3833
|
|
|
3834
|
+
.. epigraph::
|
|
3835
|
+
|
|
3836
|
+
If your minimum TTL is greater than 0, CloudFront will cache content for at least the duration specified in the cache policy's minimum TTL, even if the ``Cache-Control: no-cache`` , ``no-store`` , or ``private`` directives are present in the origin headers.
|
|
3837
|
+
|
|
3834
3838
|
The headers, cookies, and query strings that are included in the cache key are also included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find a valid object in its cache that matches the request's cache key. If you want to send values to the origin but *not* include them in the cache key, use ``OriginRequestPolicy`` .
|
|
3835
3839
|
|
|
3836
3840
|
:param default_ttl: The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object's time to live (TTL) only when the origin does *not* send ``Cache-Control`` or ``Expires`` headers with the object. For more information, see `Managing How Long Content Stays in an Edge Cache (Expiration) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html>`_ in the *Amazon CloudFront Developer Guide* . The default value for this field is 86400 seconds (one day). If the value of ``MinTTL`` is more than 86400 seconds, then the default value for this field is the same as the value of ``MinTTL`` .
|
|
@@ -6467,6 +6471,9 @@ class CfnDistribution(
|
|
|
6467
6471
|
To delete all cache behaviors in an existing distribution, update the distribution configuration and include only an empty ``CacheBehaviors`` element.
|
|
6468
6472
|
|
|
6469
6473
|
To add, change, or remove one or more cache behaviors, update the distribution configuration and specify all of the cache behaviors that you want to include in the updated distribution.
|
|
6474
|
+
.. epigraph::
|
|
6475
|
+
|
|
6476
|
+
If your minimum TTL is greater than 0, CloudFront will cache content for at least the duration specified in the cache policy's minimum TTL, even if the ``Cache-Control: no-cache`` , ``no-store`` , or ``private`` directives are present in the origin headers.
|
|
6470
6477
|
|
|
6471
6478
|
For more information about cache behaviors, see `Cache Behavior Settings <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesCacheBehavior>`_ in the *Amazon CloudFront Developer Guide* .
|
|
6472
6479
|
|
|
@@ -7401,6 +7408,9 @@ class CfnDistribution(
|
|
|
7401
7408
|
'''A complex type that describes the default cache behavior if you don't specify a ``CacheBehavior`` element or if request URLs don't match any of the values of ``PathPattern`` in ``CacheBehavior`` elements.
|
|
7402
7409
|
|
|
7403
7410
|
You must create exactly one default cache behavior.
|
|
7411
|
+
.. epigraph::
|
|
7412
|
+
|
|
7413
|
+
If your minimum TTL is greater than 0, CloudFront will cache content for at least the duration specified in the cache policy's minimum TTL, even if the ``Cache-Control: no-cache`` , ``no-store`` , or ``private`` directives are present in the origin headers.
|
|
7404
7414
|
|
|
7405
7415
|
:param target_origin_id: The value of ``ID`` for the origin that you want CloudFront to route requests to when they use the default cache behavior.
|
|
7406
7416
|
:param viewer_protocol_policy: The protocol that viewers can use to access the files in the origin specified by ``TargetOriginId`` when a request matches the path pattern in ``PathPattern`` . You can specify the following options: - ``allow-all`` : Viewers can use HTTP or HTTPS. - ``redirect-to-https`` : If a viewer submits an HTTP request, CloudFront returns an HTTP status code of 301 (Moved Permanently) to the viewer along with the HTTPS URL. The viewer then resubmits the request using the new URL. - ``https-only`` : If a viewer sends an HTTP request, CloudFront returns an HTTP status code of 403 (Forbidden). For more information about requiring the HTTPS protocol, see `Requiring HTTPS Between Viewers and CloudFront <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-https-viewers-to-cloudfront.html>`_ in the *Amazon CloudFront Developer Guide* . .. epigraph:: The only way to guarantee that viewers retrieve an object that was fetched from the origin using HTTPS is never to use any other protocol to fetch the object. If you have recently changed from HTTP to HTTPS, we recommend that you clear your objects' cache because cached objects are protocol agnostic. That means that an edge location will return an object from the cache regardless of whether the current request protocol matches the protocol used previously. For more information, see `Managing Cache Expiration <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Expiration.html>`_ in the *Amazon CloudFront Developer Guide* .
|
|
@@ -8020,7 +8030,7 @@ class CfnDistribution(
|
|
|
8020
8030
|
:param cache_behaviors: A complex type that contains zero or more ``CacheBehavior`` elements.
|
|
8021
8031
|
:param cnam_es: An alias for the CloudFront distribution's domain name. .. epigraph:: This property is legacy. We recommend that you use `Aliases <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-aliases>`_ instead.
|
|
8022
8032
|
:param comment: A comment to describe the distribution. The comment cannot be longer than 128 characters. Default: - ""
|
|
8023
|
-
:param connection_mode: This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants(tenant-only).
|
|
8033
|
+
:param connection_mode: This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only).
|
|
8024
8034
|
:param continuous_deployment_policy_id: .. epigraph:: This field only supports standard distributions. You can't specify this field for multi-tenant distributions. For more information, see `Unsupported features for SaaS Manager for Amazon CloudFront <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas>`_ in the *Amazon CloudFront Developer Guide* . The identifier of a continuous deployment policy. For more information, see ``CreateContinuousDeploymentPolicy`` .
|
|
8025
8035
|
:param custom_error_responses: A complex type that controls the following:. - Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer. - How long CloudFront caches HTTP status codes in the 4xx and 5xx range. For more information about custom error pages, see `Customizing Error Responses <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html>`_ in the *Amazon CloudFront Developer Guide* .
|
|
8026
8036
|
:param custom_origin: The user-defined HTTP server that serves as the origin for content that CloudFront distributes. .. epigraph:: This property is legacy. We recommend that you use `Origin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html>`_ instead.
|
|
@@ -8293,7 +8303,7 @@ class CfnDistribution(
|
|
|
8293
8303
|
|
|
8294
8304
|
@builtins.property
|
|
8295
8305
|
def connection_mode(self) -> typing.Optional[builtins.str]:
|
|
8296
|
-
'''This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants(tenant-only).
|
|
8306
|
+
'''This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only).
|
|
8297
8307
|
|
|
8298
8308
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-connectionmode
|
|
8299
8309
|
'''
|
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -2281,7 +2281,7 @@ class CfnEvaluationForm(
|
|
|
2281
2281
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2282
2282
|
) -> None:
|
|
2283
2283
|
'''
|
|
2284
|
-
:param enabled:
|
|
2284
|
+
:param enabled:
|
|
2285
2285
|
|
|
2286
2286
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html
|
|
2287
2287
|
:exampleMetadata: fixture=_generated
|
|
@@ -2307,8 +2307,7 @@ class CfnEvaluationForm(
|
|
|
2307
2307
|
def enabled(
|
|
2308
2308
|
self,
|
|
2309
2309
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2310
|
-
'''
|
|
2311
|
-
|
|
2310
|
+
'''
|
|
2312
2311
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-autoevaluationconfiguration.html#cfn-connect-evaluationform-autoevaluationconfiguration-enabled
|
|
2313
2312
|
'''
|
|
2314
2313
|
result = self._values.get("enabled")
|
|
@@ -5276,6 +5275,11 @@ class CfnInstance(
|
|
|
5276
5275
|
contactflow_logs=False,
|
|
5277
5276
|
contact_lens=False,
|
|
5278
5277
|
early_media=False,
|
|
5278
|
+
enhanced_chat_monitoring=False,
|
|
5279
|
+
enhanced_contact_monitoring=False,
|
|
5280
|
+
high_volume_out_bound=False,
|
|
5281
|
+
multi_party_chat_conference=False,
|
|
5282
|
+
multi_party_conference=False,
|
|
5279
5283
|
use_custom_tts_voices=False
|
|
5280
5284
|
),
|
|
5281
5285
|
identity_management_type="identityManagementType",
|
|
@@ -5492,6 +5496,11 @@ class CfnInstance(
|
|
|
5492
5496
|
"contactflow_logs": "contactflowLogs",
|
|
5493
5497
|
"contact_lens": "contactLens",
|
|
5494
5498
|
"early_media": "earlyMedia",
|
|
5499
|
+
"enhanced_chat_monitoring": "enhancedChatMonitoring",
|
|
5500
|
+
"enhanced_contact_monitoring": "enhancedContactMonitoring",
|
|
5501
|
+
"high_volume_out_bound": "highVolumeOutBound",
|
|
5502
|
+
"multi_party_chat_conference": "multiPartyChatConference",
|
|
5503
|
+
"multi_party_conference": "multiPartyConference",
|
|
5495
5504
|
"use_custom_tts_voices": "useCustomTtsVoices",
|
|
5496
5505
|
},
|
|
5497
5506
|
)
|
|
@@ -5505,6 +5514,11 @@ class CfnInstance(
|
|
|
5505
5514
|
contactflow_logs: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5506
5515
|
contact_lens: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5507
5516
|
early_media: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5517
|
+
enhanced_chat_monitoring: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5518
|
+
enhanced_contact_monitoring: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5519
|
+
high_volume_out_bound: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5520
|
+
multi_party_chat_conference: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5521
|
+
multi_party_conference: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5508
5522
|
use_custom_tts_voices: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5509
5523
|
) -> None:
|
|
5510
5524
|
'''*This is a preview release for Amazon Connect .
|
|
@@ -5517,6 +5531,11 @@ class CfnInstance(
|
|
|
5517
5531
|
:param contactflow_logs: Boolean flag which enables CONTACTFLOW_LOGS on an instance.
|
|
5518
5532
|
:param contact_lens: Boolean flag which enables CONTACT_LENS on an instance.
|
|
5519
5533
|
:param early_media: Boolean flag which enables EARLY_MEDIA on an instance.
|
|
5534
|
+
:param enhanced_chat_monitoring: Boolean flag which enables ENHANCED_CHAT_MONITORING on an instance.
|
|
5535
|
+
:param enhanced_contact_monitoring: Boolean flag which enables ENHANCED_CONTACT_MONITORING on an instance.
|
|
5536
|
+
:param high_volume_out_bound: Boolean flag which enables HIGH_VOLUME_OUTBOUND on an instance.
|
|
5537
|
+
:param multi_party_chat_conference: Boolean flag which enables MULTI_PARTY_CHAT_CONFERENCE on an instance.
|
|
5538
|
+
:param multi_party_conference: Boolean flag which enables MULTI_PARTY_CONFERENCE on an instance.
|
|
5520
5539
|
:param use_custom_tts_voices: Boolean flag which enables USE_CUSTOM_TTS_VOICES on an instance.
|
|
5521
5540
|
|
|
5522
5541
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html
|
|
@@ -5537,6 +5556,11 @@ class CfnInstance(
|
|
|
5537
5556
|
contactflow_logs=False,
|
|
5538
5557
|
contact_lens=False,
|
|
5539
5558
|
early_media=False,
|
|
5559
|
+
enhanced_chat_monitoring=False,
|
|
5560
|
+
enhanced_contact_monitoring=False,
|
|
5561
|
+
high_volume_out_bound=False,
|
|
5562
|
+
multi_party_chat_conference=False,
|
|
5563
|
+
multi_party_conference=False,
|
|
5540
5564
|
use_custom_tts_voices=False
|
|
5541
5565
|
)
|
|
5542
5566
|
'''
|
|
@@ -5548,6 +5572,11 @@ class CfnInstance(
|
|
|
5548
5572
|
check_type(argname="argument contactflow_logs", value=contactflow_logs, expected_type=type_hints["contactflow_logs"])
|
|
5549
5573
|
check_type(argname="argument contact_lens", value=contact_lens, expected_type=type_hints["contact_lens"])
|
|
5550
5574
|
check_type(argname="argument early_media", value=early_media, expected_type=type_hints["early_media"])
|
|
5575
|
+
check_type(argname="argument enhanced_chat_monitoring", value=enhanced_chat_monitoring, expected_type=type_hints["enhanced_chat_monitoring"])
|
|
5576
|
+
check_type(argname="argument enhanced_contact_monitoring", value=enhanced_contact_monitoring, expected_type=type_hints["enhanced_contact_monitoring"])
|
|
5577
|
+
check_type(argname="argument high_volume_out_bound", value=high_volume_out_bound, expected_type=type_hints["high_volume_out_bound"])
|
|
5578
|
+
check_type(argname="argument multi_party_chat_conference", value=multi_party_chat_conference, expected_type=type_hints["multi_party_chat_conference"])
|
|
5579
|
+
check_type(argname="argument multi_party_conference", value=multi_party_conference, expected_type=type_hints["multi_party_conference"])
|
|
5551
5580
|
check_type(argname="argument use_custom_tts_voices", value=use_custom_tts_voices, expected_type=type_hints["use_custom_tts_voices"])
|
|
5552
5581
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
5553
5582
|
"inbound_calls": inbound_calls,
|
|
@@ -5561,6 +5590,16 @@ class CfnInstance(
|
|
|
5561
5590
|
self._values["contact_lens"] = contact_lens
|
|
5562
5591
|
if early_media is not None:
|
|
5563
5592
|
self._values["early_media"] = early_media
|
|
5593
|
+
if enhanced_chat_monitoring is not None:
|
|
5594
|
+
self._values["enhanced_chat_monitoring"] = enhanced_chat_monitoring
|
|
5595
|
+
if enhanced_contact_monitoring is not None:
|
|
5596
|
+
self._values["enhanced_contact_monitoring"] = enhanced_contact_monitoring
|
|
5597
|
+
if high_volume_out_bound is not None:
|
|
5598
|
+
self._values["high_volume_out_bound"] = high_volume_out_bound
|
|
5599
|
+
if multi_party_chat_conference is not None:
|
|
5600
|
+
self._values["multi_party_chat_conference"] = multi_party_chat_conference
|
|
5601
|
+
if multi_party_conference is not None:
|
|
5602
|
+
self._values["multi_party_conference"] = multi_party_conference
|
|
5564
5603
|
if use_custom_tts_voices is not None:
|
|
5565
5604
|
self._values["use_custom_tts_voices"] = use_custom_tts_voices
|
|
5566
5605
|
|
|
@@ -5628,6 +5667,61 @@ class CfnInstance(
|
|
|
5628
5667
|
result = self._values.get("early_media")
|
|
5629
5668
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5630
5669
|
|
|
5670
|
+
@builtins.property
|
|
5671
|
+
def enhanced_chat_monitoring(
|
|
5672
|
+
self,
|
|
5673
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5674
|
+
'''Boolean flag which enables ENHANCED_CHAT_MONITORING on an instance.
|
|
5675
|
+
|
|
5676
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html#cfn-connect-instance-attributes-enhancedchatmonitoring
|
|
5677
|
+
'''
|
|
5678
|
+
result = self._values.get("enhanced_chat_monitoring")
|
|
5679
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5680
|
+
|
|
5681
|
+
@builtins.property
|
|
5682
|
+
def enhanced_contact_monitoring(
|
|
5683
|
+
self,
|
|
5684
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5685
|
+
'''Boolean flag which enables ENHANCED_CONTACT_MONITORING on an instance.
|
|
5686
|
+
|
|
5687
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html#cfn-connect-instance-attributes-enhancedcontactmonitoring
|
|
5688
|
+
'''
|
|
5689
|
+
result = self._values.get("enhanced_contact_monitoring")
|
|
5690
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5691
|
+
|
|
5692
|
+
@builtins.property
|
|
5693
|
+
def high_volume_out_bound(
|
|
5694
|
+
self,
|
|
5695
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5696
|
+
'''Boolean flag which enables HIGH_VOLUME_OUTBOUND on an instance.
|
|
5697
|
+
|
|
5698
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html#cfn-connect-instance-attributes-highvolumeoutbound
|
|
5699
|
+
'''
|
|
5700
|
+
result = self._values.get("high_volume_out_bound")
|
|
5701
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5702
|
+
|
|
5703
|
+
@builtins.property
|
|
5704
|
+
def multi_party_chat_conference(
|
|
5705
|
+
self,
|
|
5706
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5707
|
+
'''Boolean flag which enables MULTI_PARTY_CHAT_CONFERENCE on an instance.
|
|
5708
|
+
|
|
5709
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html#cfn-connect-instance-attributes-multipartychatconference
|
|
5710
|
+
'''
|
|
5711
|
+
result = self._values.get("multi_party_chat_conference")
|
|
5712
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5713
|
+
|
|
5714
|
+
@builtins.property
|
|
5715
|
+
def multi_party_conference(
|
|
5716
|
+
self,
|
|
5717
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5718
|
+
'''Boolean flag which enables MULTI_PARTY_CONFERENCE on an instance.
|
|
5719
|
+
|
|
5720
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instance-attributes.html#cfn-connect-instance-attributes-multipartyconference
|
|
5721
|
+
'''
|
|
5722
|
+
result = self._values.get("multi_party_conference")
|
|
5723
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5724
|
+
|
|
5631
5725
|
@builtins.property
|
|
5632
5726
|
def use_custom_tts_voices(
|
|
5633
5727
|
self,
|
|
@@ -5699,6 +5793,11 @@ class CfnInstanceProps:
|
|
|
5699
5793
|
contactflow_logs=False,
|
|
5700
5794
|
contact_lens=False,
|
|
5701
5795
|
early_media=False,
|
|
5796
|
+
enhanced_chat_monitoring=False,
|
|
5797
|
+
enhanced_contact_monitoring=False,
|
|
5798
|
+
high_volume_out_bound=False,
|
|
5799
|
+
multi_party_chat_conference=False,
|
|
5800
|
+
multi_party_conference=False,
|
|
5702
5801
|
use_custom_tts_voices=False
|
|
5703
5802
|
),
|
|
5704
5803
|
identity_management_type="identityManagementType",
|
|
@@ -17456,6 +17555,11 @@ def _typecheckingstub__c40aedafdc4ea4fb2b717cc5c6ef0e2db4eb7490be99c35b78dc90f18
|
|
|
17456
17555
|
contactflow_logs: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17457
17556
|
contact_lens: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17458
17557
|
early_media: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17558
|
+
enhanced_chat_monitoring: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17559
|
+
enhanced_contact_monitoring: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17560
|
+
high_volume_out_bound: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17561
|
+
multi_party_chat_conference: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17562
|
+
multi_party_conference: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17459
17563
|
use_custom_tts_voices: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17460
17564
|
) -> None:
|
|
17461
17565
|
"""Type checking stubs"""
|
|
@@ -644,10 +644,10 @@ class CfnCalculatedAttributeDefinition(
|
|
|
644
644
|
'''The relative time period over which data is included in the aggregation.
|
|
645
645
|
|
|
646
646
|
:param unit: The unit of time.
|
|
647
|
-
:param timestamp_format: The format the timestamp field in your JSON object is specified. This value should be one of EPOCHMILLI or ISO_8601. E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "2001-07-04T12:08:56.
|
|
648
|
-
:param timestamp_source: An expression specifying the field in your JSON object from which the date should be parsed. The expression should follow the structure of "{ObjectTypeName.}". E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "1737587945945"}}, then TimestampSource should be "{MyType.generatedAt.timestamp}"
|
|
647
|
+
:param timestamp_format: The format the timestamp field in your JSON object is specified. This value should be one of EPOCHMILLI (for Unix epoch timestamps with second/millisecond level precision) or ISO_8601 (following ISO_8601 format with second/millisecond level precision, with an optional offset of Z or in the format HH:MM or HHMM.). E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "2001-07-04T12:08:56.235-0700"}}, then TimestampFormat should be "ISO_8601"
|
|
648
|
+
:param timestamp_source: An expression specifying the field in your JSON object from which the date should be parsed. The expression should follow the structure of "{ObjectTypeName.}". E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "1737587945945"}}, then TimestampSource should be "{MyType.generatedAt.timestamp}"
|
|
649
649
|
:param value: The amount of time of the specified unit.
|
|
650
|
-
:param value_range: A structure
|
|
650
|
+
:param value_range: A structure letting customers specify a relative time window over which over which data is included in the Calculated Attribute. Use positive numbers to indicate that the endpoint is in the past, and negative numbers to indicate it is in the future. ValueRange overrides Value.
|
|
651
651
|
|
|
652
652
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html
|
|
653
653
|
:exampleMetadata: fixture=_generated
|
|
@@ -704,7 +704,7 @@ class CfnCalculatedAttributeDefinition(
|
|
|
704
704
|
def timestamp_format(self) -> typing.Optional[builtins.str]:
|
|
705
705
|
'''The format the timestamp field in your JSON object is specified.
|
|
706
706
|
|
|
707
|
-
This value should be one of EPOCHMILLI or ISO_8601. E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "2001-07-04T12:08:56.
|
|
707
|
+
This value should be one of EPOCHMILLI (for Unix epoch timestamps with second/millisecond level precision) or ISO_8601 (following ISO_8601 format with second/millisecond level precision, with an optional offset of Z or in the format HH:MM or HHMM.). E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "2001-07-04T12:08:56.235-0700"}}, then TimestampFormat should be "ISO_8601"
|
|
708
708
|
|
|
709
709
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-timestampformat
|
|
710
710
|
'''
|
|
@@ -715,7 +715,7 @@ class CfnCalculatedAttributeDefinition(
|
|
|
715
715
|
def timestamp_source(self) -> typing.Optional[builtins.str]:
|
|
716
716
|
'''An expression specifying the field in your JSON object from which the date should be parsed.
|
|
717
717
|
|
|
718
|
-
The expression should follow the structure of "{ObjectTypeName.}". E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "1737587945945"}}, then TimestampSource should be "{MyType.generatedAt.timestamp}"
|
|
718
|
+
The expression should follow the structure of "{ObjectTypeName.}". E.g. if your object type is MyType and source JSON is {"generatedAt": {"timestamp": "1737587945945"}}, then TimestampSource should be "{MyType.generatedAt.timestamp}"
|
|
719
719
|
|
|
720
720
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-timestampsource
|
|
721
721
|
'''
|
|
@@ -735,7 +735,9 @@ class CfnCalculatedAttributeDefinition(
|
|
|
735
735
|
def value_range(
|
|
736
736
|
self,
|
|
737
737
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCalculatedAttributeDefinition.ValueRangeProperty"]]:
|
|
738
|
-
'''A structure
|
|
738
|
+
'''A structure letting customers specify a relative time window over which over which data is included in the Calculated Attribute.
|
|
739
|
+
|
|
740
|
+
Use positive numbers to indicate that the endpoint is in the past, and negative numbers to indicate it is in the future. ValueRange overrides Value.
|
|
739
741
|
|
|
740
742
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html#cfn-customerprofiles-calculatedattributedefinition-range-valuerange
|
|
741
743
|
'''
|
|
@@ -768,10 +770,10 @@ class CfnCalculatedAttributeDefinition(
|
|
|
768
770
|
message: typing.Optional[builtins.str] = None,
|
|
769
771
|
progress_percentage: typing.Optional[jsii.Number] = None,
|
|
770
772
|
) -> None:
|
|
771
|
-
'''
|
|
773
|
+
'''Information indicating if the Calculated Attribute is ready for use by confirming all historical data has been processed and reflected.
|
|
772
774
|
|
|
773
|
-
:param message: Any
|
|
774
|
-
:param progress_percentage:
|
|
775
|
+
:param message: Any customer messaging.
|
|
776
|
+
:param progress_percentage: Approximately how far the Calculated Attribute creation is from completion.
|
|
775
777
|
|
|
776
778
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-readiness.html
|
|
777
779
|
:exampleMetadata: fixture=_generated
|
|
@@ -799,7 +801,7 @@ class CfnCalculatedAttributeDefinition(
|
|
|
799
801
|
|
|
800
802
|
@builtins.property
|
|
801
803
|
def message(self) -> typing.Optional[builtins.str]:
|
|
802
|
-
'''Any
|
|
804
|
+
'''Any customer messaging.
|
|
803
805
|
|
|
804
806
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-readiness.html#cfn-customerprofiles-calculatedattributedefinition-readiness-message
|
|
805
807
|
'''
|
|
@@ -808,7 +810,7 @@ class CfnCalculatedAttributeDefinition(
|
|
|
808
810
|
|
|
809
811
|
@builtins.property
|
|
810
812
|
def progress_percentage(self) -> typing.Optional[jsii.Number]:
|
|
811
|
-
'''
|
|
813
|
+
'''Approximately how far the Calculated Attribute creation is from completion.
|
|
812
814
|
|
|
813
815
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-readiness.html#cfn-customerprofiles-calculatedattributedefinition-readiness-progresspercentage
|
|
814
816
|
'''
|
|
@@ -899,10 +901,12 @@ class CfnCalculatedAttributeDefinition(
|
|
|
899
901
|
)
|
|
900
902
|
class ValueRangeProperty:
|
|
901
903
|
def __init__(self, *, end: jsii.Number, start: jsii.Number) -> None:
|
|
902
|
-
'''A structure
|
|
904
|
+
'''A structure letting customers specify a relative time window over which over which data is included in the Calculated Attribute.
|
|
905
|
+
|
|
906
|
+
Use positive numbers to indicate that the endpoint is in the past, and negative numbers to indicate it is in the future. ValueRange overrides Value.
|
|
903
907
|
|
|
904
|
-
:param end: The ending point for this range. Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
|
|
905
|
-
:param start: The starting point for this range. Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
|
|
908
|
+
:param end: The ending point for this overridden range. Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
|
|
909
|
+
:param start: The starting point for this overridden range. Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
|
|
906
910
|
|
|
907
911
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-valuerange.html
|
|
908
912
|
:exampleMetadata: fixture=_generated
|
|
@@ -929,7 +933,7 @@ class CfnCalculatedAttributeDefinition(
|
|
|
929
933
|
|
|
930
934
|
@builtins.property
|
|
931
935
|
def end(self) -> jsii.Number:
|
|
932
|
-
'''The ending point for this range.
|
|
936
|
+
'''The ending point for this overridden range.
|
|
933
937
|
|
|
934
938
|
Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
|
|
935
939
|
|
|
@@ -941,7 +945,7 @@ class CfnCalculatedAttributeDefinition(
|
|
|
941
945
|
|
|
942
946
|
@builtins.property
|
|
943
947
|
def start(self) -> jsii.Number:
|
|
944
|
-
'''The starting point for this range.
|
|
948
|
+
'''The starting point for this overridden range.
|
|
945
949
|
|
|
946
950
|
Positive numbers indicate how many days in the past data should be included, and negative numbers indicate how many days in the future.
|
|
947
951
|
|
|
@@ -8872,7 +8876,7 @@ class CfnSegmentDefinition(
|
|
|
8872
8876
|
:param party_type_string: A field to describe values to segment on within partyTypeString.
|
|
8873
8877
|
:param personal_email_address: A field to describe values to segment on within personal email address.
|
|
8874
8878
|
:param phone_number: A field to describe values to segment on within phone number.
|
|
8875
|
-
:param profile_type:
|
|
8879
|
+
:param profile_type: The type of profile.
|
|
8876
8880
|
:param shipping_address: A field to describe values to segment on within shipping address.
|
|
8877
8881
|
|
|
8878
8882
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html
|
|
@@ -9359,7 +9363,7 @@ class CfnSegmentDefinition(
|
|
|
9359
9363
|
def profile_type(
|
|
9360
9364
|
self,
|
|
9361
9365
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnSegmentDefinition.ProfileTypeDimensionProperty"]]:
|
|
9362
|
-
'''
|
|
9366
|
+
'''The type of profile.
|
|
9363
9367
|
|
|
9364
9368
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html#cfn-customerprofiles-segmentdefinition-profileattributes-profiletype
|
|
9365
9369
|
'''
|
|
@@ -9472,8 +9476,8 @@ class CfnSegmentDefinition(
|
|
|
9472
9476
|
) -> None:
|
|
9473
9477
|
'''Specifies profile type based criteria for a segment.
|
|
9474
9478
|
|
|
9475
|
-
:param dimension_type: The
|
|
9476
|
-
:param values:
|
|
9479
|
+
:param dimension_type: The action to segment on.
|
|
9480
|
+
:param values: The values to apply the DimensionType on.
|
|
9477
9481
|
|
|
9478
9482
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html
|
|
9479
9483
|
:exampleMetadata: fixture=_generated
|
|
@@ -9500,7 +9504,7 @@ class CfnSegmentDefinition(
|
|
|
9500
9504
|
|
|
9501
9505
|
@builtins.property
|
|
9502
9506
|
def dimension_type(self) -> builtins.str:
|
|
9503
|
-
'''The
|
|
9507
|
+
'''The action to segment on.
|
|
9504
9508
|
|
|
9505
9509
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html#cfn-customerprofiles-segmentdefinition-profiletypedimension-dimensiontype
|
|
9506
9510
|
'''
|
|
@@ -9510,7 +9514,8 @@ class CfnSegmentDefinition(
|
|
|
9510
9514
|
|
|
9511
9515
|
@builtins.property
|
|
9512
9516
|
def values(self) -> typing.List[builtins.str]:
|
|
9513
|
-
'''
|
|
9517
|
+
'''The values to apply the DimensionType on.
|
|
9518
|
+
|
|
9514
9519
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html#cfn-customerprofiles-segmentdefinition-profiletypedimension-values
|
|
9515
9520
|
'''
|
|
9516
9521
|
result = self._values.get("values")
|
aws_cdk/aws_docdb/__init__.py
CHANGED
|
@@ -644,7 +644,7 @@ class CfnDBCluster(
|
|
|
644
644
|
:param deletion_protection: Protects clusters from being accidentally deleted. If enabled, the cluster cannot be deleted unless it is modified and ``DeletionProtection`` is disabled.
|
|
645
645
|
:param enable_cloudwatch_logs_exports: The list of log types that need to be enabled for exporting to Amazon CloudWatch Logs. You can enable audit logs or profiler logs. For more information, see `Auditing Amazon DocumentDB Events <https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html>`_ and `Profiling Amazon DocumentDB Operations <https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html>`_ .
|
|
646
646
|
:param engine_version: The version number of the database engine to use. The ``--engine-version`` will default to the latest major engine version. For production workloads, we recommend explicitly declaring this parameter with the intended major engine version. If you intend to trigger an in-place upgrade, please refer to `Amazon DocumentDB in-place major version upgrade <https://docs.aws.amazon.com/documentdb/latest/developerguide/docdb-mvu.html>`_ . Note that for an in-place engine version upgrade, you need to remove other cluster properties changes (e.g. SecurityGroupId) from the CFN template.
|
|
647
|
-
:param global_cluster_identifier:
|
|
647
|
+
:param global_cluster_identifier: The cluster identifier of the new global cluster.
|
|
648
648
|
:param kms_key_id: The AWS KMS key identifier for an encrypted cluster. The AWS KMS key identifier is the Amazon Resource Name (ARN) for the AWS KMS encryption key. If you are creating a cluster using the same AWS account that owns the AWS KMS encryption key that is used to encrypt the new cluster, you can use the AWS KMS key alias instead of the ARN for the AWS KMS encryption key. If an encryption key is not specified in ``KmsKeyId`` : - If the ``StorageEncrypted`` parameter is ``true`` , Amazon DocumentDB uses your default encryption key. AWS KMS creates the default encryption key for your AWS account . Your AWS account has a different default encryption key for each AWS Regions .
|
|
649
649
|
:param manage_master_user_password: Specifies whether to manage the master user password with Amazon Web Services Secrets Manager. Constraint: You can't manage the master user password with Amazon Web Services Secrets Manager if ``MasterUserPassword`` is specified.
|
|
650
650
|
:param master_username: The name of the master user for the cluster. Constraints: - Must be from 1 to 63 letters or numbers. - The first character must be a letter. - Cannot be a reserved word for the chosen database engine.
|
|
@@ -943,6 +943,7 @@ class CfnDBCluster(
|
|
|
943
943
|
@builtins.property
|
|
944
944
|
@jsii.member(jsii_name="globalClusterIdentifier")
|
|
945
945
|
def global_cluster_identifier(self) -> typing.Optional[builtins.str]:
|
|
946
|
+
'''The cluster identifier of the new global cluster.'''
|
|
946
947
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "globalClusterIdentifier"))
|
|
947
948
|
|
|
948
949
|
@global_cluster_identifier.setter
|
|
@@ -1731,7 +1732,7 @@ class CfnDBClusterProps:
|
|
|
1731
1732
|
:param deletion_protection: Protects clusters from being accidentally deleted. If enabled, the cluster cannot be deleted unless it is modified and ``DeletionProtection`` is disabled.
|
|
1732
1733
|
:param enable_cloudwatch_logs_exports: The list of log types that need to be enabled for exporting to Amazon CloudWatch Logs. You can enable audit logs or profiler logs. For more information, see `Auditing Amazon DocumentDB Events <https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html>`_ and `Profiling Amazon DocumentDB Operations <https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html>`_ .
|
|
1733
1734
|
:param engine_version: The version number of the database engine to use. The ``--engine-version`` will default to the latest major engine version. For production workloads, we recommend explicitly declaring this parameter with the intended major engine version. If you intend to trigger an in-place upgrade, please refer to `Amazon DocumentDB in-place major version upgrade <https://docs.aws.amazon.com/documentdb/latest/developerguide/docdb-mvu.html>`_ . Note that for an in-place engine version upgrade, you need to remove other cluster properties changes (e.g. SecurityGroupId) from the CFN template.
|
|
1734
|
-
:param global_cluster_identifier:
|
|
1735
|
+
:param global_cluster_identifier: The cluster identifier of the new global cluster.
|
|
1735
1736
|
:param kms_key_id: The AWS KMS key identifier for an encrypted cluster. The AWS KMS key identifier is the Amazon Resource Name (ARN) for the AWS KMS encryption key. If you are creating a cluster using the same AWS account that owns the AWS KMS encryption key that is used to encrypt the new cluster, you can use the AWS KMS key alias instead of the ARN for the AWS KMS encryption key. If an encryption key is not specified in ``KmsKeyId`` : - If the ``StorageEncrypted`` parameter is ``true`` , Amazon DocumentDB uses your default encryption key. AWS KMS creates the default encryption key for your AWS account . Your AWS account has a different default encryption key for each AWS Regions .
|
|
1736
1737
|
:param manage_master_user_password: Specifies whether to manage the master user password with Amazon Web Services Secrets Manager. Constraint: You can't manage the master user password with Amazon Web Services Secrets Manager if ``MasterUserPassword`` is specified.
|
|
1737
1738
|
:param master_username: The name of the master user for the cluster. Constraints: - Must be from 1 to 63 letters or numbers. - The first character must be a letter. - Cannot be a reserved word for the chosen database engine.
|
|
@@ -2012,7 +2013,8 @@ class CfnDBClusterProps:
|
|
|
2012
2013
|
|
|
2013
2014
|
@builtins.property
|
|
2014
2015
|
def global_cluster_identifier(self) -> typing.Optional[builtins.str]:
|
|
2015
|
-
'''
|
|
2016
|
+
'''The cluster identifier of the new global cluster.
|
|
2017
|
+
|
|
2016
2018
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html#cfn-docdb-dbcluster-globalclusteridentifier
|
|
2017
2019
|
'''
|
|
2018
2020
|
result = self._values.get("global_cluster_identifier")
|