@cdklabs/cdk-ssm-documents 0.0.23 → 0.0.25
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.
- package/.jsii +996 -7
- package/API.md +768 -92
- package/README.md +25 -3
- package/changelog.md +3 -3
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.d.ts +138 -0
- package/lib/incident-response/incident-response.js +114 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +3 -3
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/package.json +3 -3
- package/releasetag.txt +1 -1
- package/version.txt +1 -1
- package/node_modules/buffer/node_modules/ieee754/LICENSE +0 -11
- package/node_modules/buffer/node_modules/ieee754/README.md +0 -51
- package/node_modules/buffer/node_modules/ieee754/index.d.ts +0 -10
- package/node_modules/buffer/node_modules/ieee754/index.js +0 -85
- package/node_modules/buffer/node_modules/ieee754/package.json +0 -52
- package/node_modules/xml2js/node_modules/sax/LICENSE +0 -41
- package/node_modules/xml2js/node_modules/sax/README.md +0 -225
- package/node_modules/xml2js/node_modules/sax/lib/sax.js +0 -1565
- package/node_modules/xml2js/node_modules/sax/package.json +0 -25
package/.jsii
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"synchronized-promise": "^0.3.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"aws-cdk-lib": "^2.
|
|
17
|
+
"aws-cdk-lib": "^2.27.0",
|
|
18
18
|
"constructs": "^10.0.5"
|
|
19
19
|
},
|
|
20
20
|
"dependencyClosure": {
|
|
@@ -111,6 +111,19 @@
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
+
"aws-cdk-lib.aws_amplifyuibuilder": {
|
|
115
|
+
"targets": {
|
|
116
|
+
"dotnet": {
|
|
117
|
+
"namespace": "Amazon.CDK.AWS.AmplifyUIBuilder"
|
|
118
|
+
},
|
|
119
|
+
"java": {
|
|
120
|
+
"package": "software.amazon.awscdk.services.amplifyuibuilder"
|
|
121
|
+
},
|
|
122
|
+
"python": {
|
|
123
|
+
"module": "aws_cdk.aws_amplifyuibuilder"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
},
|
|
114
127
|
"aws-cdk-lib.aws_apigateway": {
|
|
115
128
|
"targets": {
|
|
116
129
|
"dotnet": {
|
|
@@ -371,6 +384,19 @@
|
|
|
371
384
|
}
|
|
372
385
|
}
|
|
373
386
|
},
|
|
387
|
+
"aws-cdk-lib.aws_billingconductor": {
|
|
388
|
+
"targets": {
|
|
389
|
+
"dotnet": {
|
|
390
|
+
"namespace": "Amazon.CDK.AWS.BillingConductor"
|
|
391
|
+
},
|
|
392
|
+
"java": {
|
|
393
|
+
"package": "software.amazon.awscdk.services.billingconductor"
|
|
394
|
+
},
|
|
395
|
+
"python": {
|
|
396
|
+
"module": "aws_cdk.aws_billingconductor"
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
},
|
|
374
400
|
"aws-cdk-lib.aws_budgets": {
|
|
375
401
|
"targets": {
|
|
376
402
|
"dotnet": {
|
|
@@ -1087,6 +1113,19 @@
|
|
|
1087
1113
|
}
|
|
1088
1114
|
}
|
|
1089
1115
|
},
|
|
1116
|
+
"aws-cdk-lib.aws_emrserverless": {
|
|
1117
|
+
"targets": {
|
|
1118
|
+
"dotnet": {
|
|
1119
|
+
"namespace": "Amazon.CDK.AWS.EMRServerless"
|
|
1120
|
+
},
|
|
1121
|
+
"java": {
|
|
1122
|
+
"package": "software.amazon.awscdk.services.emrserverless"
|
|
1123
|
+
},
|
|
1124
|
+
"python": {
|
|
1125
|
+
"module": "aws_cdk.aws_emrserverless"
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
},
|
|
1090
1129
|
"aws-cdk-lib.aws_events": {
|
|
1091
1130
|
"targets": {
|
|
1092
1131
|
"dotnet": {
|
|
@@ -1126,6 +1165,19 @@
|
|
|
1126
1165
|
}
|
|
1127
1166
|
}
|
|
1128
1167
|
},
|
|
1168
|
+
"aws-cdk-lib.aws_evidently": {
|
|
1169
|
+
"targets": {
|
|
1170
|
+
"dotnet": {
|
|
1171
|
+
"namespace": "Amazon.CDK.AWS.Evidently"
|
|
1172
|
+
},
|
|
1173
|
+
"java": {
|
|
1174
|
+
"package": "software.amazon.awscdk.services.evidently"
|
|
1175
|
+
},
|
|
1176
|
+
"python": {
|
|
1177
|
+
"module": "aws_cdk.aws_evidently"
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1129
1181
|
"aws-cdk-lib.aws_finspace": {
|
|
1130
1182
|
"targets": {
|
|
1131
1183
|
"dotnet": {
|
|
@@ -1165,6 +1217,19 @@
|
|
|
1165
1217
|
}
|
|
1166
1218
|
}
|
|
1167
1219
|
},
|
|
1220
|
+
"aws-cdk-lib.aws_forecast": {
|
|
1221
|
+
"targets": {
|
|
1222
|
+
"dotnet": {
|
|
1223
|
+
"namespace": "Amazon.CDK.AWS.Forecast"
|
|
1224
|
+
},
|
|
1225
|
+
"java": {
|
|
1226
|
+
"package": "software.amazon.awscdk.services.forecast"
|
|
1227
|
+
},
|
|
1228
|
+
"python": {
|
|
1229
|
+
"module": "aws_cdk.aws_forecast"
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
},
|
|
1168
1233
|
"aws-cdk-lib.aws_frauddetector": {
|
|
1169
1234
|
"targets": {
|
|
1170
1235
|
"dotnet": {
|
|
@@ -1347,6 +1412,19 @@
|
|
|
1347
1412
|
}
|
|
1348
1413
|
}
|
|
1349
1414
|
},
|
|
1415
|
+
"aws-cdk-lib.aws_inspectorv2": {
|
|
1416
|
+
"targets": {
|
|
1417
|
+
"dotnet": {
|
|
1418
|
+
"namespace": "Amazon.CDK.AWS.InspectorV2"
|
|
1419
|
+
},
|
|
1420
|
+
"java": {
|
|
1421
|
+
"package": "software.amazon.awscdk.services.inspectorv2"
|
|
1422
|
+
},
|
|
1423
|
+
"python": {
|
|
1424
|
+
"module": "aws_cdk.aws_inspectorv2"
|
|
1425
|
+
}
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1350
1428
|
"aws-cdk-lib.aws_iot": {
|
|
1351
1429
|
"targets": {
|
|
1352
1430
|
"dotnet": {
|
|
@@ -1451,6 +1529,19 @@
|
|
|
1451
1529
|
}
|
|
1452
1530
|
}
|
|
1453
1531
|
},
|
|
1532
|
+
"aws-cdk-lib.aws_iottwinmaker": {
|
|
1533
|
+
"targets": {
|
|
1534
|
+
"dotnet": {
|
|
1535
|
+
"namespace": "Amazon.CDK.AWS.IoTTwinMaker"
|
|
1536
|
+
},
|
|
1537
|
+
"java": {
|
|
1538
|
+
"package": "software.amazon.awscdk.services.iottwinmaker"
|
|
1539
|
+
},
|
|
1540
|
+
"python": {
|
|
1541
|
+
"module": "aws_cdk.aws_iottwinmaker"
|
|
1542
|
+
}
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1454
1545
|
"aws-cdk-lib.aws_iotwireless": {
|
|
1455
1546
|
"targets": {
|
|
1456
1547
|
"dotnet": {
|
|
@@ -1477,6 +1568,19 @@
|
|
|
1477
1568
|
}
|
|
1478
1569
|
}
|
|
1479
1570
|
},
|
|
1571
|
+
"aws-cdk-lib.aws_kafkaconnect": {
|
|
1572
|
+
"targets": {
|
|
1573
|
+
"dotnet": {
|
|
1574
|
+
"namespace": "Amazon.CDK.AWS.KafkaConnect"
|
|
1575
|
+
},
|
|
1576
|
+
"java": {
|
|
1577
|
+
"package": "software.amazon.awscdk.services.kafkaconnect"
|
|
1578
|
+
},
|
|
1579
|
+
"python": {
|
|
1580
|
+
"module": "aws_cdk.aws_kafkaconnect"
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1480
1584
|
"aws-cdk-lib.aws_kendra": {
|
|
1481
1585
|
"targets": {
|
|
1482
1586
|
"dotnet": {
|
|
@@ -1516,6 +1620,19 @@
|
|
|
1516
1620
|
}
|
|
1517
1621
|
}
|
|
1518
1622
|
},
|
|
1623
|
+
"aws-cdk-lib.aws_kinesisanalyticsv2": {
|
|
1624
|
+
"targets": {
|
|
1625
|
+
"dotnet": {
|
|
1626
|
+
"namespace": "Amazon.CDK.AWS.KinesisAnalyticsV2"
|
|
1627
|
+
},
|
|
1628
|
+
"java": {
|
|
1629
|
+
"package": "software.amazon.awscdk.services.kinesisanalyticsv2"
|
|
1630
|
+
},
|
|
1631
|
+
"python": {
|
|
1632
|
+
"module": "aws_cdk.aws_kinesisanalyticsv2"
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1519
1636
|
"aws-cdk-lib.aws_kinesisfirehose": {
|
|
1520
1637
|
"targets": {
|
|
1521
1638
|
"dotnet": {
|
|
@@ -1529,6 +1646,19 @@
|
|
|
1529
1646
|
}
|
|
1530
1647
|
}
|
|
1531
1648
|
},
|
|
1649
|
+
"aws-cdk-lib.aws_kinesisvideo": {
|
|
1650
|
+
"targets": {
|
|
1651
|
+
"dotnet": {
|
|
1652
|
+
"namespace": "Amazon.CDK.AWS.KinesisVideo"
|
|
1653
|
+
},
|
|
1654
|
+
"java": {
|
|
1655
|
+
"package": "software.amazon.awscdk.services.kinesisvideo"
|
|
1656
|
+
},
|
|
1657
|
+
"python": {
|
|
1658
|
+
"module": "aws_cdk.aws_kinesisvideo"
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
},
|
|
1532
1662
|
"aws-cdk-lib.aws_kms": {
|
|
1533
1663
|
"targets": {
|
|
1534
1664
|
"dotnet": {
|
|
@@ -1607,6 +1737,19 @@
|
|
|
1607
1737
|
}
|
|
1608
1738
|
}
|
|
1609
1739
|
},
|
|
1740
|
+
"aws-cdk-lib.aws_lex": {
|
|
1741
|
+
"targets": {
|
|
1742
|
+
"dotnet": {
|
|
1743
|
+
"namespace": "Amazon.CDK.AWS.Lex"
|
|
1744
|
+
},
|
|
1745
|
+
"java": {
|
|
1746
|
+
"package": "software.amazon.awscdk.services.lex"
|
|
1747
|
+
},
|
|
1748
|
+
"python": {
|
|
1749
|
+
"module": "aws_cdk.aws_lex"
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1610
1753
|
"aws-cdk-lib.aws_licensemanager": {
|
|
1611
1754
|
"targets": {
|
|
1612
1755
|
"dotnet": {
|
|
@@ -1802,6 +1945,19 @@
|
|
|
1802
1945
|
}
|
|
1803
1946
|
}
|
|
1804
1947
|
},
|
|
1948
|
+
"aws-cdk-lib.aws_mediatailor": {
|
|
1949
|
+
"targets": {
|
|
1950
|
+
"dotnet": {
|
|
1951
|
+
"namespace": "Amazon.CDK.AWS.MediaTailor"
|
|
1952
|
+
},
|
|
1953
|
+
"java": {
|
|
1954
|
+
"package": "software.amazon.awscdk.services.mediatailor"
|
|
1955
|
+
},
|
|
1956
|
+
"python": {
|
|
1957
|
+
"module": "aws_cdk.aws_mediatailor"
|
|
1958
|
+
}
|
|
1959
|
+
}
|
|
1960
|
+
},
|
|
1805
1961
|
"aws-cdk-lib.aws_memorydb": {
|
|
1806
1962
|
"targets": {
|
|
1807
1963
|
"dotnet": {
|
|
@@ -1945,6 +2101,19 @@
|
|
|
1945
2101
|
}
|
|
1946
2102
|
}
|
|
1947
2103
|
},
|
|
2104
|
+
"aws-cdk-lib.aws_personalize": {
|
|
2105
|
+
"targets": {
|
|
2106
|
+
"dotnet": {
|
|
2107
|
+
"namespace": "Amazon.CDK.AWS.Personalize"
|
|
2108
|
+
},
|
|
2109
|
+
"java": {
|
|
2110
|
+
"package": "software.amazon.awscdk.services.personalize"
|
|
2111
|
+
},
|
|
2112
|
+
"python": {
|
|
2113
|
+
"module": "aws_cdk.aws_personalize"
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
2116
|
+
},
|
|
1948
2117
|
"aws-cdk-lib.aws_pinpoint": {
|
|
1949
2118
|
"targets": {
|
|
1950
2119
|
"dotnet": {
|
|
@@ -2036,6 +2205,19 @@
|
|
|
2036
2205
|
}
|
|
2037
2206
|
}
|
|
2038
2207
|
},
|
|
2208
|
+
"aws-cdk-lib.aws_refactorspaces": {
|
|
2209
|
+
"targets": {
|
|
2210
|
+
"dotnet": {
|
|
2211
|
+
"namespace": "Amazon.CDK.AWS.RefactorSpaces"
|
|
2212
|
+
},
|
|
2213
|
+
"java": {
|
|
2214
|
+
"package": "software.amazon.awscdk.services.refactorspaces"
|
|
2215
|
+
},
|
|
2216
|
+
"python": {
|
|
2217
|
+
"module": "aws_cdk.aws_refactorspaces"
|
|
2218
|
+
}
|
|
2219
|
+
}
|
|
2220
|
+
},
|
|
2039
2221
|
"aws-cdk-lib.aws_rekognition": {
|
|
2040
2222
|
"targets": {
|
|
2041
2223
|
"dotnet": {
|
|
@@ -2049,6 +2231,19 @@
|
|
|
2049
2231
|
}
|
|
2050
2232
|
}
|
|
2051
2233
|
},
|
|
2234
|
+
"aws-cdk-lib.aws_resiliencehub": {
|
|
2235
|
+
"targets": {
|
|
2236
|
+
"dotnet": {
|
|
2237
|
+
"namespace": "Amazon.CDK.AWS.ResilienceHub"
|
|
2238
|
+
},
|
|
2239
|
+
"java": {
|
|
2240
|
+
"package": "software.amazon.awscdk.services.resiliencehub"
|
|
2241
|
+
},
|
|
2242
|
+
"python": {
|
|
2243
|
+
"module": "aws_cdk.aws_resiliencehub"
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
2052
2247
|
"aws-cdk-lib.aws_resourcegroups": {
|
|
2053
2248
|
"targets": {
|
|
2054
2249
|
"dotnet": {
|
|
@@ -2153,6 +2348,19 @@
|
|
|
2153
2348
|
}
|
|
2154
2349
|
}
|
|
2155
2350
|
},
|
|
2351
|
+
"aws-cdk-lib.aws_rum": {
|
|
2352
|
+
"targets": {
|
|
2353
|
+
"dotnet": {
|
|
2354
|
+
"namespace": "Amazon.CDK.AWS.RUM"
|
|
2355
|
+
},
|
|
2356
|
+
"java": {
|
|
2357
|
+
"package": "software.amazon.awscdk.services.rum"
|
|
2358
|
+
},
|
|
2359
|
+
"python": {
|
|
2360
|
+
"module": "aws_cdk.aws_rum"
|
|
2361
|
+
}
|
|
2362
|
+
}
|
|
2363
|
+
},
|
|
2156
2364
|
"aws-cdk-lib.aws_s3": {
|
|
2157
2365
|
"targets": {
|
|
2158
2366
|
"dotnet": {
|
|
@@ -2530,6 +2738,19 @@
|
|
|
2530
2738
|
}
|
|
2531
2739
|
}
|
|
2532
2740
|
},
|
|
2741
|
+
"aws-cdk-lib.aws_voiceid": {
|
|
2742
|
+
"targets": {
|
|
2743
|
+
"dotnet": {
|
|
2744
|
+
"namespace": "Amazon.CDK.AWS.VoiceID"
|
|
2745
|
+
},
|
|
2746
|
+
"java": {
|
|
2747
|
+
"package": "software.amazon.awscdk.services.voiceid"
|
|
2748
|
+
},
|
|
2749
|
+
"python": {
|
|
2750
|
+
"module": "aws_cdk.aws_voiceid"
|
|
2751
|
+
}
|
|
2752
|
+
}
|
|
2753
|
+
},
|
|
2533
2754
|
"aws-cdk-lib.aws_waf": {
|
|
2534
2755
|
"targets": {
|
|
2535
2756
|
"dotnet": {
|
|
@@ -2724,11 +2945,24 @@
|
|
|
2724
2945
|
"module": "aws_cdk.region_info"
|
|
2725
2946
|
}
|
|
2726
2947
|
}
|
|
2948
|
+
},
|
|
2949
|
+
"aws-cdk-lib.triggers": {
|
|
2950
|
+
"targets": {
|
|
2951
|
+
"dotnet": {
|
|
2952
|
+
"namespace": "Amazon.CDK.Triggers"
|
|
2953
|
+
},
|
|
2954
|
+
"java": {
|
|
2955
|
+
"package": "software.amazon.awscdk.triggers"
|
|
2956
|
+
},
|
|
2957
|
+
"python": {
|
|
2958
|
+
"module": "aws_cdk.triggers"
|
|
2959
|
+
}
|
|
2960
|
+
}
|
|
2727
2961
|
}
|
|
2728
2962
|
},
|
|
2729
2963
|
"targets": {
|
|
2730
2964
|
"dotnet": {
|
|
2731
|
-
"iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/
|
|
2965
|
+
"iconUrl": "https://raw.githubusercontent.com/aws/aws-cdk/main/logo/default-256-dark.png",
|
|
2732
2966
|
"namespace": "Amazon.CDK",
|
|
2733
2967
|
"packageId": "Amazon.CDK.Lib"
|
|
2734
2968
|
},
|
|
@@ -2783,7 +3017,7 @@
|
|
|
2783
3017
|
"stability": "stable"
|
|
2784
3018
|
},
|
|
2785
3019
|
"homepage": "https://github.com/cdklabs/cdk-ssm-documents.git",
|
|
2786
|
-
"jsiiVersion": "1.
|
|
3020
|
+
"jsiiVersion": "1.67.0 (build 2c027f5)",
|
|
2787
3021
|
"keywords": [
|
|
2788
3022
|
"cdk"
|
|
2789
3023
|
],
|
|
@@ -2798,7 +3032,7 @@
|
|
|
2798
3032
|
},
|
|
2799
3033
|
"name": "@cdklabs/cdk-ssm-documents",
|
|
2800
3034
|
"readme": {
|
|
2801
|
-
"markdown": "# SSM Document CDK\nThis library provides a code-based utility for implementing SSM Documents. The SSM Document objects can be used to print YAML/JSON documents and to mimic document processing locally.\n\nThis library abstracts SSM Documents at a high level, with each step as well as the document itself being objects. The properties needed to build these objects correlate to the settings that apply to them, making them simple to make.\nThis library can be used to test your document locally before deploying it to SSM.\n\nSince the library is written in JSII, it can be exported to other languages that support JSII (Java, Python).\n\nThis is what you'd use if you wanted to:\n1. The ability to test without deploying resources or executing an actual SSM on AWS.\n2. Reusability of steps between documents by reusing existing items\n3. Create logical higher-level groupings of reusable groups of steps (\"Patterns\")\n4. Simple to use interface for writing documents\n5. Import existing documents from a file (or string) and mimic them locally to test them.\n\n## Usage\n\n### Document Creation\n\nTypescript usage (Execute AWS API Step)...\nThe below creates the AutomationDocument in an AWS CDK stack.\n```ts\nimport { AutomationDocument } from './automation-document';\n\nexport class HelloWorld extends Stack {\n constructor(app: Construct, id: string) {\n super(app, id);\n\n // Create AutomationDocument\n const myDoc = new AutomationDocument(this, \"MyDoc\", {\n documentFormat: DocumentFormat.JSON,\n documentName: \"MyDoc\",\n docInputs: [Input.ofTypeString('MyInput', { defaultValue: 'a' })],\n });\n\n // Define your steps...\n myDoc.addStep(new PauseStep(this, \"MyPauseStep\", {\n name: \"MyPauseStep\",\n explicitNextStep: StepRef.fromName(\"step1\") // Optional (will default to next added step)\n }));\n\n myDoc.addStep(new ExecuteScriptStep(this, \"MyExecuteStep\", {\n name: \"step1\",\n language: ScriptLanguage.python(PythonVersion.VERSION_3_6, 'my_func'),\n code: ScriptCode.fromFile(resolve(\"test/test_file.py\")),\n // OR ScriptCode.inline(\"def my_func(args, context):\\n return {'MyReturn': args['MyInput'] + '-suffix'}\\n\"),\n outputs: [{\n outputType: DataTypeEnum.STRING,\n name: \"MyFuncOut\",\n selector: \"$.Payload.MyReturn\"\n }],\n onFailure: OnFailure.abort(),\n inputPayload: { MyInput: StringVariable.of('MyInput') },\n }));\n }\n}\n```\n\n### Document JSON/YAML Export as YAML/JSON\n\nYou can deploy the above document using CDK.\nTo print the above document object as a JSON (or YAML), do the following:\n\n```ts\nconst myDocJson = myDoc.print(); // Print YAML by setting the documentFormat to YAML\n```\n\n\n### Document Simulation\n\nTo run the document object in simulation mode, use the below. Simulation mode does NOT hit the SSM API, rather it mimics the execution that will happen in an SSM execution. The run happens locally and allows you to mock the calls to external services (AWS APIs for example) or to invoke those services using your local credentials.\n\n```ts\nimport { Simulation } from './simulation';\n\nconst myDocJson = Simulation.ofAutomation(myDoc, {}).simulate({ MyInput: \"FooBar\" });\n```\n\n### Command Documents\n\nBelow is an example of how to use the library to create Command documents.\nSimulation for command documents is not yet supported for all command plugins.\nYou can use a Docker image/container as a playground for testing the Command document execution for the supported plugins.\n\nIn this example there is a complete CDK stack. Notice that the `CommandDocument` is saved as a field so that it can be tested from the test code.\n```typescript\nexport class HelloCdkStack extends Stack {\n readonly myCommandDoc: CommandDocument;\n constructor(scope: Construct, id: string, props?: StackProps) {\n super(scope, id, props);\n this.myCommandDoc = new CommandDocument(this, \"MyCommandDoc\", {\n docInputs: [Input.ofTypeString('FirstCommand', { defaultValue: 'a' })],\n })\n const runScriptStep = new RunShellScriptStep(this, \"MyShellScript\", {\n runCommand: [\n StringVariable.of(\"FirstCommand\"),\n HardCodedString.of(\"mkdir asdf\"),\n ],\n });\n this.myCommandDoc.addStep(runScriptStep);\n }\n}\n```\n\nBelow is an example of how you would run a simulation against the above `CommandDocument`.\n\nCurrently, `bash` must be available in the container or the executions against the docker will not succeed.\n\n```typescript\ntest('Test command doc', () => {\n const app = new cdk.App();\n const stack = new HelloCdk.HelloCdkStack(app, 'MyTestStack');\n // 1. $ docker pull amazonlinux\n // 2. $ docker run -di amazonlinux\n const simulation = Simulation.ofCommand(stack.myCommandDoc, {\n simulationPlatform: Platform.LINUX,\n environment: DockerEnvironment.fromContainer('MY_CONTAINER_ID')\n });\n simulation.simulate({FirstCommand: 'mkdir foobar'})\n // 3. The document should run the first command (create 'foobar') and create file 'asdf'\n // 4. $ docker exec -it <container name> bash\n // 5. Ensure that 'asdf' and 'foobar' were written to /tmp\n});\n```\n\n## Patterns (High-Level Constructs)\n\nIn typical CDK style, you can assemble often used groups of steps into higher level Constructs.\n\nConsider if you typically create AutomationDocuments that start with logging the time and end with logging the total time taken. You can create a high-level Automation Document and extend that when you implement an Automation.\n\nSee the `TimedDocument` class to see such implementation.\n\nOr consider the case of multiple steps that are always run together such as rebooting and instance and waiting for it to be active.\n\nThe below example is copied from the `RebootInstanceAndWait` class:\n\n```ts\nexport class RebootInstanceAndWait extends CompositeAutomationStep {\n\n readonly reboot: AwsApiStep;\n readonly describe: WaitForResourceStep;\n\n constructor(scope: Construct, id: string, instanceId: IStringVariable) {\n super(scope, id);\n this.reboot = new AwsApiStep(this, 'RebootInstances', {\n service: 'ec2',\n pascalCaseApi: 'RebootInstances',\n apiParams: { InstanceIds: [instanceId] },\n outputs: [],\n });\n this.describe = new WaitForResourceStep(this, 'DescribeInstances', {\n service: 'ec2',\n pascalCaseApi: 'DescribeInstances',\n apiParams: { InstanceIds: [instanceId] },\n selector: '$.Reservations[0].Instances[0].State.Name',\n desiredValues: ['running'],\n });\n }\n\n addToDocument(doc: AutomationDocumentBuilder): void {\n doc.addStep(this.reboot);\n doc.addStep(this.describe);\n }\n}\n\n```\n\nNow, you can use `RebootInstanceAndWait` as a step in a document and the child steps will be included.\n\n## Existing Documents\n\nDo you have an existing document that you want to convert to code and/or test locally using the simulation?\n\n### Import Existing Document\n\nHere is an example of how you can import an existing document and then simulate it locally with mocked AWS resources:\n\n```ts\n// Initialize Mocks\nconst sleeper = new MockSleep();\nconst awsInvoker = new MockAwsInvoker();\nawsInvoker.whenThen(\n // when invoked with...\n {awsApi: 'listBuckets', awsParams: {}, service: 'S3'},\n // then response with...\n {Owner: {ID: \"BUCKET_ID\"}})\n\n// ======> Create document from file <=======\nconst stack: Stack = new Stack();\nconst myAutomationDoc = StringDocument.fromFile(stack, \"MyAutomationDoc\", 'test/myAutomation.json', {\n // ======================\n});\n\n// Execute simulation\nconst simOutput = Simulation.ofAutomation(myAutomationDoc, {\n sleepHook: sleeper,\n awsInvoker: awsInvoker\n}).simulate({});\n\n// Assert simulation result\nassert.deepEqual(awsInvoker.previousInvocations, [\n { awsApi: 'listBuckets', awsParams: {}, service: 'S3' }]);\nassert.deepEqual(sleeper.sleepMilliInvocations, [3000]);\nassert.deepEqual(simOutput.outputs['simulationSteps'], ['MySleep', 'GetBucketId']);\n```\n\n### Import Existing Steps\n\nYou can also grab a string step (or steps) and import them as CDK step constructs.\nThis can be used to convert existing documents into CDK with each step defined separately.\nDoing so will allow you do modify steps and reuse them in other documents.\n\nHere's a simple example of a sleep step copy and pasted from its original yaml:\n\n```ts\nStringStep.fromYaml(this, `\n name: sleep\n action: aws:sleep\n inputs:\n Duration: PT0M\n`, {});\n```\n\nThe above will return the CDK construct SleepStep.\n\n## What is Planned?\n\nThis library currently contains AutomationDocument steps.\n\nAlso planned is the ability to run Command documents.\n\nStay tuned!\n\n## Related Projects\n\n- https://github.com/udondan/cdk-ssm-document\n\n## Security\nSee [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.\n\n## License\nThis project is licensed under the Apache-2.0 License.\n\n"
|
|
3035
|
+
"markdown": "# SSM Document CDK\nThis library provides a code-based utility for implementing SSM Documents. The SSM Document objects can be used to print YAML/JSON documents and to mimic document processing locally.\n\nThis library abstracts SSM Documents at a high level, with each step as well as the document itself being objects. The properties needed to build these objects correlate to the settings that apply to them, making them simple to make.\nThis library can be used to test your document locally before deploying it to SSM.\n\nSince the library is written in JSII, it can be exported to other languages that support JSII (Java, Python).\n\nThis is what you'd use if you wanted to:\n1. The ability to test without deploying resources or executing an actual SSM on AWS.\n2. Reusability of steps between documents by reusing existing items\n3. Create logical higher-level groupings of reusable groups of steps (\"Patterns\")\n4. Simple to use interface for writing documents\n5. Import existing documents from a file (or string) and mimic them locally to test them.\n\n## Usage\n\n### Document Creation\n\nTypescript usage (Execute AWS API Step)...\nThe below creates the AutomationDocument in an AWS CDK stack.\n```ts\nimport { AutomationDocument } from './automation-document';\n\nexport class HelloWorld extends Stack {\n constructor(app: Construct, id: string) {\n super(app, id);\n\n // Create AutomationDocument\n const myDoc = new AutomationDocument(this, \"MyDoc\", {\n documentFormat: DocumentFormat.JSON,\n documentName: \"MyDoc\",\n docInputs: [Input.ofTypeString('MyInput', { defaultValue: 'a' })],\n });\n\n // Define your steps...\n myDoc.addStep(new PauseStep(this, \"MyPauseStep\", {\n name: \"MyPauseStep\",\n explicitNextStep: StepRef.fromName(\"step1\") // Optional (will default to next added step)\n }));\n\n myDoc.addStep(new ExecuteScriptStep(this, \"MyExecuteStep\", {\n name: \"step1\",\n language: ScriptLanguage.python(PythonVersion.VERSION_3_6, 'my_func'),\n code: ScriptCode.fromFile(resolve(\"test/test_file.py\")),\n // OR ScriptCode.inline(\"def my_func(args, context):\\n return {'MyReturn': args['MyInput'] + '-suffix'}\\n\"),\n outputs: [{\n outputType: DataTypeEnum.STRING,\n name: \"MyFuncOut\",\n selector: \"$.Payload.MyReturn\"\n }],\n onFailure: OnFailure.abort(),\n inputPayload: { MyInput: StringVariable.of('MyInput') },\n }));\n }\n}\n```\n\n### Document JSON/YAML Export as YAML/JSON\n\nYou can deploy the above document using CDK.\nTo print the above document object as a JSON (or YAML), do the following:\n\n```ts\nconst myDocJson = myDoc.print(); // Print YAML by setting the documentFormat to YAML\n```\n\n\n### Document Simulation\n\nTo run the document object in simulation mode, use the below. Simulation mode does NOT hit the SSM API, rather it mimics the execution that will happen in an SSM execution. The run happens locally and allows you to mock the calls to external services (AWS APIs for example) or to invoke those services using your local credentials.\n\n```ts\nimport { Simulation } from './simulation';\n\nconst myDocJson = Simulation.ofAutomation(myDoc, {}).simulate({ MyInput: \"FooBar\" });\n```\n\n### Command Documents\n\nBelow is an example of how to use the library to create Command documents.\nSimulation for command documents is not yet supported for all command plugins.\nYou can use a Docker image/container as a playground for testing the Command document execution for the supported plugins.\n\nIn this example there is a complete CDK stack. Notice that the `CommandDocument` is saved as a field so that it can be tested from the test code.\n```typescript\nexport class HelloCdkStack extends Stack {\n readonly myCommandDoc: CommandDocument;\n constructor(scope: Construct, id: string, props?: StackProps) {\n super(scope, id, props);\n this.myCommandDoc = new CommandDocument(this, \"MyCommandDoc\", {\n docInputs: [Input.ofTypeString('FirstCommand', { defaultValue: 'a' })],\n })\n const runScriptStep = new RunShellScriptStep(this, \"MyShellScript\", {\n runCommand: [\n StringVariable.of(\"FirstCommand\"),\n HardCodedString.of(\"mkdir asdf\"),\n ],\n });\n this.myCommandDoc.addStep(runScriptStep);\n }\n}\n```\n\nBelow is an example of how you would run a simulation against the above `CommandDocument`.\n\nCurrently, `bash` must be available in the container or the executions against the docker will not succeed.\n\n```typescript\ntest('Test command doc', () => {\n const app = new cdk.App();\n const stack = new HelloCdk.HelloCdkStack(app, 'MyTestStack');\n // 1. $ docker pull amazonlinux\n // 2. $ docker run -di amazonlinux\n const simulation = Simulation.ofCommand(stack.myCommandDoc, {\n simulationPlatform: Platform.LINUX,\n environment: DockerEnvironment.fromContainer('MY_CONTAINER_ID')\n });\n simulation.simulate({FirstCommand: 'mkdir foobar'})\n // 3. The document should run the first command (create 'foobar') and create file 'asdf'\n // 4. $ docker exec -it <container name> bash\n // 5. Ensure that 'asdf' and 'foobar' were written to /tmp\n});\n```\n\n## Patterns (High-Level Constructs)\n\nIn typical CDK style, you can assemble often used groups of steps into higher level Constructs.\n\nConsider if you typically create AutomationDocuments that start with logging the time and end with logging the total time taken. You can create a high-level Automation Document and extend that when you implement an Automation.\n\nSee the `TimedDocument` class to see such implementation.\n\nOr consider the case of multiple steps that are always run together such as rebooting and instance and waiting for it to be active.\n\nThe below example is copied from the `RebootInstanceAndWait` class:\n\n```ts\nexport class RebootInstanceAndWait extends CompositeAutomationStep {\n\n readonly reboot: AwsApiStep;\n readonly describe: WaitForResourceStep;\n\n constructor(scope: Construct, id: string, instanceId: IStringVariable) {\n super(scope, id);\n this.reboot = new AwsApiStep(this, 'RebootInstances', {\n service: 'ec2',\n pascalCaseApi: 'RebootInstances',\n apiParams: { InstanceIds: [instanceId] },\n outputs: [],\n });\n this.describe = new WaitForResourceStep(this, 'DescribeInstances', {\n service: 'ec2',\n pascalCaseApi: 'DescribeInstances',\n apiParams: { InstanceIds: [instanceId] },\n selector: '$.Reservations[0].Instances[0].State.Name',\n desiredValues: ['running'],\n });\n }\n\n addToDocument(doc: AutomationDocumentBuilder): void {\n doc.addStep(this.reboot);\n doc.addStep(this.describe);\n }\n}\n\n```\n\nNow, you can use `RebootInstanceAndWait` as a step in a document and the child steps will be included.\n\n## Existing Documents\n\nDo you have an existing document that you want to convert to code and/or test locally using the simulation?\n\n### Import Existing Document\n\nHere is an example of how you can import an existing document and then simulate it locally with mocked AWS resources:\n\n```ts\n// Initialize Mocks\nconst sleeper = new MockSleep();\nconst awsInvoker = new MockAwsInvoker();\nawsInvoker.whenThen(\n // when invoked with...\n {awsApi: 'listBuckets', awsParams: {}, service: 'S3'},\n // then response with...\n {Owner: {ID: \"BUCKET_ID\"}})\n\n// ======> Create document from file <=======\nconst stack: Stack = new Stack();\nconst myAutomationDoc = StringDocument.fromFile(stack, \"MyAutomationDoc\", 'test/myAutomation.json', {\n // ======================\n});\n\n// Execute simulation\nconst simOutput = Simulation.ofAutomation(myAutomationDoc, {\n sleepHook: sleeper,\n awsInvoker: awsInvoker\n}).simulate({});\n\n// Assert simulation result\nassert.deepEqual(awsInvoker.previousInvocations, [\n { awsApi: 'listBuckets', awsParams: {}, service: 'S3' }]);\nassert.deepEqual(sleeper.sleepMilliInvocations, [3000]);\nassert.deepEqual(simOutput.outputs['simulationSteps'], ['MySleep', 'GetBucketId']);\n```\n\n### Import Existing Steps\n\nYou can also grab a string step (or steps) and import them as CDK step constructs.\nThis can be used to convert existing documents into CDK with each step defined separately.\nDoing so will allow you do modify steps and reuse them in other documents.\n\nHere's a simple example of a sleep step copy and pasted from its original yaml:\n\n```ts\nStringStep.fromYaml(this, `\n name: sleep\n action: aws:sleep\n inputs:\n Duration: PT0M\n`, {});\n```\n\nThe above will return the CDK construct SleepStep.\n\n## Incident Manager\n\nThis library provides L2 constructs for IncidentResponse as follows:\n\n```typescript\nnew IncidentResponse(this, \"MyIncidentResponsePlan\", {\n incidentTemplate: IncidentTemplate.critical('EC2 Instance Utilization Impacted', {\n summary: 'EC2 Instance Impacted'\n }),\n actions: [\n IncidentResponseAction.ssmAutomation(myAutomationDoc, ec2CwAlarmRole, {\n parameters: {\n IncidentRecordArn: StringVariable.of('INCIDENT_RECORD_ARN'),\n InvolvedResources: StringVariable.of('INVOLVED_RESOURCES'),\n AutomationAssumeRole: HardCodedString.of(ec2CwAlarmRole.roleArn),\n }\n })\n ]\n});\n```\n\nNotice how the `myAutomationDoc` is specified which is a reference to an AutomationDocument created using this library.\n\n## What is Planned?\n\nThis library currently contains AutomationDocument and CommandDocument steps.\nSimulation for AutomationDocuments is fully supported. Simulation for CommandDocuments is limited.\n\nStay tuned!\n\n## Related Projects\n\n- https://github.com/udondan/cdk-ssm-document\n\n## Security\nSee [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.\n\n## License\nThis project is licensed under the Apache-2.0 License.\n\n"
|
|
2802
3036
|
},
|
|
2803
3037
|
"repository": {
|
|
2804
3038
|
"type": "git",
|
|
@@ -18575,6 +18809,699 @@
|
|
|
18575
18809
|
"name": "IWebhook",
|
|
18576
18810
|
"symbolId": "src/interface/webhook:IWebhook"
|
|
18577
18811
|
},
|
|
18812
|
+
"@cdklabs/cdk-ssm-documents.IncidentResponse": {
|
|
18813
|
+
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
18814
|
+
"base": "constructs.Construct",
|
|
18815
|
+
"docs": {
|
|
18816
|
+
"stability": "stable",
|
|
18817
|
+
"summary": "Provides L2 construct for https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html#aws-resource-ssmincidents-responseplan-properties."
|
|
18818
|
+
},
|
|
18819
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponse",
|
|
18820
|
+
"initializer": {
|
|
18821
|
+
"docs": {
|
|
18822
|
+
"stability": "stable"
|
|
18823
|
+
},
|
|
18824
|
+
"locationInModule": {
|
|
18825
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18826
|
+
"line": 194
|
|
18827
|
+
},
|
|
18828
|
+
"parameters": [
|
|
18829
|
+
{
|
|
18830
|
+
"name": "scope",
|
|
18831
|
+
"type": {
|
|
18832
|
+
"fqn": "constructs.Construct"
|
|
18833
|
+
}
|
|
18834
|
+
},
|
|
18835
|
+
{
|
|
18836
|
+
"name": "id",
|
|
18837
|
+
"type": {
|
|
18838
|
+
"primitive": "string"
|
|
18839
|
+
}
|
|
18840
|
+
},
|
|
18841
|
+
{
|
|
18842
|
+
"name": "props",
|
|
18843
|
+
"type": {
|
|
18844
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponseProps"
|
|
18845
|
+
}
|
|
18846
|
+
}
|
|
18847
|
+
]
|
|
18848
|
+
},
|
|
18849
|
+
"kind": "class",
|
|
18850
|
+
"locationInModule": {
|
|
18851
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18852
|
+
"line": 192
|
|
18853
|
+
},
|
|
18854
|
+
"name": "IncidentResponse",
|
|
18855
|
+
"properties": [
|
|
18856
|
+
{
|
|
18857
|
+
"docs": {
|
|
18858
|
+
"stability": "stable"
|
|
18859
|
+
},
|
|
18860
|
+
"immutable": true,
|
|
18861
|
+
"locationInModule": {
|
|
18862
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18863
|
+
"line": 193
|
|
18864
|
+
},
|
|
18865
|
+
"name": "cfnResponsePlan",
|
|
18866
|
+
"type": {
|
|
18867
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan"
|
|
18868
|
+
}
|
|
18869
|
+
}
|
|
18870
|
+
],
|
|
18871
|
+
"symbolId": "src/incident-response/incident-response:IncidentResponse"
|
|
18872
|
+
},
|
|
18873
|
+
"@cdklabs/cdk-ssm-documents.IncidentResponseAction": {
|
|
18874
|
+
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
18875
|
+
"docs": {
|
|
18876
|
+
"custom": {
|
|
18877
|
+
"link": ": https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-action.html"
|
|
18878
|
+
},
|
|
18879
|
+
"stability": "stable",
|
|
18880
|
+
"summary": "The Action property type specifies the configuration to launch."
|
|
18881
|
+
},
|
|
18882
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponseAction",
|
|
18883
|
+
"initializer": {
|
|
18884
|
+
"docs": {
|
|
18885
|
+
"stability": "stable"
|
|
18886
|
+
},
|
|
18887
|
+
"locationInModule": {
|
|
18888
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18889
|
+
"line": 62
|
|
18890
|
+
},
|
|
18891
|
+
"parameters": [
|
|
18892
|
+
{
|
|
18893
|
+
"name": "cfnEntry",
|
|
18894
|
+
"type": {
|
|
18895
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.ActionProperty"
|
|
18896
|
+
}
|
|
18897
|
+
}
|
|
18898
|
+
]
|
|
18899
|
+
},
|
|
18900
|
+
"kind": "class",
|
|
18901
|
+
"locationInModule": {
|
|
18902
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18903
|
+
"line": 26
|
|
18904
|
+
},
|
|
18905
|
+
"methods": [
|
|
18906
|
+
{
|
|
18907
|
+
"docs": {
|
|
18908
|
+
"stability": "stable",
|
|
18909
|
+
"summary": "Specify the AutomationDocument to use for the action property."
|
|
18910
|
+
},
|
|
18911
|
+
"locationInModule": {
|
|
18912
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18913
|
+
"line": 30
|
|
18914
|
+
},
|
|
18915
|
+
"name": "ssmAutomation",
|
|
18916
|
+
"parameters": [
|
|
18917
|
+
{
|
|
18918
|
+
"name": "automationDocument",
|
|
18919
|
+
"type": {
|
|
18920
|
+
"fqn": "@cdklabs/cdk-ssm-documents.AutomationDocument"
|
|
18921
|
+
}
|
|
18922
|
+
},
|
|
18923
|
+
{
|
|
18924
|
+
"name": "role",
|
|
18925
|
+
"type": {
|
|
18926
|
+
"fqn": "aws-cdk-lib.aws_iam.Role"
|
|
18927
|
+
}
|
|
18928
|
+
},
|
|
18929
|
+
{
|
|
18930
|
+
"name": "props",
|
|
18931
|
+
"optional": true,
|
|
18932
|
+
"type": {
|
|
18933
|
+
"fqn": "@cdklabs/cdk-ssm-documents.SsmAutomationProps"
|
|
18934
|
+
}
|
|
18935
|
+
}
|
|
18936
|
+
],
|
|
18937
|
+
"returns": {
|
|
18938
|
+
"type": {
|
|
18939
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponseAction"
|
|
18940
|
+
}
|
|
18941
|
+
},
|
|
18942
|
+
"static": true
|
|
18943
|
+
},
|
|
18944
|
+
{
|
|
18945
|
+
"docs": {
|
|
18946
|
+
"stability": "stable"
|
|
18947
|
+
},
|
|
18948
|
+
"locationInModule": {
|
|
18949
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18950
|
+
"line": 42
|
|
18951
|
+
},
|
|
18952
|
+
"name": "ssmAutomationEscapeHatch",
|
|
18953
|
+
"parameters": [
|
|
18954
|
+
{
|
|
18955
|
+
"name": "ssmAutomationProperty",
|
|
18956
|
+
"type": {
|
|
18957
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.SsmAutomationProperty"
|
|
18958
|
+
}
|
|
18959
|
+
}
|
|
18960
|
+
],
|
|
18961
|
+
"returns": {
|
|
18962
|
+
"type": {
|
|
18963
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponseAction"
|
|
18964
|
+
}
|
|
18965
|
+
},
|
|
18966
|
+
"static": true
|
|
18967
|
+
}
|
|
18968
|
+
],
|
|
18969
|
+
"name": "IncidentResponseAction",
|
|
18970
|
+
"properties": [
|
|
18971
|
+
{
|
|
18972
|
+
"docs": {
|
|
18973
|
+
"stability": "stable"
|
|
18974
|
+
},
|
|
18975
|
+
"immutable": true,
|
|
18976
|
+
"locationInModule": {
|
|
18977
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18978
|
+
"line": 60
|
|
18979
|
+
},
|
|
18980
|
+
"name": "cfnEntry",
|
|
18981
|
+
"type": {
|
|
18982
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.ActionProperty"
|
|
18983
|
+
}
|
|
18984
|
+
}
|
|
18985
|
+
],
|
|
18986
|
+
"symbolId": "src/incident-response/incident-response:IncidentResponseAction"
|
|
18987
|
+
},
|
|
18988
|
+
"@cdklabs/cdk-ssm-documents.IncidentResponseProps": {
|
|
18989
|
+
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
18990
|
+
"datatype": true,
|
|
18991
|
+
"docs": {
|
|
18992
|
+
"stability": "stable",
|
|
18993
|
+
"summary": "Provides props IncidentResponse."
|
|
18994
|
+
},
|
|
18995
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponseProps",
|
|
18996
|
+
"kind": "interface",
|
|
18997
|
+
"locationInModule": {
|
|
18998
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
18999
|
+
"line": 151
|
|
19000
|
+
},
|
|
19001
|
+
"name": "IncidentResponseProps",
|
|
19002
|
+
"properties": [
|
|
19003
|
+
{
|
|
19004
|
+
"abstract": true,
|
|
19005
|
+
"docs": {
|
|
19006
|
+
"stability": "stable",
|
|
19007
|
+
"summary": "The actions that the response plan starts at the beginning of an incident."
|
|
19008
|
+
},
|
|
19009
|
+
"immutable": true,
|
|
19010
|
+
"locationInModule": {
|
|
19011
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19012
|
+
"line": 155
|
|
19013
|
+
},
|
|
19014
|
+
"name": "actions",
|
|
19015
|
+
"type": {
|
|
19016
|
+
"collection": {
|
|
19017
|
+
"elementtype": {
|
|
19018
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentResponseAction"
|
|
19019
|
+
},
|
|
19020
|
+
"kind": "array"
|
|
19021
|
+
}
|
|
19022
|
+
}
|
|
19023
|
+
},
|
|
19024
|
+
{
|
|
19025
|
+
"abstract": true,
|
|
19026
|
+
"docs": {
|
|
19027
|
+
"stability": "stable",
|
|
19028
|
+
"summary": "Details used to create an incident when using this response plan."
|
|
19029
|
+
},
|
|
19030
|
+
"immutable": true,
|
|
19031
|
+
"locationInModule": {
|
|
19032
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19033
|
+
"line": 160
|
|
19034
|
+
},
|
|
19035
|
+
"name": "incidentTemplate",
|
|
19036
|
+
"type": {
|
|
19037
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate"
|
|
19038
|
+
}
|
|
19039
|
+
},
|
|
19040
|
+
{
|
|
19041
|
+
"abstract": true,
|
|
19042
|
+
"docs": {
|
|
19043
|
+
"custom": {
|
|
19044
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html#cfn-ssmincidents-responseplan-chatchannel"
|
|
19045
|
+
},
|
|
19046
|
+
"stability": "stable",
|
|
19047
|
+
"summary": "The AWS Chatbot chat channel used for collaboration during an incident."
|
|
19048
|
+
},
|
|
19049
|
+
"immutable": true,
|
|
19050
|
+
"locationInModule": {
|
|
19051
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19052
|
+
"line": 166
|
|
19053
|
+
},
|
|
19054
|
+
"name": "chatChannel",
|
|
19055
|
+
"optional": true,
|
|
19056
|
+
"type": {
|
|
19057
|
+
"union": {
|
|
19058
|
+
"types": [
|
|
19059
|
+
{
|
|
19060
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.ChatChannelProperty"
|
|
19061
|
+
},
|
|
19062
|
+
{
|
|
19063
|
+
"fqn": "aws-cdk-lib.IResolvable"
|
|
19064
|
+
}
|
|
19065
|
+
]
|
|
19066
|
+
}
|
|
19067
|
+
}
|
|
19068
|
+
},
|
|
19069
|
+
{
|
|
19070
|
+
"abstract": true,
|
|
19071
|
+
"docs": {
|
|
19072
|
+
"custom": {
|
|
19073
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html#cfn-ssmincidents-responseplan-displayname"
|
|
19074
|
+
},
|
|
19075
|
+
"stability": "stable",
|
|
19076
|
+
"summary": "The human readable name of the response plan."
|
|
19077
|
+
},
|
|
19078
|
+
"immutable": true,
|
|
19079
|
+
"locationInModule": {
|
|
19080
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19081
|
+
"line": 172
|
|
19082
|
+
},
|
|
19083
|
+
"name": "displayName",
|
|
19084
|
+
"optional": true,
|
|
19085
|
+
"type": {
|
|
19086
|
+
"primitive": "string"
|
|
19087
|
+
}
|
|
19088
|
+
},
|
|
19089
|
+
{
|
|
19090
|
+
"abstract": true,
|
|
19091
|
+
"docs": {
|
|
19092
|
+
"custom": {
|
|
19093
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html#cfn-ssmincidents-responseplan-engagements"
|
|
19094
|
+
},
|
|
19095
|
+
"stability": "stable",
|
|
19096
|
+
"summary": "The contacts and escalation plans that the response plan engages during an incident."
|
|
19097
|
+
},
|
|
19098
|
+
"immutable": true,
|
|
19099
|
+
"locationInModule": {
|
|
19100
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19101
|
+
"line": 178
|
|
19102
|
+
},
|
|
19103
|
+
"name": "engagements",
|
|
19104
|
+
"optional": true,
|
|
19105
|
+
"type": {
|
|
19106
|
+
"collection": {
|
|
19107
|
+
"elementtype": {
|
|
19108
|
+
"primitive": "string"
|
|
19109
|
+
},
|
|
19110
|
+
"kind": "array"
|
|
19111
|
+
}
|
|
19112
|
+
}
|
|
19113
|
+
},
|
|
19114
|
+
{
|
|
19115
|
+
"abstract": true,
|
|
19116
|
+
"docs": {
|
|
19117
|
+
"custom": {
|
|
19118
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html#cfn-ssmincidents-responseplan-tags"
|
|
19119
|
+
},
|
|
19120
|
+
"remarks": "For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) .",
|
|
19121
|
+
"stability": "stable",
|
|
19122
|
+
"summary": "An array of key-value pairs to apply to this resource."
|
|
19123
|
+
},
|
|
19124
|
+
"immutable": true,
|
|
19125
|
+
"locationInModule": {
|
|
19126
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19127
|
+
"line": 186
|
|
19128
|
+
},
|
|
19129
|
+
"name": "tags",
|
|
19130
|
+
"optional": true,
|
|
19131
|
+
"type": {
|
|
19132
|
+
"collection": {
|
|
19133
|
+
"elementtype": {
|
|
19134
|
+
"fqn": "aws-cdk-lib.CfnTag"
|
|
19135
|
+
},
|
|
19136
|
+
"kind": "array"
|
|
19137
|
+
}
|
|
19138
|
+
}
|
|
19139
|
+
}
|
|
19140
|
+
],
|
|
19141
|
+
"symbolId": "src/incident-response/incident-response:IncidentResponseProps"
|
|
19142
|
+
},
|
|
19143
|
+
"@cdklabs/cdk-ssm-documents.IncidentTemplate": {
|
|
19144
|
+
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
19145
|
+
"docs": {
|
|
19146
|
+
"stability": "stable",
|
|
19147
|
+
"summary": "Provides L2 construct for https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html."
|
|
19148
|
+
},
|
|
19149
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate",
|
|
19150
|
+
"initializer": {
|
|
19151
|
+
"docs": {
|
|
19152
|
+
"stability": "stable"
|
|
19153
|
+
},
|
|
19154
|
+
"locationInModule": {
|
|
19155
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19156
|
+
"line": 138
|
|
19157
|
+
},
|
|
19158
|
+
"parameters": [
|
|
19159
|
+
{
|
|
19160
|
+
"name": "impact",
|
|
19161
|
+
"type": {
|
|
19162
|
+
"primitive": "number"
|
|
19163
|
+
}
|
|
19164
|
+
},
|
|
19165
|
+
{
|
|
19166
|
+
"name": "title",
|
|
19167
|
+
"type": {
|
|
19168
|
+
"primitive": "string"
|
|
19169
|
+
}
|
|
19170
|
+
},
|
|
19171
|
+
{
|
|
19172
|
+
"name": "props",
|
|
19173
|
+
"type": {
|
|
19174
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps"
|
|
19175
|
+
}
|
|
19176
|
+
}
|
|
19177
|
+
]
|
|
19178
|
+
},
|
|
19179
|
+
"kind": "class",
|
|
19180
|
+
"locationInModule": {
|
|
19181
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19182
|
+
"line": 101
|
|
19183
|
+
},
|
|
19184
|
+
"methods": [
|
|
19185
|
+
{
|
|
19186
|
+
"docs": {
|
|
19187
|
+
"stability": "stable",
|
|
19188
|
+
"summary": "Critical impact typically relates to full application failure that impacts many to all customers."
|
|
19189
|
+
},
|
|
19190
|
+
"locationInModule": {
|
|
19191
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19192
|
+
"line": 105
|
|
19193
|
+
},
|
|
19194
|
+
"name": "critical",
|
|
19195
|
+
"parameters": [
|
|
19196
|
+
{
|
|
19197
|
+
"name": "title",
|
|
19198
|
+
"type": {
|
|
19199
|
+
"primitive": "string"
|
|
19200
|
+
}
|
|
19201
|
+
},
|
|
19202
|
+
{
|
|
19203
|
+
"name": "props",
|
|
19204
|
+
"type": {
|
|
19205
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps"
|
|
19206
|
+
}
|
|
19207
|
+
}
|
|
19208
|
+
],
|
|
19209
|
+
"returns": {
|
|
19210
|
+
"type": {
|
|
19211
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate"
|
|
19212
|
+
}
|
|
19213
|
+
},
|
|
19214
|
+
"static": true
|
|
19215
|
+
},
|
|
19216
|
+
{
|
|
19217
|
+
"docs": {
|
|
19218
|
+
"stability": "stable",
|
|
19219
|
+
"summary": "High impact denotes partial application failure with impact to many customers."
|
|
19220
|
+
},
|
|
19221
|
+
"locationInModule": {
|
|
19222
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19223
|
+
"line": 112
|
|
19224
|
+
},
|
|
19225
|
+
"name": "high",
|
|
19226
|
+
"parameters": [
|
|
19227
|
+
{
|
|
19228
|
+
"name": "title",
|
|
19229
|
+
"type": {
|
|
19230
|
+
"primitive": "string"
|
|
19231
|
+
}
|
|
19232
|
+
},
|
|
19233
|
+
{
|
|
19234
|
+
"name": "props",
|
|
19235
|
+
"type": {
|
|
19236
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps"
|
|
19237
|
+
}
|
|
19238
|
+
}
|
|
19239
|
+
],
|
|
19240
|
+
"returns": {
|
|
19241
|
+
"type": {
|
|
19242
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate"
|
|
19243
|
+
}
|
|
19244
|
+
},
|
|
19245
|
+
"static": true
|
|
19246
|
+
},
|
|
19247
|
+
{
|
|
19248
|
+
"docs": {
|
|
19249
|
+
"stability": "stable",
|
|
19250
|
+
"summary": "Low impact denotes that customers may not be impacted by the problem yet."
|
|
19251
|
+
},
|
|
19252
|
+
"locationInModule": {
|
|
19253
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19254
|
+
"line": 126
|
|
19255
|
+
},
|
|
19256
|
+
"name": "low",
|
|
19257
|
+
"parameters": [
|
|
19258
|
+
{
|
|
19259
|
+
"name": "title",
|
|
19260
|
+
"type": {
|
|
19261
|
+
"primitive": "string"
|
|
19262
|
+
}
|
|
19263
|
+
},
|
|
19264
|
+
{
|
|
19265
|
+
"name": "props",
|
|
19266
|
+
"type": {
|
|
19267
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps"
|
|
19268
|
+
}
|
|
19269
|
+
}
|
|
19270
|
+
],
|
|
19271
|
+
"returns": {
|
|
19272
|
+
"type": {
|
|
19273
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate"
|
|
19274
|
+
}
|
|
19275
|
+
},
|
|
19276
|
+
"static": true
|
|
19277
|
+
},
|
|
19278
|
+
{
|
|
19279
|
+
"docs": {
|
|
19280
|
+
"stability": "stable",
|
|
19281
|
+
"summary": "Medium impact denotes that the application is providing reduced service to customers."
|
|
19282
|
+
},
|
|
19283
|
+
"locationInModule": {
|
|
19284
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19285
|
+
"line": 119
|
|
19286
|
+
},
|
|
19287
|
+
"name": "medium",
|
|
19288
|
+
"parameters": [
|
|
19289
|
+
{
|
|
19290
|
+
"name": "title",
|
|
19291
|
+
"type": {
|
|
19292
|
+
"primitive": "string"
|
|
19293
|
+
}
|
|
19294
|
+
},
|
|
19295
|
+
{
|
|
19296
|
+
"name": "props",
|
|
19297
|
+
"type": {
|
|
19298
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps"
|
|
19299
|
+
}
|
|
19300
|
+
}
|
|
19301
|
+
],
|
|
19302
|
+
"returns": {
|
|
19303
|
+
"type": {
|
|
19304
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate"
|
|
19305
|
+
}
|
|
19306
|
+
},
|
|
19307
|
+
"static": true
|
|
19308
|
+
},
|
|
19309
|
+
{
|
|
19310
|
+
"docs": {
|
|
19311
|
+
"stability": "stable",
|
|
19312
|
+
"summary": "No impact denotes that customers aren't currently impacted but urgent action is needed to avoid impact."
|
|
19313
|
+
},
|
|
19314
|
+
"locationInModule": {
|
|
19315
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19316
|
+
"line": 133
|
|
19317
|
+
},
|
|
19318
|
+
"name": "noImpact",
|
|
19319
|
+
"parameters": [
|
|
19320
|
+
{
|
|
19321
|
+
"name": "title",
|
|
19322
|
+
"type": {
|
|
19323
|
+
"primitive": "string"
|
|
19324
|
+
}
|
|
19325
|
+
},
|
|
19326
|
+
{
|
|
19327
|
+
"name": "props",
|
|
19328
|
+
"type": {
|
|
19329
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps"
|
|
19330
|
+
}
|
|
19331
|
+
}
|
|
19332
|
+
],
|
|
19333
|
+
"returns": {
|
|
19334
|
+
"type": {
|
|
19335
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplate"
|
|
19336
|
+
}
|
|
19337
|
+
},
|
|
19338
|
+
"static": true
|
|
19339
|
+
}
|
|
19340
|
+
],
|
|
19341
|
+
"name": "IncidentTemplate",
|
|
19342
|
+
"properties": [
|
|
19343
|
+
{
|
|
19344
|
+
"docs": {
|
|
19345
|
+
"stability": "stable"
|
|
19346
|
+
},
|
|
19347
|
+
"immutable": true,
|
|
19348
|
+
"locationInModule": {
|
|
19349
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19350
|
+
"line": 136
|
|
19351
|
+
},
|
|
19352
|
+
"name": "cfnEntry",
|
|
19353
|
+
"type": {
|
|
19354
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.IncidentTemplateProperty"
|
|
19355
|
+
}
|
|
19356
|
+
}
|
|
19357
|
+
],
|
|
19358
|
+
"symbolId": "src/incident-response/incident-response:IncidentTemplate"
|
|
19359
|
+
},
|
|
19360
|
+
"@cdklabs/cdk-ssm-documents.IncidentTemplateProps": {
|
|
19361
|
+
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
19362
|
+
"datatype": true,
|
|
19363
|
+
"docs": {
|
|
19364
|
+
"stability": "stable",
|
|
19365
|
+
"summary": "Provides L2 construct for https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html."
|
|
19366
|
+
},
|
|
19367
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IncidentTemplateProps",
|
|
19368
|
+
"kind": "interface",
|
|
19369
|
+
"locationInModule": {
|
|
19370
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19371
|
+
"line": 71
|
|
19372
|
+
},
|
|
19373
|
+
"name": "IncidentTemplateProps",
|
|
19374
|
+
"properties": [
|
|
19375
|
+
{
|
|
19376
|
+
"abstract": true,
|
|
19377
|
+
"docs": {
|
|
19378
|
+
"custom": {
|
|
19379
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html#cfn-ssmincidents-responseplan-incidenttemplate-dedupestring"
|
|
19380
|
+
},
|
|
19381
|
+
"stability": "stable",
|
|
19382
|
+
"summary": "Used to create only one incident record for an incident."
|
|
19383
|
+
},
|
|
19384
|
+
"immutable": true,
|
|
19385
|
+
"locationInModule": {
|
|
19386
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19387
|
+
"line": 77
|
|
19388
|
+
},
|
|
19389
|
+
"name": "dedupeString",
|
|
19390
|
+
"optional": true,
|
|
19391
|
+
"type": {
|
|
19392
|
+
"primitive": "string"
|
|
19393
|
+
}
|
|
19394
|
+
},
|
|
19395
|
+
{
|
|
19396
|
+
"abstract": true,
|
|
19397
|
+
"docs": {
|
|
19398
|
+
"custom": {
|
|
19399
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html#cfn-ssmincidents-responseplan-incidenttemplate-incidenttags"
|
|
19400
|
+
},
|
|
19401
|
+
"stability": "stable",
|
|
19402
|
+
"summary": "`CfnResponsePlan.IncidentTemplateProperty.IncidentTags`."
|
|
19403
|
+
},
|
|
19404
|
+
"immutable": true,
|
|
19405
|
+
"locationInModule": {
|
|
19406
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19407
|
+
"line": 83
|
|
19408
|
+
},
|
|
19409
|
+
"name": "incidentTags",
|
|
19410
|
+
"optional": true,
|
|
19411
|
+
"type": {
|
|
19412
|
+
"union": {
|
|
19413
|
+
"types": [
|
|
19414
|
+
{
|
|
19415
|
+
"fqn": "aws-cdk-lib.IResolvable"
|
|
19416
|
+
},
|
|
19417
|
+
{
|
|
19418
|
+
"collection": {
|
|
19419
|
+
"elementtype": {
|
|
19420
|
+
"union": {
|
|
19421
|
+
"types": [
|
|
19422
|
+
{
|
|
19423
|
+
"fqn": "aws-cdk-lib.IResolvable"
|
|
19424
|
+
},
|
|
19425
|
+
{
|
|
19426
|
+
"fqn": "aws-cdk-lib.CfnTag"
|
|
19427
|
+
}
|
|
19428
|
+
]
|
|
19429
|
+
}
|
|
19430
|
+
},
|
|
19431
|
+
"kind": "array"
|
|
19432
|
+
}
|
|
19433
|
+
}
|
|
19434
|
+
]
|
|
19435
|
+
}
|
|
19436
|
+
}
|
|
19437
|
+
},
|
|
19438
|
+
{
|
|
19439
|
+
"abstract": true,
|
|
19440
|
+
"docs": {
|
|
19441
|
+
"custom": {
|
|
19442
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html#cfn-ssmincidents-responseplan-incidenttemplate-notificationtargets"
|
|
19443
|
+
},
|
|
19444
|
+
"remarks": "You can also make updates to the incident through the chat channel using the SNS topics.",
|
|
19445
|
+
"stability": "stable",
|
|
19446
|
+
"summary": "The SNS targets that AWS Chatbot uses to notify the chat channel of updates to an incident."
|
|
19447
|
+
},
|
|
19448
|
+
"immutable": true,
|
|
19449
|
+
"locationInModule": {
|
|
19450
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19451
|
+
"line": 89
|
|
19452
|
+
},
|
|
19453
|
+
"name": "notificationTargets",
|
|
19454
|
+
"optional": true,
|
|
19455
|
+
"type": {
|
|
19456
|
+
"union": {
|
|
19457
|
+
"types": [
|
|
19458
|
+
{
|
|
19459
|
+
"fqn": "aws-cdk-lib.IResolvable"
|
|
19460
|
+
},
|
|
19461
|
+
{
|
|
19462
|
+
"collection": {
|
|
19463
|
+
"elementtype": {
|
|
19464
|
+
"union": {
|
|
19465
|
+
"types": [
|
|
19466
|
+
{
|
|
19467
|
+
"fqn": "aws-cdk-lib.aws_ssmincidents.CfnResponsePlan.NotificationTargetItemProperty"
|
|
19468
|
+
},
|
|
19469
|
+
{
|
|
19470
|
+
"fqn": "aws-cdk-lib.IResolvable"
|
|
19471
|
+
}
|
|
19472
|
+
]
|
|
19473
|
+
}
|
|
19474
|
+
},
|
|
19475
|
+
"kind": "array"
|
|
19476
|
+
}
|
|
19477
|
+
}
|
|
19478
|
+
]
|
|
19479
|
+
}
|
|
19480
|
+
}
|
|
19481
|
+
},
|
|
19482
|
+
{
|
|
19483
|
+
"abstract": true,
|
|
19484
|
+
"docs": {
|
|
19485
|
+
"custom": {
|
|
19486
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html#cfn-ssmincidents-responseplan-incidenttemplate-summary"
|
|
19487
|
+
},
|
|
19488
|
+
"stability": "stable",
|
|
19489
|
+
"summary": "The summary describes what has happened during the incident."
|
|
19490
|
+
},
|
|
19491
|
+
"immutable": true,
|
|
19492
|
+
"locationInModule": {
|
|
19493
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
19494
|
+
"line": 95
|
|
19495
|
+
},
|
|
19496
|
+
"name": "summary",
|
|
19497
|
+
"optional": true,
|
|
19498
|
+
"type": {
|
|
19499
|
+
"primitive": "string"
|
|
19500
|
+
}
|
|
19501
|
+
}
|
|
19502
|
+
],
|
|
19503
|
+
"symbolId": "src/incident-response/incident-response:IncidentTemplateProps"
|
|
19504
|
+
},
|
|
18578
19505
|
"@cdklabs/cdk-ssm-documents.InlineScriptCode": {
|
|
18579
19506
|
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
18580
19507
|
"base": "@cdklabs/cdk-ssm-documents.ScriptCode",
|
|
@@ -29435,6 +30362,68 @@
|
|
|
29435
30362
|
],
|
|
29436
30363
|
"symbolId": "src/parent-steps/command/software-inventory-step:SoftwareInventoryStepProps"
|
|
29437
30364
|
},
|
|
30365
|
+
"@cdklabs/cdk-ssm-documents.SsmAutomationProps": {
|
|
30366
|
+
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
30367
|
+
"datatype": true,
|
|
30368
|
+
"docs": {
|
|
30369
|
+
"stability": "stable"
|
|
30370
|
+
},
|
|
30371
|
+
"fqn": "@cdklabs/cdk-ssm-documents.SsmAutomationProps",
|
|
30372
|
+
"kind": "interface",
|
|
30373
|
+
"locationInModule": {
|
|
30374
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
30375
|
+
"line": 8
|
|
30376
|
+
},
|
|
30377
|
+
"name": "SsmAutomationProps",
|
|
30378
|
+
"properties": [
|
|
30379
|
+
{
|
|
30380
|
+
"abstract": true,
|
|
30381
|
+
"docs": {
|
|
30382
|
+
"custom": {
|
|
30383
|
+
"link": ": https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-ssmparameter.html"
|
|
30384
|
+
},
|
|
30385
|
+
"stability": "stable",
|
|
30386
|
+
"summary": "Specify either StringVariables or HardCodedValues."
|
|
30387
|
+
},
|
|
30388
|
+
"immutable": true,
|
|
30389
|
+
"locationInModule": {
|
|
30390
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
30391
|
+
"line": 19
|
|
30392
|
+
},
|
|
30393
|
+
"name": "parameters",
|
|
30394
|
+
"type": {
|
|
30395
|
+
"collection": {
|
|
30396
|
+
"elementtype": {
|
|
30397
|
+
"fqn": "@cdklabs/cdk-ssm-documents.IGenericVariable"
|
|
30398
|
+
},
|
|
30399
|
+
"kind": "map"
|
|
30400
|
+
}
|
|
30401
|
+
}
|
|
30402
|
+
},
|
|
30403
|
+
{
|
|
30404
|
+
"abstract": true,
|
|
30405
|
+
"docs": {
|
|
30406
|
+
"custom": {
|
|
30407
|
+
"link": ": http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-ssmautomation.html#cfn-ssmincidents-responseplan-ssmautomation-targetaccount"
|
|
30408
|
+
},
|
|
30409
|
+
"remarks": "This can be in either the management account or an application account.",
|
|
30410
|
+
"stability": "stable",
|
|
30411
|
+
"summary": "The account that the automation document will be run in."
|
|
30412
|
+
},
|
|
30413
|
+
"immutable": true,
|
|
30414
|
+
"locationInModule": {
|
|
30415
|
+
"filename": "src/incident-response/incident-response.ts",
|
|
30416
|
+
"line": 13
|
|
30417
|
+
},
|
|
30418
|
+
"name": "targetAccount",
|
|
30419
|
+
"optional": true,
|
|
30420
|
+
"type": {
|
|
30421
|
+
"primitive": "string"
|
|
30422
|
+
}
|
|
30423
|
+
}
|
|
30424
|
+
],
|
|
30425
|
+
"symbolId": "src/incident-response/incident-response:SsmAutomationProps"
|
|
30426
|
+
},
|
|
29438
30427
|
"@cdklabs/cdk-ssm-documents.SsmDocument": {
|
|
29439
30428
|
"abstract": true,
|
|
29440
30429
|
"assembly": "@cdklabs/cdk-ssm-documents",
|
|
@@ -33144,6 +34133,6 @@
|
|
|
33144
34133
|
"symbolId": "src/interface/webhook:WebhookImpl"
|
|
33145
34134
|
}
|
|
33146
34135
|
},
|
|
33147
|
-
"version": "0.0.
|
|
33148
|
-
"fingerprint": "
|
|
33149
|
-
}
|
|
34136
|
+
"version": "0.0.25",
|
|
34137
|
+
"fingerprint": "9nF/MMCRdUXLjkYyIm61P7+7l6zV5cMr5zRrYjK6cA8="
|
|
34138
|
+
}
|