gammarers.aws-rds-database-running-schedule-stack 2.4.1__py3-none-any.whl → 2.4.3__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.
- gammarers/aws_rds_database_running_schedule_stack/__init__.py +20 -1
- gammarers/aws_rds_database_running_schedule_stack/_jsii/__init__.py +2 -2
- gammarers/aws_rds_database_running_schedule_stack/_jsii/aws-rds-database-running-schedule-stack@2.4.3.jsii.tgz +0 -0
- {gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info → gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info}/METADATA +21 -2
- gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info/RECORD +9 -0
- gammarers/aws_rds_database_running_schedule_stack/_jsii/aws-rds-database-running-schedule-stack@2.4.1.jsii.tgz +0 -0
- gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info/RECORD +0 -9
- {gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info → gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info}/LICENSE +0 -0
- {gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info → gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info}/WHEEL +0 -0
- {gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info → gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info}/top_level.txt +0 -0
|
@@ -87,7 +87,7 @@ dotnet add package Gammarers.CDK.AWS.RdsDatabaseRunningScheduleStack
|
|
|
87
87
|
## Example
|
|
88
88
|
|
|
89
89
|
```python
|
|
90
|
-
import {
|
|
90
|
+
import { RDSDatabaseRunningScheduleStack, ResourceNamingType } from '@gammarer/aws-rds-database-running-schedule-stack';
|
|
91
91
|
|
|
92
92
|
new RDSDatabaseRunningScheduleStack(app, 'RDSDatabaseRunningScheduleStack', {
|
|
93
93
|
targetResource: {
|
|
@@ -110,9 +110,28 @@ new RDSDatabaseRunningScheduleStack(app, 'RDSDatabaseRunningScheduleStack', {
|
|
|
110
110
|
resourceNamingOption: {
|
|
111
111
|
type: ResourceNamingType.AUTO, // DEFAULT or AUTO or CUSTOM
|
|
112
112
|
},
|
|
113
|
+
notifications: {
|
|
114
|
+
emails: [ // "Incoming Sample Message - EMAIL"
|
|
115
|
+
'foo@example.com',
|
|
116
|
+
'bar@example.net',
|
|
117
|
+
],
|
|
118
|
+
slack: { // "Incoming Sample Message - EMAIL"
|
|
119
|
+
webhookSecretName: 'example/slack/webhook',
|
|
120
|
+
},
|
|
121
|
+
},
|
|
113
122
|
});
|
|
114
123
|
```
|
|
115
124
|
|
|
125
|
+
## Incoming Sample Message
|
|
126
|
+
|
|
127
|
+
### EMAIL
|
|
128
|
+
|
|
129
|
+

|
|
130
|
+
|
|
131
|
+
### Slack
|
|
132
|
+
|
|
133
|
+

|
|
134
|
+
|
|
116
135
|
## License
|
|
117
136
|
|
|
118
137
|
This project is licensed under the Apache-2.0 License.
|
|
@@ -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.4.
|
|
38
|
+
"2.4.3",
|
|
39
39
|
__name__[0:-6],
|
|
40
|
-
"aws-rds-database-running-schedule-stack@2.4.
|
|
40
|
+
"aws-rds-database-running-schedule-stack@2.4.3.jsii.tgz",
|
|
41
41
|
)
|
|
42
42
|
|
|
43
43
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gammarers.aws-rds-database-running-schedule-stack
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.3
|
|
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>
|
|
@@ -116,7 +116,7 @@ dotnet add package Gammarers.CDK.AWS.RdsDatabaseRunningScheduleStack
|
|
|
116
116
|
## Example
|
|
117
117
|
|
|
118
118
|
```python
|
|
119
|
-
import {
|
|
119
|
+
import { RDSDatabaseRunningScheduleStack, ResourceNamingType } from '@gammarer/aws-rds-database-running-schedule-stack';
|
|
120
120
|
|
|
121
121
|
new RDSDatabaseRunningScheduleStack(app, 'RDSDatabaseRunningScheduleStack', {
|
|
122
122
|
targetResource: {
|
|
@@ -139,9 +139,28 @@ new RDSDatabaseRunningScheduleStack(app, 'RDSDatabaseRunningScheduleStack', {
|
|
|
139
139
|
resourceNamingOption: {
|
|
140
140
|
type: ResourceNamingType.AUTO, // DEFAULT or AUTO or CUSTOM
|
|
141
141
|
},
|
|
142
|
+
notifications: {
|
|
143
|
+
emails: [ // "Incoming Sample Message - EMAIL"
|
|
144
|
+
'foo@example.com',
|
|
145
|
+
'bar@example.net',
|
|
146
|
+
],
|
|
147
|
+
slack: { // "Incoming Sample Message - EMAIL"
|
|
148
|
+
webhookSecretName: 'example/slack/webhook',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
142
151
|
});
|
|
143
152
|
```
|
|
144
153
|
|
|
154
|
+
## Incoming Sample Message
|
|
155
|
+
|
|
156
|
+
### EMAIL
|
|
157
|
+
|
|
158
|
+

|
|
159
|
+
|
|
160
|
+
### Slack
|
|
161
|
+
|
|
162
|
+

|
|
163
|
+
|
|
145
164
|
## License
|
|
146
165
|
|
|
147
166
|
This project is licensed under the Apache-2.0 License.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
gammarers/aws_rds_database_running_schedule_stack/__init__.py,sha256=cOggbS_mLPvdALtozVbgPYBpqo95OsxYKiNcSvu_AbI,52710
|
|
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=-9E05BIFd0MkCsPln4eyn38ZiMFCy8scjx8ffwtSDxA,1621
|
|
4
|
+
gammarers/aws_rds_database_running_schedule_stack/_jsii/aws-rds-database-running-schedule-stack@2.4.3.jsii.tgz,sha256=IP1v-blYuPQzif1-b1Ju1BSaN0RHjmednOKE0KRwpFY,204191
|
|
5
|
+
gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
+
gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info/METADATA,sha256=agv03YGNiQ1OcHjp3Z5hcTS8PfcMPJiJGhVZ-PmJljA,5818
|
|
7
|
+
gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
8
|
+
gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info/top_level.txt,sha256=aYHffMrt-8dtQoLeNk0M8OeqbA0a5gMcnNm5hL7OMHk,10
|
|
9
|
+
gammarers.aws_rds_database_running_schedule_stack-2.4.3.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
gammarers/aws_rds_database_running_schedule_stack/__init__.py,sha256=b-YvOq9WiL92rrkNsJGMrs2MOThEBtlAR5ZHQ8p-_6A,52345
|
|
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=G_lfdWd4KVx21oU4GD6lmQMa-skYPoZUCsA3l-sX10A,1621
|
|
4
|
-
gammarers/aws_rds_database_running_schedule_stack/_jsii/aws-rds-database-running-schedule-stack@2.4.1.jsii.tgz,sha256=VMNIWp-dwrIx_RyKk55t4G95_6uhUQgSVe9jPrvTJ8c,45420
|
|
5
|
-
gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
-
gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info/METADATA,sha256=0vbiMNnlwQh4OzL6CwmDMT0tGeeHxrl3R6RKuuXXwhg,5453
|
|
7
|
-
gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
8
|
-
gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info/top_level.txt,sha256=aYHffMrt-8dtQoLeNk0M8OeqbA0a5gMcnNm5hL7OMHk,10
|
|
9
|
-
gammarers.aws_rds_database_running_schedule_stack-2.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|