aws-cdk-lib 2.148.1__py3-none-any.whl → 2.149.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 (31) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.148.1.jsii.tgz → aws-cdk-lib@2.149.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_applicationautoscaling/__init__.py +16 -12
  4. aws_cdk/aws_bedrock/__init__.py +30 -2
  5. aws_cdk/aws_codebuild/__init__.py +57 -5
  6. aws_cdk/aws_codecommit/__init__.py +103 -0
  7. aws_cdk/aws_codedeploy/__init__.py +251 -5
  8. aws_cdk/aws_codepipeline/__init__.py +69 -0
  9. aws_cdk/aws_codestarnotifications/__init__.py +90 -4
  10. aws_cdk/aws_deadline/__init__.py +9 -15
  11. aws_cdk/aws_dms/__init__.py +10 -10
  12. aws_cdk/aws_ec2/__init__.py +4 -0
  13. aws_cdk/aws_emr/__init__.py +8 -8
  14. aws_cdk/aws_events/__init__.py +1 -13
  15. aws_cdk/aws_kinesisanalytics/__init__.py +11 -11
  16. aws_cdk/aws_kinesisanalyticsv2/__init__.py +11 -11
  17. aws_cdk/aws_rds/__init__.py +3 -3
  18. aws_cdk/aws_rolesanywhere/__init__.py +22 -13
  19. aws_cdk/aws_route53profiles/__init__.py +4 -4
  20. aws_cdk/aws_s3/__init__.py +15 -117
  21. aws_cdk/aws_ses/__init__.py +119 -102
  22. aws_cdk/aws_stepfunctions_tasks/__init__.py +209 -16
  23. aws_cdk/aws_verifiedpermissions/__init__.py +7 -9
  24. aws_cdk/aws_wafv2/__init__.py +10 -16
  25. aws_cdk/aws_workspaces/__init__.py +86 -56
  26. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/METADATA +1 -1
  27. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/RECORD +31 -31
  28. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/LICENSE +0 -0
  29. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/NOTICE +0 -0
  30. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/WHEEL +0 -0
  31. {aws_cdk_lib-2.148.1.dist-info → aws_cdk_lib-2.149.0.dist-info}/top_level.txt +0 -0
@@ -44,7 +44,11 @@ rule = notifications.NotificationRule(self, "NotificationRule",
44
44
  source=project,
45
45
  events=["codebuild-project-build-state-succeeded", "codebuild-project-build-state-failed"
46
46
  ],
47
- targets=[topic]
47
+ targets=[topic],
48
+ notification_rule_name="MyNotificationRuleName",
49
+ enabled=True, # The default is true
50
+ detail_type=notifications.DetailType.FULL, # The default is FULL
51
+ created_by="Jone Doe"
48
52
  )
49
53
  rule.add_target(slack)
