aws-cdk-lib 2.206.0__py3-none-any.whl → 2.208.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 +96 -15
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.206.0.jsii.tgz → aws-cdk-lib@2.208.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +70 -76
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_autoscaling/__init__.py +20 -0
- aws_cdk/aws_bedrock/__init__.py +317 -142
- aws_cdk/aws_certificatemanager/__init__.py +48 -3
- aws_cdk/aws_cleanrooms/__init__.py +6 -2
- aws_cdk/aws_cloudformation/__init__.py +28 -15
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +574 -33
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_datasync/__init__.py +14 -15
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +59 -13
- aws_cdk/aws_ecs/__init__.py +185 -47
- 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_iotsitewise/__init__.py +13 -9
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_kms/__init__.py +19 -17
- aws_cdk/aws_logs/__init__.py +4775 -764
- aws_cdk/aws_mediapackagev2/__init__.py +950 -48
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_opsworkscm/__init__.py +2 -4
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +358 -27
- aws_cdk/aws_s3/__init__.py +781 -8
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +527 -140
- aws_cdk/aws_ssm/__init__.py +106 -33
- aws_cdk/aws_transfer/__init__.py +70 -11
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/RECORD +44 -44
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.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,9 +949,10 @@ 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
|
-
: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.html#algorithms>`_ . .. 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
|
|
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
|
|
953
956
|
: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.
|
|
954
957
|
:param tags: Key-value pairs that can identify the certificate.
|
|
955
958
|
:param validation_method: The method you want to use to validate that you own or control the domain associated with a public certificate. You can `validate with DNS <https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html>`_ or `validate with email <https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html>`_ . We recommend that you use DNS validation. If not specified, this property defaults to email validation.
|
|
@@ -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,9 +1302,10 @@ 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
|
-
: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.html#algorithms>`_ . .. 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
|
|
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
|
|
1289
1309
|
: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.
|
|
1290
1310
|
:param tags: Key-value pairs that can identify the certificate.
|
|
1291
1311
|
:param validation_method: The method you want to use to validate that you own or control the domain associated with a public certificate. You can `validate with DNS <https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html>`_ or `validate with email <https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html>`_ . We recommend that you use DNS validation. If not specified, this property defaults to email validation.
|
|
@@ -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,
|
|
@@ -1406,7 +1443,7 @@ class CfnCertificateProps:
|
|
|
1406
1443
|
def key_algorithm(self) -> typing.Optional[builtins.str]:
|
|
1407
1444
|
'''Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data.
|
|
1408
1445
|
|
|
1409
|
-
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.html#algorithms>`_ .
|
|
1446
|
+
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>`_ .
|
|
1410
1447
|
.. epigraph::
|
|
1411
1448
|
|
|
1412
1449
|
Algorithms supported for an ACM certificate request include:
|
|
@@ -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,
|
|
@@ -1473,7 +1473,7 @@ class CfnCollaboration(
|
|
|
1473
1473
|
:param description: A description of the collaboration provided by the collaboration owner.
|
|
1474
1474
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
1475
1475
|
: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`` .
|
|
1476
|
-
:param analytics_engine: The analytics engine for the collaboration.
|
|
1476
|
+
:param analytics_engine: The analytics engine for the collaboration. .. epigraph:: After July 16, 2025, the ``CLEAN_ROOMS_SQL`` parameter will no longer be available.
|
|
1477
1477
|
:param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
|
|
1478
1478
|
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
1479
1479
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
@@ -2536,7 +2536,7 @@ class CfnCollaborationProps:
|
|
|
2536
2536
|
:param description: A description of the collaboration provided by the collaboration owner.
|
|
2537
2537
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
2538
2538
|
: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`` .
|
|
2539
|
-
:param analytics_engine: The analytics engine for the collaboration.
|
|
2539
|
+
:param analytics_engine: The analytics engine for the collaboration. .. epigraph:: After July 16, 2025, the ``CLEAN_ROOMS_SQL`` parameter will no longer be available.
|
|
2540
2540
|
:param creator_member_abilities: The abilities granted to the collaboration creator. *Allowed values* ``CAN_QUERY`` | ``CAN_RECEIVE_RESULTS`` | ``CAN_RUN_JOB``
|
|
2541
2541
|
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
2542
2542
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
@@ -2710,6 +2710,10 @@ class CfnCollaborationProps:
|
|
|
2710
2710
|
def analytics_engine(self) -> typing.Optional[builtins.str]:
|
|
2711
2711
|
'''The analytics engine for the collaboration.
|
|
2712
2712
|
|
|
2713
|
+
.. epigraph::
|
|
2714
|
+
|
|
2715
|
+
After July 16, 2025, the ``CLEAN_ROOMS_SQL`` parameter will no longer be available.
|
|
2716
|
+
|
|
2713
2717
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-analyticsengine
|
|
2714
2718
|
'''
|
|
2715
2719
|
result = self._values.get("analytics_engine")
|
|
@@ -6414,7 +6414,9 @@ class CfnStackSet(
|
|
|
6414
6414
|
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6415
6415
|
retain_stacks_on_account_removal: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6416
6416
|
) -> None:
|
|
6417
|
-
'''
|
|
6417
|
+
'''Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).
|
|
6418
|
+
|
|
6419
|
+
For more information, see `Enable or disable automatic deployments for StackSets in AWS Organizations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-manage-auto-deployment.html>`_ in the *AWS CloudFormation User Guide* .
|
|
6418
6420
|
|
|
6419
6421
|
:param enabled: If set to ``true`` , StackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions. If an account is removed from a target organization or OU, StackSets deletes stack instances from the account in the specified Regions.
|
|
6420
6422
|
:param retain_stacks_on_account_removal: If set to ``true`` , stack resources are retained when an account is removed from a target organization or OU. If set to ``false`` , stack resources are deleted. Specify only if ``Enabled`` is set to ``True`` .
|
|
@@ -6499,11 +6501,20 @@ class CfnStackSet(
|
|
|
6499
6501
|
accounts_url: typing.Optional[builtins.str] = None,
|
|
6500
6502
|
organizational_unit_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6501
6503
|
) -> None:
|
|
6502
|
-
'''The AWS
|
|
6504
|
+
'''The AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.
|
|
6505
|
+
|
|
6506
|
+
When deploying to AWS Organizations accounts with ``SERVICE_MANAGED`` permissions:
|
|
6507
|
+
|
|
6508
|
+
- You must specify the ``OrganizationalUnitIds`` property.
|
|
6509
|
+
- If you specify organizational units (OUs) for ``OrganizationalUnitIds`` and use either the ``Accounts`` or ``AccountsUrl`` property, you must also specify the ``AccountFilterType`` property.
|
|
6503
6510
|
|
|
6504
|
-
|
|
6511
|
+
When deploying to AWS accounts with ``SELF_MANAGED`` permissions:
|
|
6512
|
+
|
|
6513
|
+
- You must specify either the ``Accounts`` or ``AccountsUrl`` property, but not both.
|
|
6514
|
+
|
|
6515
|
+
:param account_filter_type: Refines which accounts to deploy stacks to by specifying how to use the ``Accounts`` and ``OrganizationalUnitIds`` properties together. The following values determine how CloudFormation selects target accounts: - ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` property. - ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` property. - ``UNION`` : StackSet deploys to the OU, and the accounts specified in the ``Accounts`` property. ``UNION`` is not supported for create operations when using StackSet as a resource or the ``CreateStackInstances`` API.
|
|
6505
6516
|
:param accounts: The account IDs of the AWS accounts . If you have many account numbers, you can provide those accounts using the ``AccountsUrl`` property instead. *Pattern* : ``^[0-9]{12}$``
|
|
6506
|
-
:param accounts_url: The Amazon S3 URL path to a file that contains a list of AWS account IDs. The file format must be either ``.csv`` or ``.txt`` , and the data can be comma-separated or new-line-separated. There is currently a 10MB limit for the data (approximately 800,000 accounts).
|
|
6517
|
+
:param accounts_url: The Amazon S3 URL path to a file that contains a list of AWS account IDs. The file format must be either ``.csv`` or ``.txt`` , and the data can be comma-separated or new-line-separated. There is currently a 10MB limit for the data (approximately 800,000 accounts). This property serves the same purpose as ``Accounts`` but allows you to specify a large number of accounts.
|
|
6507
6518
|
:param organizational_unit_ids: The organization root ID or organizational unit (OU) IDs. *Pattern* : ``^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$``
|
|
6508
6519
|
|
|
6509
6520
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.html
|
|
@@ -6540,13 +6551,13 @@ class CfnStackSet(
|
|
|
6540
6551
|
|
|
6541
6552
|
@builtins.property
|
|
6542
6553
|
def account_filter_type(self) -> typing.Optional[builtins.str]:
|
|
6543
|
-
'''
|
|
6554
|
+
'''Refines which accounts to deploy stacks to by specifying how to use the ``Accounts`` and ``OrganizationalUnitIds`` properties together.
|
|
6544
6555
|
|
|
6545
|
-
The following
|
|
6556
|
+
The following values determine how CloudFormation selects target accounts:
|
|
6546
6557
|
|
|
6547
|
-
- ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts``
|
|
6548
|
-
- ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts``
|
|
6549
|
-
- ``UNION`` StackSet deploys to the OU, and the accounts specified in the ``Accounts``
|
|
6558
|
+
- ``INTERSECTION`` : StackSet deploys to the accounts specified in the ``Accounts`` property.
|
|
6559
|
+
- ``DIFFERENCE`` : StackSet deploys to the OU, excluding the accounts specified in the ``Accounts`` property.
|
|
6560
|
+
- ``UNION`` : StackSet deploys to the OU, and the accounts specified in the ``Accounts`` property. ``UNION`` is not supported for create operations when using StackSet as a resource or the ``CreateStackInstances`` API.
|
|
6550
6561
|
|
|
6551
6562
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.html#cfn-cloudformation-stackset-deploymenttargets-accountfiltertype
|
|
6552
6563
|
'''
|
|
@@ -6572,6 +6583,8 @@ class CfnStackSet(
|
|
|
6572
6583
|
|
|
6573
6584
|
The file format must be either ``.csv`` or ``.txt`` , and the data can be comma-separated or new-line-separated. There is currently a 10MB limit for the data (approximately 800,000 accounts).
|
|
6574
6585
|
|
|
6586
|
+
This property serves the same purpose as ``Accounts`` but allows you to specify a large number of accounts.
|
|
6587
|
+
|
|
6575
6588
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-deploymenttargets.html#cfn-cloudformation-stackset-deploymenttargets-accountsurl
|
|
6576
6589
|
'''
|
|
6577
6590
|
result = self._values.get("accounts_url")
|
|
@@ -6612,7 +6625,7 @@ class CfnStackSet(
|
|
|
6612
6625
|
) -> None:
|
|
6613
6626
|
'''Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.
|
|
6614
6627
|
|
|
6615
|
-
:param active: When ``true`` ,
|
|
6628
|
+
:param active: When ``true`` , CloudFormation performs non-conflicting operations concurrently and queues conflicting operations. After conflicting operations finish, CloudFormation starts queued operations in request order. .. epigraph:: If there are already running or queued operations, CloudFormation queues all incoming operations even if they are non-conflicting. You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet. When ``false`` (default), StackSets performs one operation at a time in request order.
|
|
6616
6629
|
|
|
6617
6630
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-managedexecution.html
|
|
6618
6631
|
:exampleMetadata: fixture=_generated
|
|
@@ -6638,12 +6651,12 @@ class CfnStackSet(
|
|
|
6638
6651
|
def active(
|
|
6639
6652
|
self,
|
|
6640
6653
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
6641
|
-
'''When ``true`` ,
|
|
6654
|
+
'''When ``true`` , CloudFormation performs non-conflicting operations concurrently and queues conflicting operations.
|
|
6642
6655
|
|
|
6643
|
-
After conflicting operations finish,
|
|
6656
|
+
After conflicting operations finish, CloudFormation starts queued operations in request order.
|
|
6644
6657
|
.. epigraph::
|
|
6645
6658
|
|
|
6646
|
-
If there are already running or queued operations,
|
|
6659
|
+
If there are already running or queued operations, CloudFormation queues all incoming operations even if they are non-conflicting.
|
|
6647
6660
|
|
|
6648
6661
|
You can't modify your StackSet's execution configuration while there are running or queued operations for that StackSet.
|
|
6649
6662
|
|
|
@@ -6943,7 +6956,7 @@ class CfnStackSet(
|
|
|
6943
6956
|
) -> None:
|
|
6944
6957
|
'''Stack instances in some specific accounts and Regions.
|
|
6945
6958
|
|
|
6946
|
-
:param deployment_targets: The AWS
|
|
6959
|
+
:param deployment_targets: The AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.
|
|
6947
6960
|
:param regions: The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
|
|
6948
6961
|
:param parameter_overrides: A list of StackSet parameters whose values you want to override in the selected stack instances.
|
|
6949
6962
|
|
|
@@ -6988,7 +7001,7 @@ class CfnStackSet(
|
|
|
6988
7001
|
def deployment_targets(
|
|
6989
7002
|
self,
|
|
6990
7003
|
) -> typing.Union[_IResolvable_da3f097b, "CfnStackSet.DeploymentTargetsProperty"]:
|
|
6991
|
-
'''The AWS
|
|
7004
|
+
'''The AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.
|
|
6992
7005
|
|
|
6993
7006
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-stackinstances.html#cfn-cloudformation-stackset-stackinstances-deploymenttargets
|
|
6994
7007
|
'''
|
|
@@ -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
|
'''
|