aws-cdk-lib 2.187.0__py3-none-any.whl → 2.188.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.

Files changed (53) hide show
  1. aws_cdk/__init__.py +22 -3
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.187.0.jsii.tgz → aws-cdk-lib@2.188.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_amplify/__init__.py +21 -9
  5. aws_cdk/aws_apigateway/__init__.py +25 -19
  6. aws_cdk/aws_apigatewayv2/__init__.py +88 -0
  7. aws_cdk/aws_appconfig/__init__.py +30 -14
  8. aws_cdk/aws_arczonalshift/__init__.py +4 -4
  9. aws_cdk/aws_bedrock/__init__.py +605 -10
  10. aws_cdk/aws_budgets/__init__.py +8 -8
  11. aws_cdk/aws_cassandra/__init__.py +3 -1
  12. aws_cdk/aws_ce/__init__.py +2 -2
  13. aws_cdk/aws_cloudformation/__init__.py +3 -3
  14. aws_cdk/aws_codebuild/__init__.py +23 -1
  15. aws_cdk/aws_codepipeline/__init__.py +47 -32
  16. aws_cdk/aws_codepipeline_actions/__init__.py +2786 -1042
  17. aws_cdk/aws_codestarnotifications/__init__.py +16 -16
  18. aws_cdk/aws_cognito/__init__.py +8 -2
  19. aws_cdk/aws_ec2/__init__.py +2091 -227
  20. aws_cdk/aws_eks/__init__.py +112 -10
  21. aws_cdk/aws_events_targets/__init__.py +136 -0
  22. aws_cdk/aws_gamelift/__init__.py +5 -5
  23. aws_cdk/aws_iam/__init__.py +6 -4
  24. aws_cdk/aws_identitystore/__init__.py +15 -13
  25. aws_cdk/aws_kinesisfirehose/__init__.py +38 -0
  26. aws_cdk/aws_lambda_event_sources/__init__.py +22 -22
  27. aws_cdk/aws_lex/__init__.py +21 -17
  28. aws_cdk/aws_logs/__init__.py +18 -0
  29. aws_cdk/aws_logs_destinations/__init__.py +146 -0
  30. aws_cdk/aws_notifications/__init__.py +4 -4
  31. aws_cdk/aws_omics/__init__.py +9 -1
  32. aws_cdk/aws_opensearchserverless/__init__.py +31 -23
  33. aws_cdk/aws_organizations/__init__.py +1 -1
  34. aws_cdk/aws_pcaconnectorad/__init__.py +3 -2
  35. aws_cdk/aws_quicksight/__init__.py +35 -22
  36. aws_cdk/aws_rds/__init__.py +84 -0
  37. aws_cdk/aws_route53/__init__.py +3 -3
  38. aws_cdk/aws_route53recoverycontrol/__init__.py +4 -6
  39. aws_cdk/aws_rum/__init__.py +13 -10
  40. aws_cdk/aws_s3/__init__.py +3 -6
  41. aws_cdk/aws_sagemaker/__init__.py +41 -0
  42. aws_cdk/aws_ssmincidents/__init__.py +10 -10
  43. aws_cdk/aws_systemsmanagersap/__init__.py +17 -7
  44. aws_cdk/aws_transfer/__init__.py +19 -10
  45. aws_cdk/aws_wafv2/__init__.py +80 -35
  46. aws_cdk/cx_api/__init__.py +23 -2
  47. aws_cdk/pipelines/__init__.py +32 -0
  48. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/METADATA +1 -1
  49. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/RECORD +53 -53
  50. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/LICENSE +0 -0
  51. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/NOTICE +0 -0
  52. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/WHEEL +0 -0
  53. {aws_cdk_lib-2.187.0.dist-info → aws_cdk_lib-2.188.0.dist-info}/top_level.txt +0 -0
