@cdklabs/cdk-ssm-documents 0.0.29 → 0.0.31
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 +105 -41
- package/API.md +249 -0
- 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.d.ts +6 -0
- package/lib/document/ssm-document.js +3 -3
- package/lib/domain/aws-service.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.js +3 -3
- 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.d.ts +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +3 -3
- 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.d.ts +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +7 -7
- 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.d.ts +6 -0
- package/lib/parent-steps/automation-step.js +13 -4
- 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 +1 -1
- 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 +1 -1
- package/releasetag.txt +1 -1
- package/version.txt +1 -1
package/.jsii
CHANGED
|
@@ -4043,7 +4043,7 @@
|
|
|
4043
4043
|
"line": 61
|
|
4044
4044
|
},
|
|
4045
4045
|
"name": "listOutputs",
|
|
4046
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
4046
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
4047
4047
|
"returns": {
|
|
4048
4048
|
"type": {
|
|
4049
4049
|
"collection": {
|
|
@@ -4508,7 +4508,7 @@
|
|
|
4508
4508
|
"line": 44
|
|
4509
4509
|
},
|
|
4510
4510
|
"name": "listOutputs",
|
|
4511
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
4511
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
4512
4512
|
"returns": {
|
|
4513
4513
|
"type": {
|
|
4514
4514
|
"collection": {
|
|
@@ -5452,6 +5452,49 @@
|
|
|
5452
5452
|
}
|
|
5453
5453
|
]
|
|
5454
5454
|
},
|
|
5455
|
+
{
|
|
5456
|
+
"docs": {
|
|
5457
|
+
"stability": "stable",
|
|
5458
|
+
"summary": "Lists the outputs that will be returned from this step."
|
|
5459
|
+
},
|
|
5460
|
+
"locationInModule": {
|
|
5461
|
+
"filename": "src/parent-steps/automation-step.ts",
|
|
5462
|
+
"line": 151
|
|
5463
|
+
},
|
|
5464
|
+
"name": "listOutputs",
|
|
5465
|
+
"overrides": "@cdklabs/cdk-ssm-documents.Step",
|
|
5466
|
+
"returns": {
|
|
5467
|
+
"type": {
|
|
5468
|
+
"collection": {
|
|
5469
|
+
"elementtype": {
|
|
5470
|
+
"fqn": "@cdklabs/cdk-ssm-documents.Output"
|
|
5471
|
+
},
|
|
5472
|
+
"kind": "array"
|
|
5473
|
+
}
|
|
5474
|
+
}
|
|
5475
|
+
}
|
|
5476
|
+
},
|
|
5477
|
+
{
|
|
5478
|
+
"docs": {
|
|
5479
|
+
"stability": "stable",
|
|
5480
|
+
"summary": "Lists the outputs defined by the user for this step."
|
|
5481
|
+
},
|
|
5482
|
+
"locationInModule": {
|
|
5483
|
+
"filename": "src/parent-steps/automation-step.ts",
|
|
5484
|
+
"line": 147
|
|
5485
|
+
},
|
|
5486
|
+
"name": "listUserOutputs",
|
|
5487
|
+
"returns": {
|
|
5488
|
+
"type": {
|
|
5489
|
+
"collection": {
|
|
5490
|
+
"elementtype": {
|
|
5491
|
+
"fqn": "@cdklabs/cdk-ssm-documents.Output"
|
|
5492
|
+
},
|
|
5493
|
+
"kind": "array"
|
|
5494
|
+
}
|
|
5495
|
+
}
|
|
5496
|
+
}
|
|
5497
|
+
},
|
|
5455
5498
|
{
|
|
5456
5499
|
"docs": {
|
|
5457
5500
|
"stability": "stable"
|
|
@@ -6122,14 +6165,14 @@
|
|
|
6122
6165
|
"docs": {
|
|
6123
6166
|
"returns": "Outputs as specified in params",
|
|
6124
6167
|
"stability": "stable",
|
|
6125
|
-
"summary": "Lists the outputs
|
|
6168
|
+
"summary": "Lists the outputs defined by the user for this step."
|
|
6126
6169
|
},
|
|
6127
6170
|
"locationInModule": {
|
|
6128
6171
|
"filename": "src/parent-steps/automation/aws-api-step.ts",
|
|
6129
6172
|
"line": 74
|
|
6130
6173
|
},
|
|
6131
|
-
"name": "
|
|
6132
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
6174
|
+
"name": "listUserOutputs",
|
|
6175
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
6133
6176
|
"returns": {
|
|
6134
6177
|
"type": {
|
|
6135
6178
|
"collection": {
|
|
@@ -11713,7 +11756,7 @@
|
|
|
11713
11756
|
"line": 40
|
|
11714
11757
|
},
|
|
11715
11758
|
"name": "listOutputs",
|
|
11716
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
11759
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
11717
11760
|
"returns": {
|
|
11718
11761
|
"type": {
|
|
11719
11762
|
"collection": {
|
|
@@ -12066,7 +12109,7 @@
|
|
|
12066
12109
|
"line": 91
|
|
12067
12110
|
},
|
|
12068
12111
|
"name": "listOutputs",
|
|
12069
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
12112
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
12070
12113
|
"returns": {
|
|
12071
12114
|
"type": {
|
|
12072
12115
|
"collection": {
|
|
@@ -14318,7 +14361,7 @@
|
|
|
14318
14361
|
"line": 76
|
|
14319
14362
|
},
|
|
14320
14363
|
"name": "listOutputs",
|
|
14321
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
14364
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
14322
14365
|
"returns": {
|
|
14323
14366
|
"type": {
|
|
14324
14367
|
"collection": {
|
|
@@ -14778,7 +14821,7 @@
|
|
|
14778
14821
|
"line": 64
|
|
14779
14822
|
},
|
|
14780
14823
|
"name": "listOutputs",
|
|
14781
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
14824
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
14782
14825
|
"returns": {
|
|
14783
14826
|
"type": {
|
|
14784
14827
|
"collection": {
|
|
@@ -15248,7 +15291,7 @@
|
|
|
15248
15291
|
"line": 194
|
|
15249
15292
|
},
|
|
15250
15293
|
"name": "listOutputs",
|
|
15251
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
15294
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
15252
15295
|
"returns": {
|
|
15253
15296
|
"type": {
|
|
15254
15297
|
"collection": {
|
|
@@ -15965,7 +16008,7 @@
|
|
|
15965
16008
|
"line": 77
|
|
15966
16009
|
},
|
|
15967
16010
|
"name": "listOutputs",
|
|
15968
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
16011
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
15969
16012
|
"returns": {
|
|
15970
16013
|
"type": {
|
|
15971
16014
|
"collection": {
|
|
@@ -16525,7 +16568,7 @@
|
|
|
16525
16568
|
"line": 33
|
|
16526
16569
|
},
|
|
16527
16570
|
"name": "listOutputs",
|
|
16528
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
16571
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
16529
16572
|
"returns": {
|
|
16530
16573
|
"type": {
|
|
16531
16574
|
"collection": {
|
|
@@ -16799,7 +16842,7 @@
|
|
|
16799
16842
|
"line": 50
|
|
16800
16843
|
},
|
|
16801
16844
|
"name": "listOutputs",
|
|
16802
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
16845
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
16803
16846
|
"returns": {
|
|
16804
16847
|
"type": {
|
|
16805
16848
|
"collection": {
|
|
@@ -18567,7 +18610,7 @@
|
|
|
18567
18610
|
"line": 112
|
|
18568
18611
|
},
|
|
18569
18612
|
"name": "listOutputs",
|
|
18570
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
18613
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
18571
18614
|
"returns": {
|
|
18572
18615
|
"type": {
|
|
18573
18616
|
"collection": {
|
|
@@ -19119,14 +19162,14 @@
|
|
|
19119
19162
|
{
|
|
19120
19163
|
"docs": {
|
|
19121
19164
|
"stability": "stable",
|
|
19122
|
-
"summary": "Lists the outputs
|
|
19165
|
+
"summary": "Lists the outputs defined by the user for this step."
|
|
19123
19166
|
},
|
|
19124
19167
|
"locationInModule": {
|
|
19125
19168
|
"filename": "src/parent-steps/automation/execute-script-step.ts",
|
|
19126
19169
|
"line": 255
|
|
19127
19170
|
},
|
|
19128
|
-
"name": "
|
|
19129
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
19171
|
+
"name": "listUserOutputs",
|
|
19172
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
19130
19173
|
"returns": {
|
|
19131
19174
|
"type": {
|
|
19132
19175
|
"collection": {
|
|
@@ -19542,7 +19585,7 @@
|
|
|
19542
19585
|
"line": 48
|
|
19543
19586
|
},
|
|
19544
19587
|
"name": "listOutputs",
|
|
19545
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
19588
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
19546
19589
|
"returns": {
|
|
19547
19590
|
"type": {
|
|
19548
19591
|
"collection": {
|
|
@@ -25575,7 +25618,7 @@
|
|
|
25575
25618
|
"line": 70
|
|
25576
25619
|
},
|
|
25577
25620
|
"name": "listOutputs",
|
|
25578
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
25621
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
25579
25622
|
"returns": {
|
|
25580
25623
|
"type": {
|
|
25581
25624
|
"collection": {
|
|
@@ -26162,7 +26205,7 @@
|
|
|
26162
26205
|
"line": 68
|
|
26163
26206
|
},
|
|
26164
26207
|
"name": "listOutputs",
|
|
26165
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
26208
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
26166
26209
|
"returns": {
|
|
26167
26210
|
"type": {
|
|
26168
26211
|
"collection": {
|
|
@@ -28448,7 +28491,7 @@
|
|
|
28448
28491
|
"line": 21
|
|
28449
28492
|
},
|
|
28450
28493
|
"name": "listOutputs",
|
|
28451
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
28494
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
28452
28495
|
"returns": {
|
|
28453
28496
|
"type": {
|
|
28454
28497
|
"collection": {
|
|
@@ -30292,7 +30335,7 @@
|
|
|
30292
30335
|
"line": 150
|
|
30293
30336
|
},
|
|
30294
30337
|
"name": "listOutputs",
|
|
30295
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
30338
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
30296
30339
|
"returns": {
|
|
30297
30340
|
"type": {
|
|
30298
30341
|
"collection": {
|
|
@@ -31670,7 +31713,7 @@
|
|
|
31670
31713
|
"line": 197
|
|
31671
31714
|
},
|
|
31672
31715
|
"name": "listOutputs",
|
|
31673
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
31716
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
31674
31717
|
"returns": {
|
|
31675
31718
|
"type": {
|
|
31676
31719
|
"collection": {
|
|
@@ -34625,7 +34668,7 @@
|
|
|
34625
34668
|
"line": 38
|
|
34626
34669
|
},
|
|
34627
34670
|
"name": "listOutputs",
|
|
34628
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
34671
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
34629
34672
|
"returns": {
|
|
34630
34673
|
"type": {
|
|
34631
34674
|
"collection": {
|
|
@@ -35278,7 +35321,7 @@
|
|
|
35278
35321
|
},
|
|
35279
35322
|
"locationInModule": {
|
|
35280
35323
|
"filename": "src/document/ssm-document.ts",
|
|
35281
|
-
"line":
|
|
35324
|
+
"line": 98
|
|
35282
35325
|
},
|
|
35283
35326
|
"parameters": [
|
|
35284
35327
|
{
|
|
@@ -35304,7 +35347,7 @@
|
|
|
35304
35347
|
"kind": "class",
|
|
35305
35348
|
"locationInModule": {
|
|
35306
35349
|
"filename": "src/document/ssm-document.ts",
|
|
35307
|
-
"line":
|
|
35350
|
+
"line": 87
|
|
35308
35351
|
},
|
|
35309
35352
|
"methods": [
|
|
35310
35353
|
{
|
|
@@ -35315,7 +35358,7 @@
|
|
|
35315
35358
|
},
|
|
35316
35359
|
"locationInModule": {
|
|
35317
35360
|
"filename": "src/document/ssm-document.ts",
|
|
35318
|
-
"line":
|
|
35361
|
+
"line": 147
|
|
35319
35362
|
},
|
|
35320
35363
|
"name": "buildSsmDocument",
|
|
35321
35364
|
"protected": true,
|
|
@@ -35337,7 +35380,7 @@
|
|
|
35337
35380
|
},
|
|
35338
35381
|
"locationInModule": {
|
|
35339
35382
|
"filename": "src/document/ssm-document.ts",
|
|
35340
|
-
"line":
|
|
35383
|
+
"line": 142
|
|
35341
35384
|
},
|
|
35342
35385
|
"name": "documentType",
|
|
35343
35386
|
"returns": {
|
|
@@ -35354,7 +35397,7 @@
|
|
|
35354
35397
|
},
|
|
35355
35398
|
"locationInModule": {
|
|
35356
35399
|
"filename": "src/document/ssm-document.ts",
|
|
35357
|
-
"line":
|
|
35400
|
+
"line": 134
|
|
35358
35401
|
},
|
|
35359
35402
|
"name": "formatInputs",
|
|
35360
35403
|
"protected": true,
|
|
@@ -35378,7 +35421,7 @@
|
|
|
35378
35421
|
},
|
|
35379
35422
|
"locationInModule": {
|
|
35380
35423
|
"filename": "src/document/ssm-document.ts",
|
|
35381
|
-
"line":
|
|
35424
|
+
"line": 158
|
|
35382
35425
|
},
|
|
35383
35426
|
"name": "print",
|
|
35384
35427
|
"returns": {
|
|
@@ -35397,7 +35440,7 @@
|
|
|
35397
35440
|
"immutable": true,
|
|
35398
35441
|
"locationInModule": {
|
|
35399
35442
|
"filename": "src/document/ssm-document.ts",
|
|
35400
|
-
"line":
|
|
35443
|
+
"line": 96
|
|
35401
35444
|
},
|
|
35402
35445
|
"name": "cfnDocument",
|
|
35403
35446
|
"type": {
|
|
@@ -35411,7 +35454,7 @@
|
|
|
35411
35454
|
"immutable": true,
|
|
35412
35455
|
"locationInModule": {
|
|
35413
35456
|
"filename": "src/document/ssm-document.ts",
|
|
35414
|
-
"line":
|
|
35457
|
+
"line": 90
|
|
35415
35458
|
},
|
|
35416
35459
|
"name": "description",
|
|
35417
35460
|
"type": {
|
|
@@ -35425,7 +35468,7 @@
|
|
|
35425
35468
|
"immutable": true,
|
|
35426
35469
|
"locationInModule": {
|
|
35427
35470
|
"filename": "src/document/ssm-document.ts",
|
|
35428
|
-
"line":
|
|
35471
|
+
"line": 94
|
|
35429
35472
|
},
|
|
35430
35473
|
"name": "docInputs",
|
|
35431
35474
|
"type": {
|
|
@@ -35444,7 +35487,7 @@
|
|
|
35444
35487
|
"immutable": true,
|
|
35445
35488
|
"locationInModule": {
|
|
35446
35489
|
"filename": "src/document/ssm-document.ts",
|
|
35447
|
-
"line":
|
|
35490
|
+
"line": 93
|
|
35448
35491
|
},
|
|
35449
35492
|
"name": "docOutputs",
|
|
35450
35493
|
"type": {
|
|
@@ -35463,7 +35506,7 @@
|
|
|
35463
35506
|
"immutable": true,
|
|
35464
35507
|
"locationInModule": {
|
|
35465
35508
|
"filename": "src/document/ssm-document.ts",
|
|
35466
|
-
"line":
|
|
35509
|
+
"line": 89
|
|
35467
35510
|
},
|
|
35468
35511
|
"name": "documentName",
|
|
35469
35512
|
"type": {
|
|
@@ -35477,7 +35520,7 @@
|
|
|
35477
35520
|
"immutable": true,
|
|
35478
35521
|
"locationInModule": {
|
|
35479
35522
|
"filename": "src/document/ssm-document.ts",
|
|
35480
|
-
"line":
|
|
35523
|
+
"line": 95
|
|
35481
35524
|
},
|
|
35482
35525
|
"name": "props",
|
|
35483
35526
|
"type": {
|
|
@@ -35491,7 +35534,7 @@
|
|
|
35491
35534
|
"immutable": true,
|
|
35492
35535
|
"locationInModule": {
|
|
35493
35536
|
"filename": "src/document/ssm-document.ts",
|
|
35494
|
-
"line":
|
|
35537
|
+
"line": 92
|
|
35495
35538
|
},
|
|
35496
35539
|
"name": "assumeRole",
|
|
35497
35540
|
"optional": true,
|
|
@@ -35506,7 +35549,7 @@
|
|
|
35506
35549
|
"immutable": true,
|
|
35507
35550
|
"locationInModule": {
|
|
35508
35551
|
"filename": "src/document/ssm-document.ts",
|
|
35509
|
-
"line":
|
|
35552
|
+
"line": 91
|
|
35510
35553
|
},
|
|
35511
35554
|
"name": "header",
|
|
35512
35555
|
"optional": true,
|
|
@@ -35793,6 +35836,27 @@
|
|
|
35793
35836
|
"primitive": "string"
|
|
35794
35837
|
}
|
|
35795
35838
|
},
|
|
35839
|
+
{
|
|
35840
|
+
"abstract": true,
|
|
35841
|
+
"docs": {
|
|
35842
|
+
"custom": {
|
|
35843
|
+
"link": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-updatemethod"
|
|
35844
|
+
},
|
|
35845
|
+
"remarks": "`Replace` is the default method. If you specify `NewVersion` for the `UpdateMethod` parameter, and the `Name` of the document does not match an existing resource, a new document is created. When you specify `NewVersion` , the default version of the document is changed to the newly created version.",
|
|
35846
|
+
"stability": "stable",
|
|
35847
|
+
"summary": "If the document resource you specify in your template already exists, this parameter determines whether a new version of the existing document is created, or the existing document is replaced."
|
|
35848
|
+
},
|
|
35849
|
+
"immutable": true,
|
|
35850
|
+
"locationInModule": {
|
|
35851
|
+
"filename": "src/document/ssm-document.ts",
|
|
35852
|
+
"line": 77
|
|
35853
|
+
},
|
|
35854
|
+
"name": "updateMethod",
|
|
35855
|
+
"optional": true,
|
|
35856
|
+
"type": {
|
|
35857
|
+
"primitive": "string"
|
|
35858
|
+
}
|
|
35859
|
+
},
|
|
35796
35860
|
{
|
|
35797
35861
|
"abstract": true,
|
|
35798
35862
|
"docs": {
|
|
@@ -35806,7 +35870,7 @@
|
|
|
35806
35870
|
"immutable": true,
|
|
35807
35871
|
"locationInModule": {
|
|
35808
35872
|
"filename": "src/document/ssm-document.ts",
|
|
35809
|
-
"line":
|
|
35873
|
+
"line": 84
|
|
35810
35874
|
},
|
|
35811
35875
|
"name": "versionName",
|
|
35812
35876
|
"optional": true,
|
|
@@ -38973,6 +39037,6 @@
|
|
|
38973
39037
|
"symbolId": "src/interface/webhook:WebhookImpl"
|
|
38974
39038
|
}
|
|
38975
39039
|
},
|
|
38976
|
-
"version": "0.0.
|
|
38977
|
-
"fingerprint": "
|
|
39040
|
+
"version": "0.0.31",
|
|
39041
|
+
"fingerprint": "UQhGxxIplcFjilCulRaBbfecabFTuPUX+mARR9Fddpo="
|
|
38978
39042
|
}
|