gammarers.aws-rds-database-running-schedule-stack 2.5.14__py3-none-any.whl → 2.6.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 gammarers.aws-rds-database-running-schedule-stack might be problematic. Click here for more details.

@@ -239,6 +239,7 @@ class RDSDatabaseRunningScheduleStack(
239
239
  resource_naming_option: typing.Optional[typing.Union[typing.Union["ResourceCustomNaming", typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceDefaultNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceAutoNaming, typing.Dict[builtins.str, typing.Any]]]] = None,
240
240
  start_schedule: typing.Optional[typing.Union["Schedule", typing.Dict[builtins.str, typing.Any]]] = None,
241
241
  stop_schedule: typing.Optional[typing.Union["Schedule", typing.Dict[builtins.str, typing.Any]]] = None,
242
+ timeout_option: typing.Optional[typing.Union["TimeoutOption", typing.Dict[builtins.str, typing.Any]]] = None,
242
243
  analytics_reporting: typing.Optional[builtins.bool] = None,
243
244
  cross_region_references: typing.Optional[builtins.bool] = None,
244
245
  description: typing.Optional[builtins.str] = None,
@@ -259,6 +260,7 @@ class RDSDatabaseRunningScheduleStack(
259
260
  :param resource_naming_option:
260
261
  :param start_schedule:
261
262
  :param stop_schedule:
263
+ :param timeout_option:
262
264
  :param analytics_reporting: Include runtime versioning information in this Stack. Default: ``analyticsReporting`` setting of containing ``App``, or value of 'aws:cdk:version-reporting' context key
263
265
  :param cross_region_references: Enable this flag to allow native cross region stack references. Enabling this will create a CloudFormation custom resource in both the producing stack and consuming stack in order to perform the export/import This feature is currently experimental Default: false
264
266
  :param description: A description of the stack. Default: - No description.
@@ -281,6 +283,7 @@ class RDSDatabaseRunningScheduleStack(
281
283
  resource_naming_option=resource_naming_option,
282
284
  start_schedule=start_schedule,
283
285
  stop_schedule=stop_schedule,
286
+ timeout_option=timeout_option,
284
287
  analytics_reporting=analytics_reporting,
285
288
  cross_region_references=cross_region_references,
286
289
  description=description,
@@ -316,6 +319,7 @@ class RDSDatabaseRunningScheduleStack(
316
319
  "resource_naming_option": "resourceNamingOption",
317
320
  "start_schedule": "startSchedule",
318
321
  "stop_schedule": "stopSchedule",
322
+ "timeout_option": "timeoutOption",
319
323
  },
320
324
  )
321
325
  class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
@@ -338,6 +342,7 @@ class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
338
342
  resource_naming_option: typing.Optional[typing.Union[typing.Union["ResourceCustomNaming", typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceDefaultNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceAutoNaming, typing.Dict[builtins.str, typing.Any]]]] = None,
339
343
  start_schedule: typing.Optional[typing.Union["Schedule", typing.Dict[builtins.str, typing.Any]]] = None,
340
344
  stop_schedule: typing.Optional[typing.Union["Schedule", typing.Dict[builtins.str, typing.Any]]] = None,
345
+ timeout_option: typing.Optional[typing.Union["TimeoutOption", typing.Dict[builtins.str, typing.Any]]] = None,
341
346
  ) -> None:
342
347
  '''
343
348
  :param analytics_reporting: Include runtime versioning information in this Stack. Default: ``analyticsReporting`` setting of containing ``App``, or value of 'aws:cdk:version-reporting' context key
@@ -356,6 +361,7 @@ class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
356
361
  :param resource_naming_option:
357
362
  :param start_schedule:
358
363
  :param stop_schedule:
364
+ :param timeout_option:
359
365
  '''
360
366
  if isinstance(env, dict):
361
367
  env = _aws_cdk_ceddda9d.Environment(**env)
@@ -367,6 +373,8 @@ class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
367
373
  start_schedule = Schedule(**start_schedule)
368
374
  if isinstance(stop_schedule, dict):
369
375
  stop_schedule = Schedule(**stop_schedule)
376
+ if isinstance(timeout_option, dict):
377
+ timeout_option = TimeoutOption(**timeout_option)
370
378
  if __debug__:
371
379
  type_hints = typing.get_type_hints(_typecheckingstub__e3a02c77b05b4403ac204e4b21fbecf9f310b2adf40ef9f6754f8cde04bbb117)
372
380
  check_type(argname="argument analytics_reporting", value=analytics_reporting, expected_type=type_hints["analytics_reporting"])
@@ -385,6 +393,7 @@ class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
385
393
  check_type(argname="argument resource_naming_option", value=resource_naming_option, expected_type=type_hints["resource_naming_option"])
386
394
  check_type(argname="argument start_schedule", value=start_schedule, expected_type=type_hints["start_schedule"])
387
395
  check_type(argname="argument stop_schedule", value=stop_schedule, expected_type=type_hints["stop_schedule"])
396
+ check_type(argname="argument timeout_option", value=timeout_option, expected_type=type_hints["timeout_option"])
388
397
  self._values: typing.Dict[builtins.str, typing.Any] = {
389
398
  "target_resource": target_resource,
390
399
  }
@@ -418,6 +427,8 @@ class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
418
427
  self._values["start_schedule"] = start_schedule
419
428
  if stop_schedule is not None:
420
429
  self._values["stop_schedule"] = stop_schedule
430
+ if timeout_option is not None:
431
+ self._values["timeout_option"] = timeout_option
421
432
 
422
433
  @builtins.property
423
434
  def analytics_reporting(self) -> typing.Optional[builtins.bool]:
@@ -627,6 +638,11 @@ class RDSDatabaseRunningScheduleStackProps(_aws_cdk_ceddda9d.StackProps):
627
638
  result = self._values.get("stop_schedule")
628
639
  return typing.cast(typing.Optional["Schedule"], result)
629
640
 
641
+ @builtins.property
642
+ def timeout_option(self) -> typing.Optional["TimeoutOption"]:
643
+ result = self._values.get("timeout_option")
644
+ return typing.cast(typing.Optional["TimeoutOption"], result)
645
+
630
646
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
631
647
  return isinstance(rhs, self.__class__) and rhs._values == self._values
632
648
 
@@ -915,6 +931,44 @@ class TargetResource:
915
931
  )