50
54
  ```
@@ -678,7 +682,40 @@ class CfnNotificationRuleProps:
678
682
 
679
683
  @jsii.enum(jsii_type="aws-cdk-lib.aws_codestarnotifications.DetailType")
680
684
  class DetailType(enum.Enum):
681
- '''The level of detail to include in the notifications for this resource.'''
685
+ '''The level of detail to include in the notifications for this resource.
686
+
687
+ :exampleMetadata: infused
688
+
689
+ Example::
690
+
691
+ import aws_cdk.aws_codestarnotifications as notifications
692
+ import aws_cdk.aws_codebuild as codebuild
693
+ import aws_cdk.aws_sns as sns
694
+ import aws_cdk.aws_chatbot as chatbot
695
+
696
+
697
+ project = codebuild.PipelineProject(self, "MyProject")
698
+
699
+ topic = sns.Topic(self, "MyTopic1")
700
+
701
+ slack = chatbot.SlackChannelConfiguration(self, "MySlackChannel",
702
+ slack_channel_configuration_name="YOUR_CHANNEL_NAME",
703
+ slack_workspace_id="YOUR_SLACK_WORKSPACE_ID",
704
+ slack_channel_id="YOUR_SLACK_CHANNEL_ID"
705
+ )
706
+
707
+ rule = notifications.NotificationRule(self, "NotificationRule",
708
+ source=project,
709
+ events=["codebuild-project-build-state-succeeded", "codebuild-project-build-state-failed"
710
+ ],
711
+ targets=[topic],
712
+ notification_rule_name="MyNotificationRuleName",
713
+ enabled=True, # The default is true
714
+ detail_type=notifications.DetailType.FULL, # The default is FULL
715
+ created_by="Jone Doe"
716
+ )
717
+ rule.add_target(slack)
718
+ '''
682
719
 
683
720
  BASIC = "BASIC"
684
721
  '''BASIC will include only the contents of the event as it would appear in AWS CloudWatch.'''
@@ -858,7 +895,11 @@ class NotificationRule(
858
895
  source=project,
859
896
  events=["codebuild-project-build-state-succeeded", "codebuild-project-build-state-failed"
860
897
  ],
861
- targets=[topic]
898
+ targets=[topic],
899
+ notification_rule_name="MyNotificationRuleName",
900
+ enabled=True, # The default is true
901
+ detail_type=notifications.DetailType.FULL, # The default is FULL
902
+ created_by="Jone Doe"
862
903
  )
863
904
  rule.add_target(slack)
864
905
  '''
@@ -871,6 +912,7 @@ class NotificationRule(
871
912
  events: typing.Sequence[builtins.str],
872
913
  source: INotificationRuleSource,
873
914
  targets: typing.Optional[typing.Sequence[INotificationRuleTarget]] = None,
915
+ created_by: typing.Optional[builtins.str] = None,
874
916
  detail_type: typing.Optional[DetailType] = None,
875
917
  enabled: typing.Optional[builtins.bool] = None,
876
918
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -881,6 +923,7 @@ class NotificationRule(
881
923
  :param events: A list of event types associated with this notification rule. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
882
924
  :param source: The Amazon Resource Name (ARN) of the resource to associate with the notification rule. Currently, Supported sources include pipelines in AWS CodePipeline, build projects in AWS CodeBuild, and repositories in AWS CodeCommit in this L2 constructor.
883
925
  :param targets: The targets to register for the notification destination. Default: - No targets are added to the rule. Use ``addTarget()`` to add a target.
926
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
884
927
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
885
928
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
886
929
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -893,6 +936,7 @@ class NotificationRule(
893
936
  events=events,
894
937
  source=source,
895
938
  targets=targets,
939
+ created_by=created_by,
896
940
  detail_type=detail_type,
897
941
  enabled=enabled,
898
942
  notification_rule_name=notification_rule_name,
@@ -946,6 +990,7 @@ class NotificationRule(
946
990
  jsii_type="aws-cdk-lib.aws_codestarnotifications.NotificationRuleOptions",
947
991
  jsii_struct_bases=[],
948
992
  name_mapping={
993
+ "created_by": "createdBy",
949
994
  "detail_type": "detailType",
950
995
  "enabled": "enabled",
951
996
  "notification_rule_name": "notificationRuleName",
@@ -955,12 +1000,14 @@ class NotificationRuleOptions:
955
1000
  def __init__(
956
1001
  self,
957
1002
  *,
1003
+ created_by: typing.Optional[builtins.str] = None,
958
1004
  detail_type: typing.Optional[DetailType] = None,
959
1005
  enabled: typing.Optional[builtins.bool] = None,
960
1006
  notification_rule_name: typing.Optional[builtins.str] = None,
961
1007
  ) -> None:
962
1008
  '''Standard set of options for ``notifyOnXxx`` codestar notification handler on construct.
963
1009
 
1010
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
964
1011
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
965
1012
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
966
1013
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -974,6 +1021,7 @@ class NotificationRuleOptions:
974
1021
  from aws_cdk import aws_codestarnotifications as codestarnotifications
975
1022
 
976
1023
  notification_rule_options = codestarnotifications.NotificationRuleOptions(
1024
+ created_by="createdBy",
977
1025
  detail_type=codestarnotifications.DetailType.BASIC,
978
1026
  enabled=False,
979
1027
  notification_rule_name="notificationRuleName"
@@ -981,10 +1029,13 @@ class NotificationRuleOptions:
981
1029
  '''
982
1030
  if __debug__:
983
1031
  type_hints = typing.get_type_hints(_typecheckingstub__eefabcfdf7bed8d3d87d052ee762b71c3b6147378fc2dcef592f76197869ec52)
1032
+ check_type(argname="argument created_by", value=created_by, expected_type=type_hints["created_by"])
984
1033
  check_type(argname="argument detail_type", value=detail_type, expected_type=type_hints["detail_type"])
985
1034
  check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
986
1035
  check_type(argname="argument notification_rule_name", value=notification_rule_name, expected_type=type_hints["notification_rule_name"])
987
1036
  self._values: typing.Dict[builtins.str, typing.Any] = {}
1037
+ if created_by is not None:
1038
+ self._values["created_by"] = created_by
988
1039
  if detail_type is not None:
989
1040
  self._values["detail_type"] = detail_type
990
1041
  if enabled is not None:
@@ -992,6 +1043,17 @@ class NotificationRuleOptions:
992
1043
  if notification_rule_name is not None:
993
1044
  self._values["notification_rule_name"] = notification_rule_name
994
1045
 
1046
+ @builtins.property
1047
+ def created_by(self) -> typing.Optional[builtins.str]:
1048
+ '''The name or email alias of the person who created the notification rule.
1049
+
1050
+ If not specified, it means that the creator's alias is not provided.
1051
+
1052
+ :default: - No alias provided
1053
+ '''
1054
+ result = self._values.get("created_by")
1055
+ return typing.cast(typing.Optional[builtins.str], result)
1056
+
995
1057
  @builtins.property
996
1058
  def detail_type(self) -> typing.Optional[DetailType]:
997
1059
  '''The level of detail to include in the notifications for this resource.
@@ -1042,6 +1104,7 @@ class NotificationRuleOptions:
1042
1104
  jsii_type="aws-cdk-lib.aws_codestarnotifications.NotificationRuleProps",
1043
1105
  jsii_struct_bases=[NotificationRuleOptions],
1044
1106
  name_mapping={
1107
+ "created_by": "createdBy",
1045
1108
  "detail_type": "detailType",
1046
1109
  "enabled": "enabled",
1047
1110
  "notification_rule_name": "notificationRuleName",
@@ -1054,6 +1117,7 @@ class NotificationRuleProps(NotificationRuleOptions):
1054
1117
  def __init__(
1055
1118
  self,
1056
1119
  *,
1120
+ created_by: typing.Optional[builtins.str] = None,
1057
1121
  detail_type: typing.Optional[DetailType] = None,
1058
1122
  enabled: typing.Optional[builtins.bool] = None,
1059
1123
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1063,6 +1127,7 @@ class NotificationRuleProps(NotificationRuleOptions):
1063
1127
  ) -> None:
1064
1128
  '''Properties for a new notification rule.
1065
1129
 
1130
+ :param created_by: The name or email alias of the person who created the notification rule. If not specified, it means that the creator's alias is not provided. Default: - No alias provided
1066
1131
  :param detail_type: The level of detail to include in the notifications for this resource. BASIC will include only the contents of the event as it would appear in AWS CloudWatch. FULL will include any supplemental information provided by AWS CodeStar Notifications and/or the service for the resource for which the notification is created. Default: DetailType.FULL
1067
1132
  :param enabled: The status of the notification rule. If the enabled is set to DISABLED, notifications aren't sent for the notification rule. Default: true
1068
1133
  :param notification_rule_name: The name for the notification rule. Notification rule names must be unique in your AWS account. Default: - generated from the ``id``
@@ -1094,12 +1159,17 @@ class NotificationRuleProps(NotificationRuleOptions):
1094
1159
  source=project,
1095
1160
  events=["codebuild-project-build-state-succeeded", "codebuild-project-build-state-failed"
1096
1161
  ],
1097
- targets=[topic]
1162
+ targets=[topic],
1163
+ notification_rule_name="MyNotificationRuleName",
1164
+ enabled=True, # The default is true
1165
+ detail_type=notifications.DetailType.FULL, # The default is FULL
1166
+ created_by="Jone Doe"
1098
1167
  )
1099
1168
  rule.add_target(slack)
1100
1169
  '''
1101
1170
  if __debug__:
1102
1171
  type_hints = typing.get_type_hints(_typecheckingstub__07e191339712f728b76ba8a634b1678dff009608132b685c7342315eab988d78)
1172
+ check_type(argname="argument created_by", value=created_by, expected_type=type_hints["created_by"])
1103
1173
  check_type(argname="argument detail_type", value=detail_type, expected_type=type_hints["detail_type"])
1104
1174
  check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
1105
1175
  check_type(argname="argument notification_rule_name", value=notification_rule_name, expected_type=type_hints["notification_rule_name"])
@@ -1110,6 +1180,8 @@ class NotificationRuleProps(NotificationRuleOptions):
1110
1180
  "events": events,
1111
1181
  "source": source,
1112
1182
  }
1183
+ if created_by is not None:
1184
+ self._values["created_by"] = created_by
1113
1185
  if detail_type is not None:
1114
1186
  self._values["detail_type"] = detail_type
1115
1187
  if enabled is not None:
@@ -1119,6 +1191,17 @@ class NotificationRuleProps(NotificationRuleOptions):
1119
1191
  if targets is not None:
1120
1192
  self._values["targets"] = targets
1121
1193
 
1194
+ @builtins.property
1195
+ def created_by(self) -> typing.Optional[builtins.str]:
1196
+ '''The name or email alias of the person who created the notification rule.
1197
+
1198
+ If not specified, it means that the creator's alias is not provided.
1199
+
1200
+ :default: - No alias provided
1201
+ '''
1202
+ result = self._values.get("created_by")
1203
+ return typing.cast(typing.Optional[builtins.str], result)
1204
+
1122
1205
  @builtins.property
1123
1206
  def detail_type(self) -> typing.Optional[DetailType]:
1124
1207
  '''The level of detail to include in the notifications for this resource.
@@ -1470,6 +1553,7 @@ def _typecheckingstub__2ee042127cf39a85f944067772f0419c8ac6769379b69d847458271ee
1470
1553
  events: typing.Sequence[builtins.str],
1471
1554
  source: INotificationRuleSource,
1472
1555
  targets: typing.Optional[typing.Sequence[INotificationRuleTarget]] = None,
1556
+ created_by: typing.Optional[builtins.str] = None,
1473
1557
  detail_type: typing.Optional[DetailType] = None,
1474
1558
  enabled: typing.Optional[builtins.bool] = None,
1475
1559
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1493,6 +1577,7 @@ def _typecheckingstub__7ae4822f460efa58f235b9774da89d7f779da55fe51601a3cdfdf7b24
1493
1577
 
1494
1578
  def _typecheckingstub__eefabcfdf7bed8d3d87d052ee762b71c3b6147378fc2dcef592f76197869ec52(
1495
1579
  *,
1580
+ created_by: typing.Optional[builtins.str] = None,
1496
1581
  detail_type: typing.Optional[DetailType] = None,
1497
1582
  enabled: typing.Optional[builtins.bool] = None,
1498
1583
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -1502,6 +1587,7 @@ def _typecheckingstub__eefabcfdf7bed8d3d87d052ee762b71c3b6147378fc2dcef592f76197
1502
1587
 
1503
1588
  def _typecheckingstub__07e191339712f728b76ba8a634b1678dff009608132b685c7342315eab988d78(
1504
1589
  *,
1590
+ created_by: typing.Optional[builtins.str] = None,
1505
1591
  detail_type: typing.Optional[DetailType] = None,
1506
1592
  enabled: typing.Optional[builtins.bool] = None,
1507
1593
  notification_rule_name: typing.Optional[builtins.str] = None,
@@ -2896,11 +2896,11 @@ class CfnMeteredProduct(
2896
2896
  '''
2897
2897
  :param scope: Scope in which this resource is defined.
2898
2898
  :param id: Construct identifier for this resource (unique in its scope).
2899
- :param family: The family to which the metered product belongs.
2899
+ :param family:
2900
2900
  :param license_endpoint_id: The Amazon EC2 identifier of the license endpoint.
2901
- :param port: The port on which the metered product should run.
2901
+ :param port:
2902
2902
  :param product_id: The product ID.
2903
- :param vendor: The vendor.
2903
+ :param vendor:
2904
2904
  '''
2905
2905
  if __debug__:
2906
2906
  type_hints = typing.get_type_hints(_typecheckingstub__1349660e6447c1e6551d1ce7cde2c5dc6adbf1fb1fdceb9f214b066a5a6b4ebe)
@@ -2963,7 +2963,6 @@ class CfnMeteredProduct(
2963
2963
  @builtins.property
2964
2964
  @jsii.member(jsii_name="family")
2965
2965
  def family(self) -> typing.Optional[builtins.str]:
2966
- '''The family to which the metered product belongs.'''
2967
2966
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "family"))
2968
2967
 
2969
2968
  @family.setter
@@ -2989,7 +2988,6 @@ class CfnMeteredProduct(
2989
2988
  @builtins.property
2990
2989
  @jsii.member(jsii_name="port")
2991
2990
  def port(self) -> typing.Optional[jsii.Number]:
2992
- '''The port on which the metered product should run.'''
2993
2991
  return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "port"))
2994
2992
 
2995
2993
  @port.setter
@@ -3015,7 +3013,6 @@ class CfnMeteredProduct(
3015
3013
  @builtins.property
3016
3014
  @jsii.member(jsii_name="vendor")
3017
3015
  def vendor(self) -> typing.Optional[builtins.str]:
3018
- '''The vendor.'''
3019
3016
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vendor"))
3020
3017
 
3021
3018
  @vendor.setter
@@ -3049,11 +3046,11 @@ class CfnMeteredProductProps:
3049
3046
  ) -> None:
3050
3047
  '''Properties for defining a ``CfnMeteredProduct``.
3051
3048
 
3052
- :param family: The family to which the metered product belongs.
3049
+ :param family:
3053
3050
  :param license_endpoint_id: The Amazon EC2 identifier of the license endpoint.
3054
- :param port: The port on which the metered product should run.
3051
+ :param port:
3055
3052
  :param product_id: The product ID.
3056
- :param vendor: The vendor.
3053
+ :param vendor:
3057
3054
 
3058
3055
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html
3059
3056
  :exampleMetadata: fixture=_generated
@@ -3093,8 +3090,7 @@ class CfnMeteredProductProps:
3093
3090
 
3094
3091
  @builtins.property
3095
3092
  def family(self) -> typing.Optional[builtins.str]:
3096
- '''The family to which the metered product belongs.
3097
-
3093
+ '''
3098
3094
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html#cfn-deadline-meteredproduct-family
3099
3095
  '''
3100
3096
  result = self._values.get("family")
@@ -3111,8 +3107,7 @@ class CfnMeteredProductProps:
3111
3107
 
3112
3108
  @builtins.property
3113
3109
  def port(self) -> typing.Optional[jsii.Number]:
3114
- '''The port on which the metered product should run.
3115
-
3110
+ '''
3116
3111
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html#cfn-deadline-meteredproduct-port
3117
3112
  '''
3118
3113
  result = self._values.get("port")
@@ -3129,8 +3124,7 @@ class CfnMeteredProductProps:
3129
3124
 
3130
3125
  @builtins.property
3131
3126
  def vendor(self) -> typing.Optional[builtins.str]:
3132
- '''The vendor.
3133
-
3127
+ '''
3134
3128
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html#cfn-deadline-meteredproduct-vendor
3135
3129
  '''
3136
3130
  result = self._values.get("vendor")
@@ -4125,7 +4125,7 @@ class CfnEndpoint(
4125
4125
  :param add_supplemental_logging: Set this attribute to set up table-level supplemental logging for the Oracle database. This attribute enables PRIMARY KEY supplemental logging on all tables selected for a migration task. If you use this option, you still need to enable database-level supplemental logging.
4126
4126
  :param allow_select_nested_tables: Set this attribute to ``true`` to enable replication of Oracle tables containing columns that are nested tables or defined types.
4127
4127
  :param archived_log_dest_id: Specifies the ID of the destination for the archived redo logs. This value should be the same as a number in the dest_id column of the v$archived_log view. If you work with an additional redo log destination, use the ``AdditionalArchivedLogDestId`` option to specify the additional destination ID. Doing this improves performance by ensuring that the correct logs are accessed from the outset.
4128
- :param archived_logs_only: When this field is set to ``Y`` , AWS DMS only accesses the archived redo logs. If the archived redo logs are stored on Automatic Storage Management (ASM) only, the AWS DMS user account needs to be granted ASM privileges.
4128
+ :param archived_logs_only: When this field is set to ``True`` , AWS DMS only accesses the archived redo logs. If the archived redo logs are stored on Automatic Storage Management (ASM) only, the AWS DMS user account needs to be granted ASM privileges.
4129
4129
  :param asm_password: For an Oracle source endpoint, your Oracle Automatic Storage Management (ASM) password. You can set this value from the ``*asm_user_password*`` value. You set this value as part of the comma-separated value that you set to the ``Password`` request parameter when you create the endpoint to access transaction logs using Binary Reader. For more information, see `Configuration for change data capture (CDC) on an Oracle source database <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration>`_ .
4130
4130
  :param asm_server: For an Oracle source endpoint, your ASM server address. You can set this value from the ``asm_server`` value. You set ``asm_server`` as part of the extra connection attribute string to access an Oracle server with Binary Reader that uses ASM. For more information, see `Configuration for change data capture (CDC) on an Oracle source database <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration>`_ .
4131
4131
  :param asm_user: For an Oracle source endpoint, your ASM user name. You can set this value from the ``asm_user`` value. You set ``asm_user`` as part of the extra connection attribute string to access an Oracle server with Binary Reader that uses ASM. For more information, see `Configuration for change data capture (CDC) on an Oracle source database <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC.Configuration>`_ .
@@ -4151,9 +4151,9 @@ class CfnEndpoint(
4151
4151
  :param spatial_data_option_to_geo_json_function_name: Use this attribute to convert ``SDO_GEOMETRY`` to ``GEOJSON`` format. By default, DMS calls the ``SDO2GEOJSON`` custom function if present and accessible. Or you can create your own custom function that mimics the operation of ``SDOGEOJSON`` and set ``SpatialDataOptionToGeoJsonFunctionName`` to call it instead.
4152
4152
  :param standby_delay_time: Use this attribute to specify a time in minutes for the delay in standby sync. If the source is an Oracle Active Data Guard standby database, use this attribute to specify the time lag between primary and standby databases. In AWS DMS , you can create an Oracle CDC task that uses an Active Data Guard standby instance as a source for replicating ongoing changes. Doing this eliminates the need to connect to an active database that might be in production.
4153
4153
  :param use_alternate_folder_for_online: Set this attribute to ``true`` in order to use the Binary Reader to capture change data for an Amazon RDS for Oracle as the source. This tells the DMS instance to use any specified prefix replacement to access all online redo logs.
4154
- :param use_b_file: Set this attribute to Y to capture change data using the Binary Reader utility. Set ``UseLogminerReader`` to N to set this attribute to Y. To use Binary Reader with Amazon RDS for Oracle as the source, you set additional attributes. For more information about using this setting with Oracle Automatic Storage Management (ASM), see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ .
4155
- :param use_direct_path_full_load: Set this attribute to Y to have AWS DMS use a direct path full load. Specify this value to use the direct path protocol in the Oracle Call Interface (OCI). By using this OCI protocol, you can bulk-load Oracle target tables during a full load.
4156
- :param use_logminer_reader: Set this attribute to Y to capture change data using the Oracle LogMiner utility (the default). Set this attribute to N if you want to access the redo logs as a binary file. When you set ``UseLogminerReader`` to N, also set ``UseBfile`` to Y. For more information on this setting and using Oracle ASM, see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ in the *AWS DMS User Guide* .
4154
+ :param use_b_file: Set this attribute to True to capture change data using the Binary Reader utility. Set ``UseLogminerReader`` to False to set this attribute to True. To use Binary Reader with Amazon RDS for Oracle as the source, you set additional attributes. For more information about using this setting with Oracle Automatic Storage Management (ASM), see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ .
4155
+ :param use_direct_path_full_load: Set this attribute to True to have AWS DMS use a direct path full load. Specify this value to use the direct path protocol in the Oracle Call Interface (OCI). By using this OCI protocol, you can bulk-load Oracle target tables during a full load.
4156
+ :param use_logminer_reader: Set this attribute to True to capture change data using the Oracle LogMiner utility (the default). Set this attribute to False if you want to access the redo logs as a binary file. When you set ``UseLogminerReader`` to False, also set ``UseBfile`` to True. For more information on this setting and using Oracle ASM, see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ in the *AWS DMS User Guide* .
4157
4157
  :param use_path_prefix: Set this string attribute to the required value in order to use the Binary Reader to capture change data for an Amazon RDS for Oracle as the source. This value specifies the path prefix used to replace the default Oracle root to access the redo logs.
4158
4158
 
4159
4159
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-oraclesettings.html
@@ -4379,7 +4379,7 @@ class CfnEndpoint(
4379
4379
  def archived_logs_only(
4380
4380
  self,
4381
4381
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4382
- '''When this field is set to ``Y`` , AWS DMS only accesses the archived redo logs.
4382
+ '''When this field is set to ``True`` , AWS DMS only accesses the archived redo logs.
4383
4383
 
4384
4384
  If the archived redo logs are stored on Automatic Storage Management (ASM) only, the AWS DMS user account needs to be granted ASM privileges.
4385
4385
 
@@ -4705,9 +4705,9 @@ class CfnEndpoint(
4705
4705
  def use_b_file(
4706
4706
  self,
4707
4707
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4708
- '''Set this attribute to Y to capture change data using the Binary Reader utility.
4708
+ '''Set this attribute to True to capture change data using the Binary Reader utility.
4709
4709
 
4710
- Set ``UseLogminerReader`` to N to set this attribute to Y. To use Binary Reader with Amazon RDS for Oracle as the source, you set additional attributes. For more information about using this setting with Oracle Automatic Storage Management (ASM), see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ .
4710
+ Set ``UseLogminerReader`` to False to set this attribute to True. To use Binary Reader with Amazon RDS for Oracle as the source, you set additional attributes. For more information about using this setting with Oracle Automatic Storage Management (ASM), see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ .
4711
4711
 
4712
4712
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-oraclesettings.html#cfn-dms-endpoint-oraclesettings-usebfile
4713
4713
  '''
@@ -4718,7 +4718,7 @@ class CfnEndpoint(
4718
4718
  def use_direct_path_full_load(
4719
4719
  self,
4720
4720
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4721
- '''Set this attribute to Y to have AWS DMS use a direct path full load.
4721
+ '''Set this attribute to True to have AWS DMS use a direct path full load.
4722
4722
 
4723
4723
  Specify this value to use the direct path protocol in the Oracle Call Interface (OCI). By using this OCI protocol, you can bulk-load Oracle target tables during a full load.
4724
4724
 
@@ -4731,9 +4731,9 @@ class CfnEndpoint(
4731
4731
  def use_logminer_reader(
4732
4732
  self,
4733
4733
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
4734
- '''Set this attribute to Y to capture change data using the Oracle LogMiner utility (the default).
4734
+ '''Set this attribute to True to capture change data using the Oracle LogMiner utility (the default).
4735
4735
 
4736
- Set this attribute to N if you want to access the redo logs as a binary file. When you set ``UseLogminerReader`` to N, also set ``UseBfile`` to Y. For more information on this setting and using Oracle ASM, see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ in the *AWS DMS User Guide* .
4736
+ Set this attribute to False if you want to access the redo logs as a binary file. When you set ``UseLogminerReader`` to False, also set ``UseBfile`` to True. For more information on this setting and using Oracle ASM, see `Using Oracle LogMiner or AWS DMS Binary Reader for CDC <https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.CDC>`_ in the *AWS DMS User Guide* .
4737
4737
 
4738
4738
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-oraclesettings.html#cfn-dms-endpoint-oraclesettings-uselogminerreader
4739
4739
  '''
@@ -72564,6 +72564,10 @@ class InstanceClass(enum.Enum):
72564
72564
  '''Memory optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation.'''
72565
72565
  R7A = "R7A"
72566
72566
  '''Memory optimized instances based on 4th generation AMD EPYC (codename Genoa), 7th generation.'''
72567
+ MEMORY8_GRAVITON = "MEMORY8_GRAVITON"
72568
+ '''Memory optimized instances with Graviton4 processors.'''
72569
+ R8G = "R8G"
72570
+ '''Memory optimized instances with Graviton4 processors.'''
72567
72571
  COMPUTE3 = "COMPUTE3"
72568
72572
  '''Compute optimized instances, 3rd generation.'''
72569
72573
  C3 = "C3"
@@ -4105,7 +4105,7 @@ class CfnCluster(
4105
4105
 
4106
4106
  The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions. On-Demand Instances allocation strategy is available in Amazon EMR releases 5.12.1 and later.
4107
4107
 
4108
- :param allocation_strategy: Specifies the strategy to use in launching On-Demand instance fleets. Currently, the only option is ``lowest-price`` (the default), which launches the lowest price first.
4108
+ :param allocation_strategy: Specifies the strategy to use in launching On-Demand instance fleets. Available options are ``lowest-price`` and ``prioritized`` . ``lowest-price`` specifies to launch the instances with the lowest price first, and ``prioritized`` specifies that Amazon EMR should launch the instances with the highest priority first. The default is ``lowest-price`` .
4109
4109
 
4110
4110
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandprovisioningspecification.html
4111
4111
  :exampleMetadata: fixture=_generated
@@ -4131,7 +4131,7 @@ class CfnCluster(
4131
4131
  def allocation_strategy(self) -> builtins.str:
4132
4132
  '''Specifies the strategy to use in launching On-Demand instance fleets.
4133
4133
 
4134
- Currently, the only option is ``lowest-price`` (the default), which launches the lowest price first.
4134
+ Available options are ``lowest-price`` and ``prioritized`` . ``lowest-price`` specifies to launch the instances with the lowest price first, and ``prioritized`` specifies that Amazon EMR should launch the instances with the highest priority first. The default is ``lowest-price`` .
4135
4135
 
4136
4136
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandprovisioningspecification.html#cfn-emr-cluster-ondemandprovisioningspecification-allocationstrategy
4137
4137
  '''
@@ -4879,7 +4879,7 @@ class CfnCluster(
4879
4879
 
4880
4880
  :param timeout_action: The action to take when ``TargetSpotCapacity`` has not been fulfilled when the ``TimeoutDurationMinutes`` has expired; that is, when all Spot Instances could not be provisioned within the Spot provisioning timeout. Valid values are ``TERMINATE_CLUSTER`` and ``SWITCH_TO_ON_DEMAND`` . SWITCH_TO_ON_DEMAND specifies that if no Spot Instances are available, On-Demand Instances should be provisioned to fulfill any remaining Spot capacity.
4881
4881
  :param timeout_duration_minutes: The Spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the ``TimeOutAction`` is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.
4882
- :param allocation_strategy: Specifies one of the following strategies to launch Spot Instance fleets: ``price-capacity-optimized`` , ``capacity-optimized`` , ``lowest-price`` , or ``diversified`` . For more information on the provisioning strategies, see `Allocation strategies for Spot Instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html>`_ in the *Amazon EC2 User Guide for Linux Instances* . .. epigraph:: When you launch a Spot Instance fleet with the old console, it automatically launches with the ``capacity-optimized`` strategy. You can't change the allocation strategy from the old console.
4882
+ :param allocation_strategy: Specifies one of the following strategies to launch Spot Instance fleets: ``capacity-optimized`` , ``price-capacity-optimized`` , ``lowest-price`` , or ``diversified`` , and ``capacity-optimized-prioritized`` . For more information on the provisioning strategies, see `Allocation strategies for Spot Instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html>`_ in the *Amazon EC2 User Guide for Linux Instances* . .. epigraph:: When you launch a Spot Instance fleet with the old console, it automatically launches with the ``capacity-optimized`` strategy. You can't change the allocation strategy from the old console.
4883
4883
  :param block_duration_minutes: The defined duration for Spot Instances (also known as Spot blocks) in minutes. When specified, the Spot Instance does not terminate before the defined duration expires, and defined duration pricing for Spot Instances applies. Valid values are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as a Spot Instance receives its instance ID. At the end of the duration, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates. .. epigraph:: Spot Instances with a defined duration (also known as Spot blocks) are no longer available to new customers from July 1, 2021. For customers who have previously used the feature, we will continue to support Spot Instances with a defined duration until December 31, 2022.
4884
4884
 
4885
4885
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-spotprovisioningspecification.html
@@ -4941,7 +4941,7 @@ class CfnCluster(
4941
4941
 
4942
4942
  @builtins.property
4943
4943
  def allocation_strategy(self) -> typing.Optional[builtins.str]:
4944
- '''Specifies one of the following strategies to launch Spot Instance fleets: ``price-capacity-optimized`` , ``capacity-optimized`` , ``lowest-price`` , or ``diversified`` .
4944
+ '''Specifies one of the following strategies to launch Spot Instance fleets: ``capacity-optimized`` , ``price-capacity-optimized`` , ``lowest-price`` , or ``diversified`` , and ``capacity-optimized-prioritized`` .
4945
4945
 
4946
4946
  For more information on the provisioning strategies, see `Allocation strategies for Spot Instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html>`_ in the *Amazon EC2 User Guide for Linux Instances* .
4947
4947
  .. epigraph::
@@ -7042,7 +7042,7 @@ class CfnInstanceFleetConfig(
7042
7042
 
7043
7043
  The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions. On-Demand Instances allocation strategy is available in Amazon EMR releases 5.12.1 and later.
7044
7044
 
7045
- :param allocation_strategy: Specifies the strategy to use in launching On-Demand instance fleets. Currently, the only option is ``lowest-price`` (the default), which launches the lowest price first.
7045
+ :param allocation_strategy: Specifies the strategy to use in launching On-Demand instance fleets. Available options are ``lowest-price`` and ``prioritized`` . ``lowest-price`` specifies to launch the instances with the lowest price first, and ``prioritized`` specifies that Amazon EMR should launch the instances with the highest priority first. The default is ``lowest-price`` .
7046
7046
 
7047
7047
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandprovisioningspecification.html
7048
7048
  :exampleMetadata: fixture=_generated
@@ -7068,7 +7068,7 @@ class CfnInstanceFleetConfig(
7068
7068
  def allocation_strategy(self) -> builtins.str:
7069
7069
  '''Specifies the strategy to use in launching On-Demand instance fleets.
7070
7070
 
7071
- Currently, the only option is ``lowest-price`` (the default), which launches the lowest price first.
7071
+ Available options are ``lowest-price`` and ``prioritized`` . ``lowest-price`` specifies to launch the instances with the lowest price first, and ``prioritized`` specifies that Amazon EMR should launch the instances with the highest priority first. The default is ``lowest-price`` .
7072
7072
 
7073
7073
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandprovisioningspecification.html#cfn-emr-instancefleetconfig-ondemandprovisioningspecification-allocationstrategy
7074
7074
  '''
@@ -7115,7 +7115,7 @@ class CfnInstanceFleetConfig(
7115
7115
 
7116
7116
  :param timeout_action: The action to take when ``TargetSpotCapacity`` has not been fulfilled when the ``TimeoutDurationMinutes`` has expired; that is, when all Spot Instances could not be provisioned within the Spot provisioning timeout. Valid values are ``TERMINATE_CLUSTER`` and ``SWITCH_TO_ON_DEMAND`` . SWITCH_TO_ON_DEMAND specifies that if no Spot Instances are available, On-Demand Instances should be provisioned to fulfill any remaining Spot capacity.
7117
7117
  :param timeout_duration_minutes: The Spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the ``TimeOutAction`` is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.
7118
- :param allocation_strategy: Specifies one of the following strategies to launch Spot Instance fleets: ``price-capacity-optimized`` , ``capacity-optimized`` , ``lowest-price`` , or ``diversified`` . For more information on the provisioning strategies, see `Allocation strategies for Spot Instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html>`_ in the *Amazon EC2 User Guide for Linux Instances* . .. epigraph:: When you launch a Spot Instance fleet with the old console, it automatically launches with the ``capacity-optimized`` strategy. You can't change the allocation strategy from the old console.
7118
+ :param allocation_strategy: Specifies one of the following strategies to launch Spot Instance fleets: ``capacity-optimized`` , ``price-capacity-optimized`` , ``lowest-price`` , or ``diversified`` , and ``capacity-optimized-prioritized`` . For more information on the provisioning strategies, see `Allocation strategies for Spot Instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html>`_ in the *Amazon EC2 User Guide for Linux Instances* . .. epigraph:: When you launch a Spot Instance fleet with the old console, it automatically launches with the ``capacity-optimized`` strategy. You can't change the allocation strategy from the old console.
7119
7119
  :param block_duration_minutes: The defined duration for Spot Instances (also known as Spot blocks) in minutes. When specified, the Spot Instance does not terminate before the defined duration expires, and defined duration pricing for Spot Instances applies. Valid values are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as a Spot Instance receives its instance ID. At the end of the duration, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates. .. epigraph:: Spot Instances with a defined duration (also known as Spot blocks) are no longer available to new customers from July 1, 2021. For customers who have previously used the feature, we will continue to support Spot Instances with a defined duration until December 31, 2022.
7120
7120
 
7121
7121
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-spotprovisioningspecification.html
@@ -7177,7 +7177,7 @@ class CfnInstanceFleetConfig(
7177
7177
 
7178
7178
  @builtins.property
7179
7179
  def allocation_strategy(self) -> typing.Optional[builtins.str]:
7180
- '''Specifies one of the following strategies to launch Spot Instance fleets: ``price-capacity-optimized`` , ``capacity-optimized`` , ``lowest-price`` , or ``diversified`` .
7180
+ '''Specifies one of the following strategies to launch Spot Instance fleets: ``capacity-optimized`` , ``price-capacity-optimized`` , ``lowest-price`` , or ``diversified`` , and ``capacity-optimized-prioritized`` .
7181
7181
 
7182
7182
  For more information on the provisioning strategies, see `Allocation strategies for Spot Instances <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-allocation-strategy.html>`_ in the *Amazon EC2 User Guide for Linux Instances* .
7183
7183
  .. epigraph::
@@ -158,19 +158,7 @@ ecs_task_target = targets.EcsTask(cluster=cluster, task_definition=task_definiti
158
158
  The `aws-cdk-lib/aws-events-targets` module includes classes that implement the `IRuleTarget`
159
159
  interface for various AWS services.
160
160
 
161
- The following targets are supported:
162
-
163
- * `targets.CodeBuildProject`: Start an AWS CodeBuild build
164
- * `targets.CodePipeline`: Start an AWS CodePipeline pipeline execution
165
- * `targets.EcsTask`: Start a task on an Amazon ECS cluster
166
- * `targets.LambdaFunction`: Invoke an AWS Lambda function
167
- * `targets.SnsTopic`: Publish into an SNS topic
168
- * `targets.SqsQueue`: Send a message to an Amazon SQS Queue
169
- * `targets.SfnStateMachine`: Trigger an AWS Step Functions state machine
170
- * `targets.BatchJob`: Queue an AWS Batch Job
171
- * `targets.AwsApi`: Make an AWS API call
172
- * `targets.ApiGateway`: Invoke an AWS API Gateway
173
- * `targets.ApiDestination`: Make an call to an external destination
161
+ See the README of the [`aws-cdk-lib/aws-events-targets`](https://github.com/aws/aws-cdk/tree/main/packages/aws-cdk-lib/aws-events-targets) module for more information on supported targets.
174
162
 
175
163
  ### Cross-account and cross-region targets
176
164
 
@@ -5555,7 +5555,7 @@ class CfnApplicationV2(
5555
5555
 
5556
5556
  :param application_code_configuration: The code location and type parameters for a Managed Service for Apache Flink application.
5557
5557
  :param application_snapshot_configuration: Describes whether snapshots are enabled for a Managed Service for Apache Flink application.
5558
- :param application_system_rollback_configuration: Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
5558
+ :param application_system_rollback_configuration: Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application.
5559
5559
  :param environment_properties: Describes execution properties for a Managed Service for Apache Flink application.
5560
5560
  :param flink_application_configuration: The creation and update parameters for a Managed Service for Apache Flink application.
5561
5561
  :param sql_application_configuration: The creation and update parameters for a SQL-based Kinesis Data Analytics application.
@@ -5767,7 +5767,7 @@ class CfnApplicationV2(
5767
5767
  def application_system_rollback_configuration(
5768
5768
  self,
5769
5769
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnApplicationV2.ApplicationSystemRollbackConfigurationProperty"]]:
5770
- '''Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
5770
+ '''Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application.
5771
5771
 
5772
5772
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationconfiguration.html#cfn-kinesisanalyticsv2-application-applicationconfiguration-applicationsystemrollbackconfiguration
5773
5773
  '''
@@ -6045,9 +6045,9 @@ class CfnApplicationV2(
6045
6045
  *,
6046
6046
  rollback_enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
6047
6047
  ) -> None:
6048
- '''Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
6048
+ '''Describes the system rollback configuration for a Managed Service for Apache Flink application.
6049
6049
 
6050
- :param rollback_enabled: Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
6050
+ :param rollback_enabled: Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application.
6051
6051
 
6052
6052
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsystemrollbackconfiguration.html
6053
6053
  :exampleMetadata: fixture=_generated
@@ -6073,7 +6073,7 @@ class CfnApplicationV2(
6073
6073
  def rollback_enabled(
6074
6074
  self,
6075
6075
  ) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
6076
- '''Describes whether system initiated rollbacks are enabled for a Flink-based Kinesis Data Analytics application.
6076
+ '''Describes whether system rollbacks are enabled for a Managed Service for Apache Flink application.
6077
6077
 
6078
6078
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationsystemrollbackconfiguration.html#cfn-kinesisanalyticsv2-application-applicationsystemrollbackconfiguration-rollbackenabled
6079
6079
  '''
@@ -6262,12 +6262,12 @@ class CfnApplicationV2(
6262
6262
  ) -> None:
6263
6263
  '''Describes an application's checkpointing configuration.
6264
6264
 
6265
- Checkpointing is the process of persisting application state for fault tolerance. For more information, see `Checkpoints for Fault Tolerance <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/>`_ .
6265
+ Checkpointing is the process of persisting application state for fault tolerance. For more information, see `Checkpoints for Fault Tolerance <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master/docs/dev/datastream/fault-tolerance/checkpointing/>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master>`_ .
6266
6266
 
6267
6267
  :param configuration_type: Describes whether the application uses Managed Service for Apache Flink' default checkpointing behavior. You must set this property to ``CUSTOM`` in order to set the ``CheckpointingEnabled`` , ``CheckpointInterval`` , or ``MinPauseBetweenCheckpoints`` parameters. .. epigraph:: If this value is set to ``DEFAULT`` , the application will use the following values, even if they are set to other values using APIs or application code: - *CheckpointingEnabled:* true - *CheckpointInterval:* 60000 - *MinPauseBetweenCheckpoints:* 5000
6268
6268
  :param checkpointing_enabled: Describes whether checkpointing is enabled for a Managed Service for Apache Flink application. .. epigraph:: If ``CheckpointConfiguration.ConfigurationType`` is ``DEFAULT`` , the application will use a ``CheckpointingEnabled`` value of ``true`` , even if this value is set to another value using this API or in application code.
6269
6269
  :param checkpoint_interval: Describes the interval in milliseconds between checkpoint operations. .. epigraph:: If ``CheckpointConfiguration.ConfigurationType`` is ``DEFAULT`` , the application will use a ``CheckpointInterval`` value of 60000, even if this value is set to another value using this API or in application code.
6270
- :param min_pause_between_checkpoints: Describes the minimum time in milliseconds after a checkpoint operation completes that a new checkpoint operation can start. If a checkpoint operation takes longer than the ``CheckpointInterval`` , the application otherwise performs continual checkpoint operations. For more information, see `Tuning Checkpointing <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/large_state_tuning.html#tuning-checkpointing>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/>`_ . .. epigraph:: If ``CheckpointConfiguration.ConfigurationType`` is ``DEFAULT`` , the application will use a ``MinPauseBetweenCheckpoints`` value of 5000, even if this value is set using this API or in application code.
6270
+ :param min_pause_between_checkpoints: Describes the minimum time in milliseconds after a checkpoint operation completes that a new checkpoint operation can start. If a checkpoint operation takes longer than the ``CheckpointInterval`` , the application otherwise performs continual checkpoint operations. For more information, see `Tuning Checkpointing <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master/docs/ops/state/large_state_tuning/#tuning-checkpointing>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master>`_ . .. epigraph:: If ``CheckpointConfiguration.ConfigurationType`` is ``DEFAULT`` , the application will use a ``MinPauseBetweenCheckpoints`` value of 5000, even if this value is set using this API or in application code.
6271
6271
 