@@ -842,6 +842,7 @@ class CfnApi(
842
842
  disable_execute_api_endpoint=False,
843
843
  disable_schema_validation=False,
844
844
  fail_on_warnings=False,
845
+ ip_address_type="ipAddressType",
845
846
  name="name",
846
847
  protocol_type="protocolType",
847
848
  route_key="routeKey",
@@ -869,6 +870,7 @@ class CfnApi(
869
870
  disable_execute_api_endpoint: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
870
871
  disable_schema_validation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
871
872
  fail_on_warnings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
873
+ ip_address_type: typing.Optional[builtins.str] = None,
872
874
  name: typing.Optional[builtins.str] = None,
873
875
  protocol_type: typing.Optional[builtins.str] = None,
874
876
  route_key: typing.Optional[builtins.str] = None,
@@ -890,6 +892,7 @@ class CfnApi(
890
892
  :param disable_execute_api_endpoint: Specifies whether clients can invoke your API by using the default ``execute-api`` endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.
891
893
  :param disable_schema_validation: Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
892
894
  :param fail_on_warnings: Specifies whether to rollback the API creation when a warning is encountered. By default, API creation continues if a warning is encountered.
895
+ :param ip_address_type: The IP address types that can invoke the API. Use ``ipv4`` to allow only IPv4 addresses to invoke your API, or use ``dualstack`` to allow both IPv4 and IPv6 addresses to invoke your API. Don’t use IP address type for an HTTP API based on an OpenAPI specification. Instead, specify the IP address type in the OpenAPI specification.
893
896
  :param name: The name of the API. Required unless you specify an OpenAPI definition for ``Body`` or ``S3BodyLocation`` .
894
897
  :param protocol_type: The API protocol. Valid values are ``WEBSOCKET`` or ``HTTP`` . Required unless you specify an OpenAPI definition for ``Body`` or ``S3BodyLocation`` .
895
898
  :param route_key: This property is part of quick create. If you don't specify a ``routeKey`` , a default route of ``$default`` is created. The ``$default`` route acts as a catch-all for any request made to your API, for a particular stage. The ``$default`` route key can't be modified. You can add routes after creating the API, and you can update the route keys of additional routes. Supported only for HTTP APIs.
@@ -913,6 +916,7 @@ class CfnApi(
913
916
  disable_execute_api_endpoint=disable_execute_api_endpoint,
914
917
  disable_schema_validation=disable_schema_validation,
915
918
  fail_on_warnings=fail_on_warnings,
919
+ ip_address_type=ip_address_type,
916
920
  name=name,
917
921
  protocol_type=protocol_type,
918
922
  route_key=route_key,
@@ -1143,6 +1147,19 @@ class CfnApi(
1143
1147
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1144
1148
  jsii.set(self, "failOnWarnings", value) # pyright: ignore[reportArgumentType]
1145
1149
 
1150
+ @builtins.property
1151
+ @jsii.member(jsii_name="ipAddressType")
1152
+ def ip_address_type(self) -> typing.Optional[builtins.str]:
1153
+ '''The IP address types that can invoke the API.'''
1154
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ipAddressType"))
1155
+
1156
+ @ip_address_type.setter
1157
+ def ip_address_type(self, value: typing.Optional[builtins.str]) -> None:
1158
+ if __debug__:
1159
+ type_hints = typing.get_type_hints(_typecheckingstub__2a1eb652a1c167ca6cb7d9b75ef226df1b04d95736668747822e7afa0766e2fd)
1160
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1161
+ jsii.set(self, "ipAddressType", value) # pyright: ignore[reportArgumentType]
1162
+
1146
1163
  @builtins.property
1147
1164
  @jsii.member(jsii_name="name")
1148
1165
  def name(self) -> typing.Optional[builtins.str]:
@@ -2732,6 +2749,7 @@ class CfnApiMappingProps:
2732
2749
  "disable_execute_api_endpoint": "disableExecuteApiEndpoint",
2733
2750
  "disable_schema_validation": "disableSchemaValidation",
2734
2751
  "fail_on_warnings": "failOnWarnings",
2752
+ "ip_address_type": "ipAddressType",
2735
2753
  "name": "name",
2736
2754
  "protocol_type": "protocolType",
2737
2755
  "route_key": "routeKey",
@@ -2755,6 +2773,7 @@ class CfnApiProps:
2755
2773
  disable_execute_api_endpoint: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2756
2774
  disable_schema_validation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2757
2775
  fail_on_warnings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2776
+ ip_address_type: typing.Optional[builtins.str] = None,
2758
2777
  name: typing.Optional[builtins.str] = None,
2759
2778
  protocol_type: typing.Optional[builtins.str] = None,
2760
2779
  route_key: typing.Optional[builtins.str] = None,
@@ -2775,6 +2794,7 @@ class CfnApiProps:
2775
2794
  :param disable_execute_api_endpoint: Specifies whether clients can invoke your API by using the default ``execute-api`` endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.
2776
2795
  :param disable_schema_validation: Avoid validating models when creating a deployment. Supported only for WebSocket APIs.
2777
2796
  :param fail_on_warnings: Specifies whether to rollback the API creation when a warning is encountered. By default, API creation continues if a warning is encountered.
2797
+ :param ip_address_type: The IP address types that can invoke the API. Use ``ipv4`` to allow only IPv4 addresses to invoke your API, or use ``dualstack`` to allow both IPv4 and IPv6 addresses to invoke your API. Don’t use IP address type for an HTTP API based on an OpenAPI specification. Instead, specify the IP address type in the OpenAPI specification.
2778
2798
  :param name: The name of the API. Required unless you specify an OpenAPI definition for ``Body`` or ``S3BodyLocation`` .
2779
2799
  :param protocol_type: The API protocol. Valid values are ``WEBSOCKET`` or ``HTTP`` . Required unless you specify an OpenAPI definition for ``Body`` or ``S3BodyLocation`` .
2780
2800
  :param route_key: This property is part of quick create. If you don't specify a ``routeKey`` , a default route of ``$default`` is created. The ``$default`` route acts as a catch-all for any request made to your API, for a particular stage. The ``$default`` route key can't be modified. You can add routes after creating the API, and you can update the route keys of additional routes. Supported only for HTTP APIs.
@@ -2817,6 +2837,7 @@ class CfnApiProps:
2817
2837
  disable_execute_api_endpoint=False,
2818
2838
  disable_schema_validation=False,
2819
2839
  fail_on_warnings=False,
2840
+ ip_address_type="ipAddressType",
2820
2841
  name="name",
2821
2842
  protocol_type="protocolType",
2822
2843
  route_key="routeKey",
@@ -2840,6 +2861,7 @@ class CfnApiProps:
2840
2861
  check_type(argname="argument disable_execute_api_endpoint", value=disable_execute_api_endpoint, expected_type=type_hints["disable_execute_api_endpoint"])
2841
2862
  check_type(argname="argument disable_schema_validation", value=disable_schema_validation, expected_type=type_hints["disable_schema_validation"])
2842
2863
  check_type(argname="argument fail_on_warnings", value=fail_on_warnings, expected_type=type_hints["fail_on_warnings"])
2864
+ check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
2843
2865
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
2844
2866
  check_type(argname="argument protocol_type", value=protocol_type, expected_type=type_hints["protocol_type"])
2845
2867
  check_type(argname="argument route_key", value=route_key, expected_type=type_hints["route_key"])
@@ -2868,6 +2890,8 @@ class CfnApiProps:
2868
2890
  self._values["disable_schema_validation"] = disable_schema_validation
2869
2891
  if fail_on_warnings is not None:
2870
2892
  self._values["fail_on_warnings"] = fail_on_warnings
2893
+ if ip_address_type is not None:
2894
+ self._values["ip_address_type"] = ip_address_type
2871
2895
  if name is not None:
2872
2896
  self._values["name"] = name
2873
2897
  if protocol_type is not None:
@@ -3001,6 +3025,19 @@ class CfnApiProps:
3001
3025
  result = self._values.get("fail_on_warnings")
3002
3026
  return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
3003
3027
 
3028
+ @builtins.property
3029
+ def ip_address_type(self) -> typing.Optional[builtins.str]:
3030
+ '''The IP address types that can invoke the API.
3031
+
3032
+ Use ``ipv4`` to allow only IPv4 addresses to invoke your API, or use ``dualstack`` to allow both IPv4 and IPv6 addresses to invoke your API.
3033
+
3034
+ Don’t use IP address type for an HTTP API based on an OpenAPI specification. Instead, specify the IP address type in the OpenAPI specification.
3035
+
3036
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-api.html#cfn-apigatewayv2-api-ipaddresstype
3037
+ '''
3038
+ result = self._values.get("ip_address_type")
3039
+ return typing.cast(typing.Optional[builtins.str], result)
3040
+
3004
3041
  @builtins.property
3005
3042
  def name(self) -> typing.Optional[builtins.str]:
3006
3043
  '''The name of the API.
@@ -3970,6 +4007,7 @@ class CfnDomainName(
3970
4007
  certificate_arn="certificateArn",
3971
4008
  certificate_name="certificateName",
3972
4009
  endpoint_type="endpointType",
4010
+ ip_address_type="ipAddressType",
3973
4011
  ownership_verification_certificate_arn="ownershipVerificationCertificateArn",
3974
4012
  security_policy="securityPolicy"
3975
4013
  )],
@@ -4156,6 +4194,7 @@ class CfnDomainName(
4156
4194
  "certificate_arn": "certificateArn",
4157
4195
  "certificate_name": "certificateName",
4158
4196
  "endpoint_type": "endpointType",
4197
+ "ip_address_type": "ipAddressType",
4159
4198
  "ownership_verification_certificate_arn": "ownershipVerificationCertificateArn",
4160
4199
  "security_policy": "securityPolicy",
4161
4200
  },
@@ -4167,6 +4206,7 @@ class CfnDomainName(
4167
4206
  certificate_arn: typing.Optional[builtins.str] = None,
4168
4207
  certificate_name: typing.Optional[builtins.str] = None,
4169
4208
  endpoint_type: typing.Optional[builtins.str] = None,
4209
+ ip_address_type: typing.Optional[builtins.str] = None,
4170
4210
  ownership_verification_certificate_arn: typing.Optional[builtins.str] = None,
4171
4211
  security_policy: typing.Optional[builtins.str] = None,
4172
4212
  ) -> None:
@@ -4177,6 +4217,7 @@ class CfnDomainName(
4177
4217
  :param certificate_arn: An AWS -managed certificate that will be used by the edge-optimized endpoint for this domain name. AWS Certificate Manager is the only supported source.
4178
4218
  :param certificate_name: The user-friendly name of the certificate that will be used by the edge-optimized endpoint for this domain name.
4179
4219
  :param endpoint_type: The endpoint type.
4220
+ :param ip_address_type: The IP address types that can invoke the domain name. Use ``ipv4`` to allow only IPv4 addresses to invoke your domain name, or use ``dualstack`` to allow both IPv4 and IPv6 addresses to invoke your domain name.
4180
4221
  :param ownership_verification_certificate_arn: The Amazon resource name (ARN) for the public certificate issued by AWS Certificate Manager . This ARN is used to validate custom domain ownership. It's required only if you configure mutual TLS and use either an ACM-imported or a private CA certificate ARN as the regionalCertificateArn.
4181
4222
  :param security_policy: The Transport Layer Security (TLS) version of the security policy for this domain name. The valid values are ``TLS_1_0`` and ``TLS_1_2`` .
4182
4223
 
@@ -4193,6 +4234,7 @@ class CfnDomainName(
4193
4234
  certificate_arn="certificateArn",
4194
4235
  certificate_name="certificateName",
4195
4236
  endpoint_type="endpointType",
4237
+ ip_address_type="ipAddressType",
4196
4238
  ownership_verification_certificate_arn="ownershipVerificationCertificateArn",
4197
4239
  security_policy="securityPolicy"
4198
4240
  )
@@ -4202,6 +4244,7 @@ class CfnDomainName(
4202
4244
  check_type(argname="argument certificate_arn", value=certificate_arn, expected_type=type_hints["certificate_arn"])
4203
4245
  check_type(argname="argument certificate_name", value=certificate_name, expected_type=type_hints["certificate_name"])
4204
4246
  check_type(argname="argument endpoint_type", value=endpoint_type, expected_type=type_hints["endpoint_type"])
4247
+ check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
4205
4248
  check_type(argname="argument ownership_verification_certificate_arn", value=ownership_verification_certificate_arn, expected_type=type_hints["ownership_verification_certificate_arn"])
4206
4249
  check_type(argname="argument security_policy", value=security_policy, expected_type=type_hints["security_policy"])
4207
4250
  self._values: typing.Dict[builtins.str, typing.Any] = {}
@@ -4211,6 +4254,8 @@ class CfnDomainName(
4211
4254
  self._values["certificate_name"] = certificate_name
4212
4255
  if endpoint_type is not None:
4213
4256
  self._values["endpoint_type"] = endpoint_type
4257
+ if ip_address_type is not None:
4258
+ self._values["ip_address_type"] = ip_address_type
4214
4259
  if ownership_verification_certificate_arn is not None:
4215
4260
  self._values["ownership_verification_certificate_arn"] = ownership_verification_certificate_arn
4216
4261
  if security_policy is not None:
@@ -4245,6 +4290,17 @@ class CfnDomainName(
4245
4290
  result = self._values.get("endpoint_type")
4246
4291
  return typing.cast(typing.Optional[builtins.str], result)
4247
4292
 
4293
+ @builtins.property
4294
+ def ip_address_type(self) -> typing.Optional[builtins.str]:
4295
+ '''The IP address types that can invoke the domain name.
4296
+
4297
+ Use ``ipv4`` to allow only IPv4 addresses to invoke your domain name, or use ``dualstack`` to allow both IPv4 and IPv6 addresses to invoke your domain name.
4298
+
4299
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-domainname-domainnameconfiguration.html#cfn-apigatewayv2-domainname-domainnameconfiguration-ipaddresstype
4300
+ '''
4301
+ result = self._values.get("ip_address_type")
4302
+ return typing.cast(typing.Optional[builtins.str], result)
4303
+
4248
4304
  @builtins.property
4249
4305
  def ownership_verification_certificate_arn(
4250
4306
  self,
@@ -4403,6 +4459,7 @@ class CfnDomainNameProps:
4403
4459
  certificate_arn="certificateArn",
4404
4460
  certificate_name="certificateName",
4405
4461
  endpoint_type="endpointType",
4462
+ ip_address_type="ipAddressType",
4406
4463
  ownership_verification_certificate_arn="ownershipVerificationCertificateArn",
4407
4464
  security_policy="securityPolicy"
4408
4465
  )],
@@ -10970,6 +11027,17 @@ class IHttpApi(IApi, typing_extensions.Protocol):
10970
11027
  '''
10971
11028
  ...
10972
11029
 
11030
+ @builtins.property
11031
+ @jsii.member(jsii_name="defaultStage")
11032
+ def default_stage(self) -> typing.Optional["IHttpStage"]:
11033
+ '''The default stage of this API.
11034
+
11035
+ :default: - a stage will be created
11036
+
11037
+ :attribute: true
11038
+ '''
11039
+ ...
11040
+
10973
11041
  @jsii.member(jsii_name="addVpcLink")
10974
11042
  def add_vpc_link(
10975
11043
  self,
@@ -11241,6 +11309,17 @@ class _IHttpApiProxy(
11241
11309
  '''
11242
11310
  return typing.cast(typing.Optional["IHttpRouteAuthorizer"], jsii.get(self, "defaultAuthorizer"))
11243
11311
 
11312
+ @builtins.property
11313
+ @jsii.member(jsii_name="defaultStage")
11314
+ def default_stage(self) -> typing.Optional["IHttpStage"]:
11315
+ '''The default stage of this API.
11316
+
11317
+ :default: - a stage will be created
11318
+
11319
+ :attribute: true
11320
+ '''
11321
+ return typing.cast(typing.Optional["IHttpStage"], jsii.get(self, "defaultStage"))
11322
+
11244
11323
  @jsii.member(jsii_name="addVpcLink")
11245
11324
  def add_vpc_link(
11246
11325
  self,
@@ -18812,6 +18891,7 @@ def _typecheckingstub__1db7633eb849c7234f54cf8f50ef6e4c6273ca1ab60db537f47e511e2
18812
18891
  disable_execute_api_endpoint: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
18813
18892
  disable_schema_validation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
18814
18893
  fail_on_warnings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
18894
+ ip_address_type: typing.Optional[builtins.str] = None,
18815
18895
  name: typing.Optional[builtins.str] = None,
18816
18896
  protocol_type: typing.Optional[builtins.str] = None,
18817
18897
  route_key: typing.Optional[builtins.str] = None,
@@ -18895,6 +18975,12 @@ def _typecheckingstub__2ce8eb7264be44ff3a6ae79c6be6a193c31eb617518209aeb51c346aa
18895
18975
  """Type checking stubs"""
18896
18976
  pass
18897
18977
 
18978
+ def _typecheckingstub__2a1eb652a1c167ca6cb7d9b75ef226df1b04d95736668747822e7afa0766e2fd(
18979
+ value: typing.Optional[builtins.str],
18980
+ ) -> None:
18981
+ """Type checking stubs"""
18982
+ pass
18983
+
18898
18984
  def _typecheckingstub__6de2f3d46e4a0275374cdfba39222daec1a50d7516f00756e898551462523fb6(
18899
18985
  value: typing.Optional[builtins.str],
18900
18986
  ) -> None:
@@ -19139,6 +19225,7 @@ def _typecheckingstub__de72efdeda792916a7e0a8d8953153208abe93b442ac8056802f749d4
19139
19225
  disable_execute_api_endpoint: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
19140
19226
  disable_schema_validation: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
19141
19227
  fail_on_warnings: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
19228
+ ip_address_type: typing.Optional[builtins.str] = None,
19142
19229
  name: typing.Optional[builtins.str] = None,
19143
19230
  protocol_type: typing.Optional[builtins.str] = None,
19144
19231
  route_key: typing.Optional[builtins.str] = None,
@@ -19375,6 +19462,7 @@ def _typecheckingstub__faaf4905cea99e081f1f881fa68755b4ec1bc0ed8f4e145c30baf36d9
19375
19462
  certificate_arn: typing.Optional[builtins.str] = None,
19376
19463
  certificate_name: typing.Optional[builtins.str] = None,
19377
19464
  endpoint_type: typing.Optional[builtins.str] = None,
19465
+ ip_address_type: typing.Optional[builtins.str] = None,
19378
19466
  ownership_verification_certificate_arn: typing.Optional[builtins.str] = None,
19379
19467
  security_policy: typing.Optional[builtins.str] = None,
19380
19468
  ) -> None:
@@ -1415,7 +1415,7 @@ class CfnConfigurationProfile(
1415
1415
  :param application_id: The application ID.
1416
1416
  :param location_uri: A URI to locate the configuration. You can specify the following:. - For the AWS AppConfig hosted configuration store and for feature flags, specify ``hosted`` . - For an AWS Systems Manager Parameter Store parameter, specify either the parameter name in the format ``ssm-parameter://<parameter name>`` or the ARN. - For an AWS CodePipeline pipeline, specify the URI in the following format: ``codepipeline`` ://. - For an AWS Secrets Manager secret, specify the URI in the following format: ``secretsmanager`` ://. - For an Amazon S3 object, specify the URI in the following format: ``s3://<bucket>/<objectKey>`` . Here is an example: ``s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json`` - For an SSM document, specify either the document name in the format ``ssm-document://<document name>`` or the Amazon Resource Name (ARN).
1417
1417
  :param name: A name for the configuration profile.
1418
- :param deletion_protection_check: On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting. See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
1418
+ :param deletion_protection_check: A parameter to configure deletion protection. Deletion protection prevents a user from deleting a configuration profile if your application has called either `GetLatestConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html>`_ or `GetConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_GetConfiguration.html>`_ for the configuration profile during the specified interval. This parameter supports the following values: - ``BYPASS`` : Instructs AWS AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. - ``APPLY`` : Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. ``APPLY`` also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. - ``ACCOUNT_DEFAULT`` : The default setting, which instructs AWS AppConfig to implement the deletion protection value specified in the ``UpdateAccountSettings`` API.
1419
1419
  :param description: A description of the configuration profile.
1420
1420
  :param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
1421
1421
  :param retrieval_role_arn: The ARN of an IAM role with permission to access the configuration at the specified ``LocationUri`` . .. epigraph:: A retrieval role ARN is not required for configurations stored in AWS CodePipeline or the AWS AppConfig hosted configuration store. It is required for all other sources that store your configuration.
@@ -1548,7 +1548,7 @@ class CfnConfigurationProfile(
1548
1548
  @builtins.property
1549
1549
  @jsii.member(jsii_name="deletionProtectionCheck")
1550
1550
  def deletion_protection_check(self) -> typing.Optional[builtins.str]:
1551
- '''On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting.'''
1551
+ '''A parameter to configure deletion protection.'''
1552
1552
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "deletionProtectionCheck"))
1553
1553
 
1554
1554
  @deletion_protection_check.setter
@@ -1750,7 +1750,7 @@ class CfnConfigurationProfileProps:
1750
1750
  :param application_id: The application ID.
1751
1751
  :param location_uri: A URI to locate the configuration. You can specify the following:. - For the AWS AppConfig hosted configuration store and for feature flags, specify ``hosted`` . - For an AWS Systems Manager Parameter Store parameter, specify either the parameter name in the format ``ssm-parameter://<parameter name>`` or the ARN. - For an AWS CodePipeline pipeline, specify the URI in the following format: ``codepipeline`` ://. - For an AWS Secrets Manager secret, specify the URI in the following format: ``secretsmanager`` ://. - For an Amazon S3 object, specify the URI in the following format: ``s3://<bucket>/<objectKey>`` . Here is an example: ``s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json`` - For an SSM document, specify either the document name in the format ``ssm-document://<document name>`` or the Amazon Resource Name (ARN).
1752
1752
  :param name: A name for the configuration profile.
1753
- :param deletion_protection_check: On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting. See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
1753
+ :param deletion_protection_check: A parameter to configure deletion protection. Deletion protection prevents a user from deleting a configuration profile if your application has called either `GetLatestConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html>`_ or `GetConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_GetConfiguration.html>`_ for the configuration profile during the specified interval. This parameter supports the following values: - ``BYPASS`` : Instructs AWS AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. - ``APPLY`` : Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. ``APPLY`` also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. - ``ACCOUNT_DEFAULT`` : The default setting, which instructs AWS AppConfig to implement the deletion protection value specified in the ``UpdateAccountSettings`` API.
1754
1754
  :param description: A description of the configuration profile.
1755
1755
  :param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
1756
1756
  :param retrieval_role_arn: The ARN of an IAM role with permission to access the configuration at the specified ``LocationUri`` . .. epigraph:: A retrieval role ARN is not required for configurations stored in AWS CodePipeline or the AWS AppConfig hosted configuration store. It is required for all other sources that store your configuration.
@@ -1859,9 +1859,15 @@ class CfnConfigurationProfileProps:
1859
1859
 
1860
1860
  @builtins.property
1861
1861
  def deletion_protection_check(self) -> typing.Optional[builtins.str]:
1862
- '''On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting.
1862
+ '''A parameter to configure deletion protection.
1863
1863
 
1864
- See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
1864
+ Deletion protection prevents a user from deleting a configuration profile if your application has called either `GetLatestConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html>`_ or `GetConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_GetConfiguration.html>`_ for the configuration profile during the specified interval.
1865
+
1866
+ This parameter supports the following values:
1867
+
1868
+ - ``BYPASS`` : Instructs AWS AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it.
1869
+ - ``APPLY`` : Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. ``APPLY`` also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks.
1870
+ - ``ACCOUNT_DEFAULT`` : The default setting, which instructs AWS AppConfig to implement the deletion protection value specified in the ``UpdateAccountSettings`` API.
1865
1871
 
1866
1872
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-deletionprotectioncheck
1867
1873
  '''
@@ -3017,7 +3023,7 @@ class CfnEnvironment(
3017
3023
  :param id: Construct identifier for this resource (unique in its scope).
3018
3024
  :param application_id: The application ID.
3019
3025
  :param name: A name for the environment.
3020
- :param deletion_protection_check: On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting. See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
3026
+ :param deletion_protection_check: A parameter to configure deletion protection. Deletion protection prevents a user from deleting an environment if your application called either `GetLatestConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html>`_ or `GetConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_GetConfiguration.html>`_ in the environment during the specified interval. This parameter supports the following values: - ``BYPASS`` : Instructs AWS AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. - ``APPLY`` : Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. ``APPLY`` also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. - ``ACCOUNT_DEFAULT`` : The default setting, which instructs AWS AppConfig to implement the deletion protection value specified in the ``UpdateAccountSettings`` API.
3021
3027
  :param description: A description of the environment.
3022
3028
  :param monitors: Amazon CloudWatch alarms to monitor during the deployment process.
3023
3029
  :param tags: Metadata to assign to the environment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
@@ -3116,7 +3122,7 @@ class CfnEnvironment(
3116
3122
  @builtins.property
3117
3123
  @jsii.member(jsii_name="deletionProtectionCheck")
3118
3124
  def deletion_protection_check(self) -> typing.Optional[builtins.str]:
3119
- '''On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting.'''
3125
+ '''A parameter to configure deletion protection.'''
3120
3126
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "deletionProtectionCheck"))
3121
3127
 
3122
3128
  @deletion_protection_check.setter
@@ -3338,7 +3344,7 @@ class CfnEnvironmentProps:
3338
3344
 
3339
3345
  :param application_id: The application ID.
3340
3346
  :param name: A name for the environment.
3341
- :param deletion_protection_check: On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting. See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
3347
+ :param deletion_protection_check: A parameter to configure deletion protection. Deletion protection prevents a user from deleting an environment if your application called either `GetLatestConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html>`_ or `GetConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_GetConfiguration.html>`_ in the environment during the specified interval. This parameter supports the following values: - ``BYPASS`` : Instructs AWS AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it. - ``APPLY`` : Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. ``APPLY`` also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks. - ``ACCOUNT_DEFAULT`` : The default setting, which instructs AWS AppConfig to implement the deletion protection value specified in the ``UpdateAccountSettings`` API.
3342
3348
  :param description: A description of the environment.
3343
3349
  :param monitors: Amazon CloudWatch alarms to monitor during the deployment process.
3344
3350
  :param tags: Metadata to assign to the environment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
@@ -3412,9 +3418,15 @@ class CfnEnvironmentProps:
3412
3418
 
3413
3419
  @builtins.property
3414
3420
  def deletion_protection_check(self) -> typing.Optional[builtins.str]:
3415
- '''On resource deletion this controls whether the Deletion Protection check should be applied, bypassed, or (the default) whether the behavior should be controlled by the account-level Deletion Protection setting.
3421
+ '''A parameter to configure deletion protection.
3422
+
3423
+ Deletion protection prevents a user from deleting an environment if your application called either `GetLatestConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html>`_ or `GetConfiguration <https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_GetConfiguration.html>`_ in the environment during the specified interval.
3424
+
3425
+ This parameter supports the following values:
3416
3426
 
3417
- See https://docs.aws.amazon.com/appconfig/latest/userguide/deletion-protection.html
3427
+ - ``BYPASS`` : Instructs AWS AppConfig to bypass the deletion protection check and delete a configuration profile even if deletion protection would have otherwise prevented it.
3428
+ - ``APPLY`` : Instructs the deletion protection check to run, even if deletion protection is disabled at the account level. ``APPLY`` also forces the deletion protection check to run against resources created in the past hour, which are normally excluded from deletion protection checks.
3429
+ - ``ACCOUNT_DEFAULT`` : The default setting, which instructs AWS AppConfig to implement the deletion protection value specified in the ``UpdateAccountSettings`` API.
3418
3430
 
3419
3431
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-environment.html#cfn-appconfig-environment-deletionprotectioncheck
3420
3432
  '''
@@ -3726,7 +3738,7 @@ class CfnExtension(
3726
3738
  ) -> None:
3727
3739
  '''The actions defined in the extension.
3728
3740
 
3729
- :param name: The action name.
3741
+ :param name: The extension name.
3730
3742
  :param uri: The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an AWS Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
3731
3743
  :param description: Information about actions defined in the extension.
3732
3744
  :param role_arn: An Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role.
@@ -3766,7 +3778,7 @@ class CfnExtension(
3766
3778
 
3767
3779
  @builtins.property
3768
3780
  def name(self) -> builtins.str:
3769
- '''The action name.
3781
+ '''The extension name.
3770
3782
 
3771
3783
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-action.html#cfn-appconfig-extension-action-name
3772
3784
  '''
@@ -4488,7 +4500,7 @@ class CfnHostedConfigurationVersion(
4488
4500
  :param configuration_profile_id: The configuration profile ID.
4489
4501
  :param content: The configuration data, as bytes. .. epigraph:: AWS AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.
4490
4502
  :param content_type: A standard MIME type describing the format of the configuration content. For more information, see `Content-Type <https://docs.aws.amazon.com/https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17>`_ .
4491
- :param description: A description of the configuration.
4503
+ :param description: A description of the configuration. .. epigraph:: Due to HTTP limitations, this field only supports ASCII characters.
4492
4504
  :param latest_version_number: An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
4493
4505
  :param version_label: A user-defined label for an AWS AppConfig hosted configuration version.
4494
4506
  '''
@@ -4675,7 +4687,7 @@ class CfnHostedConfigurationVersionProps:
4675
4687
  :param configuration_profile_id: The configuration profile ID.
4676
4688
  :param content: The configuration data, as bytes. .. epigraph:: AWS AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.
4677
4689
  :param content_type: A standard MIME type describing the format of the configuration content. For more information, see `Content-Type <https://docs.aws.amazon.com/https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.17>`_ .
4678
- :param description: A description of the configuration.
4690
+ :param description: A description of the configuration. .. epigraph:: Due to HTTP limitations, this field only supports ASCII characters.
4679
4691
  :param latest_version_number: An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
4680
4692
  :param version_label: A user-defined label for an AWS AppConfig hosted configuration version.
4681
4693
 
@@ -4772,6 +4784,10 @@ class CfnHostedConfigurationVersionProps:
4772
4784
  def description(self) -> typing.Optional[builtins.str]:
4773
4785
  '''A description of the configuration.
4774
4786
 
4787
+ .. epigraph::
4788
+
4789
+ Due to HTTP limitations, this field only supports ASCII characters.
4790
+
4775
4791
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-hostedconfigurationversion.html#cfn-appconfig-hostedconfigurationversion-description
4776
4792
  '''
4777
4793
  result = self._values.get("description")
@@ -294,7 +294,7 @@ class CfnZonalAutoshiftConfiguration(
294
294
  :param scope: Scope in which this resource is defined.
295
295
  :param id: Construct identifier for this resource (unique in its scope).
296
296
  :param resource_identifier: The identifier for the resource that AWS shifts traffic for. The identifier is the Amazon Resource Name (ARN) for the resource. At this time, supported resources are Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.
297
- :param practice_run_configuration: A practice run configuration for a resource includes the Amazon CloudWatch alarms that you've specified for a practice run, as well as any blocked dates or blocked windows for the practice run. When a resource has a practice run configuration, Route 53 ARC shifts traffic for the resource weekly for practice runs. Practice runs are required for zonal autoshift. The zonal shifts that Route 53 ARC starts for practice runs help you to ensure that shifting away traffic from an Availability Zone during an autoshift is safe for your application. You can update or delete a practice run configuration. Before you delete a practice run configuration, you must disable zonal autoshift for the resource. A practice run configuration is required when zonal autoshift is enabled.
297
+ :param practice_run_configuration: A practice run configuration for a resource includes the Amazon CloudWatch alarms that you've specified for a practice run, as well as any blocked dates or blocked windows for the practice run. When a resource has a practice run configuration, ARC shifts traffic for the resource weekly for practice runs. Practice runs are required for zonal autoshift. The zonal shifts that ARC starts for practice runs help you to ensure that shifting away traffic from an Availability Zone during an autoshift is safe for your application. You can update or delete a practice run configuration. Before you delete a practice run configuration, you must disable zonal autoshift for the resource. A practice run configuration is required when zonal autoshift is enabled.
298
298
  :param zonal_autoshift_status: When zonal autoshift is ``ENABLED`` , you authorize AWS to shift away resource traffic for an application from an Availability Zone during events, on your behalf, to help reduce time to recovery. Traffic is also shifted away for the required weekly practice runs.
299
299
  '''
300
300
  if __debug__:
@@ -622,7 +622,7 @@ class CfnZonalAutoshiftConfigurationProps:
622
622
  '''Properties for defining a ``CfnZonalAutoshiftConfiguration``.
623
623
 
624
624
  :param resource_identifier: The identifier for the resource that AWS shifts traffic for. The identifier is the Amazon Resource Name (ARN) for the resource. At this time, supported resources are Network Load Balancers and Application Load Balancers with cross-zone load balancing turned off.
625
- :param practice_run_configuration: A practice run configuration for a resource includes the Amazon CloudWatch alarms that you've specified for a practice run, as well as any blocked dates or blocked windows for the practice run. When a resource has a practice run configuration, Route 53 ARC shifts traffic for the resource weekly for practice runs. Practice runs are required for zonal autoshift. The zonal shifts that Route 53 ARC starts for practice runs help you to ensure that shifting away traffic from an Availability Zone during an autoshift is safe for your application. You can update or delete a practice run configuration. Before you delete a practice run configuration, you must disable zonal autoshift for the resource. A practice run configuration is required when zonal autoshift is enabled.
625
+ :param practice_run_configuration: A practice run configuration for a resource includes the Amazon CloudWatch alarms that you've specified for a practice run, as well as any blocked dates or blocked windows for the practice run. When a resource has a practice run configuration, ARC shifts traffic for the resource weekly for practice runs. Practice runs are required for zonal autoshift. The zonal shifts that ARC starts for practice runs help you to ensure that shifting away traffic from an Availability Zone during an autoshift is safe for your application. You can update or delete a practice run configuration. Before you delete a practice run configuration, you must disable zonal autoshift for the resource. A practice run configuration is required when zonal autoshift is enabled.
626
626
  :param zonal_autoshift_status: When zonal autoshift is ``ENABLED`` , you authorize AWS to shift away resource traffic for an application from an Availability Zone during events, on your behalf, to help reduce time to recovery. Traffic is also shifted away for the required weekly practice runs.
627
627
 
628
628
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arczonalshift-zonalautoshiftconfiguration.html
@@ -688,9 +688,9 @@ class CfnZonalAutoshiftConfigurationProps:
688
688
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnZonalAutoshiftConfiguration.PracticeRunConfigurationProperty]]:
689
689
  '''A practice run configuration for a resource includes the Amazon CloudWatch alarms that you've specified for a practice run, as well as any blocked dates or blocked windows for the practice run.
690
690
 
691
- When a resource has a practice run configuration, Route 53 ARC shifts traffic for the resource weekly for practice runs.
691
+ When a resource has a practice run configuration, ARC shifts traffic for the resource weekly for practice runs.
692
692
 
693
- Practice runs are required for zonal autoshift. The zonal shifts that Route 53 ARC starts for practice runs help you to ensure that shifting away traffic from an Availability Zone during an autoshift is safe for your application.
693
+ Practice runs are required for zonal autoshift. The zonal shifts that ARC starts for practice runs help you to ensure that shifting away traffic from an Availability Zone during an autoshift is safe for your application.
694
694
 
695
695
  You can update or delete a practice run configuration. Before you delete a practice run configuration, you must disable zonal autoshift for the resource. A practice run configuration is required when zonal autoshift is enabled.
696
696