916
932
 
917
933
 
934
+ @jsii.data_type(
935
+ jsii_type="@gammarers/aws-rds-database-running-schedule-stack.TimeoutOption",
936
+ jsii_struct_bases=[],
937
+ name_mapping={"state_machine_timeout": "stateMachineTimeout"},
938
+ )
939
+ class TimeoutOption:
940
+ def __init__(
941
+ self,
942
+ *,
943
+ state_machine_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
944
+ ) -> None:
945
+ '''
946
+ :param state_machine_timeout:
947
+ '''
948
+ if __debug__:
949
+ type_hints = typing.get_type_hints(_typecheckingstub__c51306d5b5e2b8439addb6ff60d0da376b46562daaca900a243f30d792aad9ab)
950
+ check_type(argname="argument state_machine_timeout", value=state_machine_timeout, expected_type=type_hints["state_machine_timeout"])
951
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
952
+ if state_machine_timeout is not None:
953
+ self._values["state_machine_timeout"] = state_machine_timeout
954
+
955
+ @builtins.property
956
+ def state_machine_timeout(self) -> typing.Optional[_aws_cdk_ceddda9d.Duration]:
957
+ result = self._values.get("state_machine_timeout")
958
+ return typing.cast(typing.Optional[_aws_cdk_ceddda9d.Duration], result)
959
+
960
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
961
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
962
+
963
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
964
+ return not (rhs == self)
965
+
966
+ def __repr__(self) -> str:
967
+ return "TimeoutOption(%s)" % ", ".join(
968
+ k + "=" + repr(v) for k, v in self._values.items()
969
+ )
970
+
971
+
918
972
  __all__ = [
919
973
  "Notifications",
920
974
  "RDSDatabaseRunningScheduleStack",
@@ -923,6 +977,7 @@ __all__ = [
923
977
  "Schedule",
924
978
  "Slack",
925
979
  "TargetResource",
980
+ "TimeoutOption",
926
981
  ]
927
982
 
928
983
  publication.publish()
@@ -945,6 +1000,7 @@ def _typecheckingstub__c1280dc248fa00837f0fd9aade32e57cf0658d41b8f0e88b4b0468581
945
1000
  resource_naming_option: typing.Optional[typing.Union[typing.Union[ResourceCustomNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceDefaultNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceAutoNaming, typing.Dict[builtins.str, typing.Any]]]] = None,
946
1001
  start_schedule: typing.Optional[typing.Union[Schedule, typing.Dict[builtins.str, typing.Any]]] = None,
947
1002
  stop_schedule: typing.Optional[typing.Union[Schedule, typing.Dict[builtins.str, typing.Any]]] = None,
1003
+ timeout_option: typing.Optional[typing.Union[TimeoutOption, typing.Dict[builtins.str, typing.Any]]] = None,
948
1004
  analytics_reporting: typing.Optional[builtins.bool] = None,
949
1005
  cross_region_references: typing.Optional[builtins.bool] = None,
950
1006
  description: typing.Optional[builtins.str] = None,
@@ -977,6 +1033,7 @@ def _typecheckingstub__e3a02c77b05b4403ac204e4b21fbecf9f310b2adf40ef9f6754f8cde0
977
1033
  resource_naming_option: typing.Optional[typing.Union[typing.Union[ResourceCustomNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceDefaultNaming, typing.Dict[builtins.str, typing.Any]], typing.Union[_gammarers_aws_resource_naming_22f917da.ResourceAutoNaming, typing.Dict[builtins.str, typing.Any]]]] = None,
978
1034
  start_schedule: typing.Optional[typing.Union[Schedule, typing.Dict[builtins.str, typing.Any]]] = None,
979
1035
  stop_schedule: typing.Optional[typing.Union[Schedule, typing.Dict[builtins.str, typing.Any]]] = None,
1036
+ timeout_option: typing.Optional[typing.Union[TimeoutOption, typing.Dict[builtins.str, typing.Any]]] = None,
980
1037
  ) -> None:
981
1038
  """Type checking stubs"""
982
1039
  pass
@@ -1019,3 +1076,10 @@ def _typecheckingstub__192bfa0133591042d61f7c1a7f90b1b3ecc87a45a8b8683ab7ea2019d
1019
1076
  ) -> None:
1020
1077
  """Type checking stubs"""
1021
1078
  pass
1079
+
1080
+ def _typecheckingstub__c51306d5b5e2b8439addb6ff60d0da376b46562daaca900a243f30d792aad9ab(
1081
+ *,
1082
+ state_machine_timeout: typing.Optional[_aws_cdk_ceddda9d.Duration] = None,
1083
+ ) -> None:
1084
+ """Type checking stubs"""
1085
+ pass
@@ -35,9 +35,9 @@ import gammarers.aws_sns_slack_message_lambda_subscription._jsii
35
35
 
36
36
  __jsii_assembly__ = jsii.JSIIAssembly.load(
37
37
  "@gammarers/aws-rds-database-running-schedule-stack",
38
- "2.5.14",
38
+ "2.6.0",
39
39
  __name__[0:-6],
40
- "aws-rds-database-running-schedule-stack@2.5.14.jsii.tgz",
40
+ "aws-rds-database-running-schedule-stack@2.6.0.jsii.tgz",
41
41
  )
42
42
 
43
43
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gammarers.aws-rds-database-running-schedule-stack
3
- Version: 2.5.14
3
+ Version: 2.6.0
4
4
  Summary: AWS RDS Database Running Scheduler
5
5
  Home-page: https://github.com/gammarers/aws-rds-database-running-schedule-stack.git
6
6
  Author: yicr<yicr@users.noreply.github.com>
@@ -0,0 +1,9 @@
1
+ gammarers/aws_rds_database_running_schedule_stack/__init__.py,sha256=ZfUSa4ZUjamRtJhdg8GIxBwo2b5ZI6Cw_6KvhkftE68,55318
2
+ gammarers/aws_rds_database_running_schedule_stack/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ gammarers/aws_rds_database_running_schedule_stack/_jsii/__init__.py,sha256=g3B9quIM8Eiv93W8Eu5uUfO2oZNQ0PdYDPbPL0TeYxY,1621
4
+ gammarers/aws_rds_database_running_schedule_stack/_jsii/aws-rds-database-running-schedule-stack@2.6.0.jsii.tgz,sha256=qD3HRTdiFsHSbvbgTJimQ9i8sfOqjOdIOKFx8e6dEZk,204712
5
+ gammarers_aws_rds_database_running_schedule_stack-2.6.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
+ gammarers_aws_rds_database_running_schedule_stack-2.6.0.dist-info/METADATA,sha256=_2G5C8rKSm7FsLC5RsplwsymgIVaeEbZfHotEqfHDb4,5768
7
+ gammarers_aws_rds_database_running_schedule_stack-2.6.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
8
+ gammarers_aws_rds_database_running_schedule_stack-2.6.0.dist-info/top_level.txt,sha256=aYHffMrt-8dtQoLeNk0M8OeqbA0a5gMcnNm5hL7OMHk,10
9
+ gammarers_aws_rds_database_running_schedule_stack-2.6.0.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- gammarers/aws_rds_database_running_schedule_stack/__init__.py,sha256=_PfmPV_PYKOF11sFBfjaaP1lkfbrwBCgJ_IJC7t9gCk,52390
2
- gammarers/aws_rds_database_running_schedule_stack/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- gammarers/aws_rds_database_running_schedule_stack/_jsii/__init__.py,sha256=N4sTvM7vInKUPtPBfh83Fy4UM3fjtsW22omsacicFXY,1623
4
- gammarers/aws_rds_database_running_schedule_stack/_jsii/aws-rds-database-running-schedule-stack@2.5.14.jsii.tgz,sha256=MNu_NT9aWt_WZ-OgcfeanLxc-QfktbYgoPq-jLZubSc,204264
5
- gammarers_aws_rds_database_running_schedule_stack-2.5.14.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
- gammarers_aws_rds_database_running_schedule_stack-2.5.14.dist-info/METADATA,sha256=Snm1mmtAsZPiSXxXGfJgbW693nhqqaD9INx__E1FNdU,5769
7
- gammarers_aws_rds_database_running_schedule_stack-2.5.14.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
8
- gammarers_aws_rds_database_running_schedule_stack-2.5.14.dist-info/top_level.txt,sha256=aYHffMrt-8dtQoLeNk0M8OeqbA0a5gMcnNm5hL7OMHk,10
9
- gammarers_aws_rds_database_running_schedule_stack-2.5.14.dist-info/RECORD,,