6272
6272
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-checkpointconfiguration.html
6273
6273
  :exampleMetadata: fixture=_generated
@@ -6354,7 +6354,7 @@ class CfnApplicationV2(
6354
6354
  def min_pause_between_checkpoints(self) -> typing.Optional[jsii.Number]:
6355
6355
  '''Describes the minimum time in milliseconds after a checkpoint operation completes that a new checkpoint operation can start.
6356
6356
 
6357
- If a checkpoint operation takes longer than the ``CheckpointInterval`` , the application otherwise performs continual checkpoint operations. For more information, see `Tuning Checkpointing <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/large_state_tuning.html#tuning-checkpointing>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/>`_ .
6357
+ If a checkpoint operation takes longer than the ``CheckpointInterval`` , the application otherwise performs continual checkpoint operations. For more information, see `Tuning Checkpointing <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master/docs/ops/state/large_state_tuning/#tuning-checkpointing>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master>`_ .
6358
6358
  .. epigraph::
6359
6359
 
6360
6360
  If ``CheckpointConfiguration.ConfigurationType`` is ``DEFAULT`` , the application will use a ``MinPauseBetweenCheckpoints`` value of 5000, even if this value is set using this API or in application code.
@@ -6835,7 +6835,7 @@ class CfnApplicationV2(
6835
6835
  ) -> None:
6836
6836
  '''Describes the starting parameters for a Managed Service for Apache Flink application.
6837
6837
 
6838
- :param allow_non_restored_state: When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see `Allowing Non-Restored State <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state>`_ in the `Apache Flink documentation <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/>`_ . .. epigraph:: This value defaults to ``false`` . If you update your application without specifying this parameter, ``AllowNonRestoredState`` will be set to ``false`` , even if it was previously set to ``true`` .
6838
+ :param allow_non_restored_state: When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see `Allowing Non-Restored State <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master/docs/ops/state/savepoints/#allowing-non-restored-state>`_ in the `Apache Flink documentation <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master>`_ . .. epigraph:: This value defaults to ``false`` . If you update your application without specifying this parameter, ``AllowNonRestoredState`` will be set to ``false`` , even if it was previously set to ``true`` .
6839
6839
 
6840
6840
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-flinkrunconfiguration.html
6841
6841
  :exampleMetadata: fixture=_generated
@@ -6863,7 +6863,7 @@ class CfnApplicationV2(
6863
6863
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
6864
6864
  '''When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program.
6865
6865
 
6866
- This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see `Allowing Non-Restored State <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state>`_ in the `Apache Flink documentation <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/>`_ .
6866
+ This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see `Allowing Non-Restored State <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master/docs/ops/state/savepoints/#allowing-non-restored-state>`_ in the `Apache Flink documentation <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master>`_ .
6867
6867
  .. epigraph::
6868
6868
 
6869
6869
  This value defaults to ``false`` . If you update your application without specifying this parameter, ``AllowNonRestoredState`` will be set to ``false`` , even if it was previously set to ``true`` .
@@ -7866,7 +7866,7 @@ class CfnApplicationV2(
7866
7866
  ) -> None:
7867
7867
  '''Describes parameters for how a Flink-based Kinesis Data Analytics application executes multiple tasks simultaneously.
7868
7868
 
7869
- For more information about parallelism, see `Parallel Execution <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/dev/parallel.html>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://ci.apache.org/projects/flink/flink-docs-release-1.8/>`_ .
7869
+ For more information about parallelism, see `Parallel Execution <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master/docs/dev/datastream/execution/parallel/>`_ in the `Apache Flink Documentation <https://docs.aws.amazon.com/https://nightlies.apache.org/flink/flink-docs-master>`_ .
7870
7870
 
7871
7871
  :param configuration_type: Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service. You must set this property to ``CUSTOM`` in order to change your application's ``AutoScalingEnabled`` , ``Parallelism`` , or ``ParallelismPerKPU`` properties.
7872
7872
  :param auto_scaling_enabled: Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.