aws-sdk 2.1622.0 → 2.1624.0
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/README.md +1 -1
- package/apis/application-autoscaling-2016-02-06.min.json +3 -0
- package/apis/bedrock-agent-2023-06-05.min.json +115 -90
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +168 -43
- package/apis/codebuild-2016-10-06.min.json +36 -36
- package/apis/controltower-2018-05-10.min.json +97 -4
- package/apis/controltower-2018-05-10.paginators.json +6 -0
- package/apis/elasticloadbalancingv2-2015-12-01.min.json +3 -0
- package/apis/lakeformation-2017-03-31.min.json +43 -25
- package/apis/osis-2022-01-01.min.json +70 -26
- package/apis/rds-2014-10-31.min.json +21 -9
- package/apis/transfer-2018-11-05.min.json +19 -8
- package/clients/bedrockagent.d.ts +38 -2
- package/clients/bedrockagentruntime.d.ts +173 -0
- package/clients/codebuild.d.ts +11 -10
- package/clients/controltower.d.ts +158 -22
- package/clients/elbv2.d.ts +6 -6
- package/clients/lakeformation.d.ts +17 -0
- package/clients/osis.d.ts +80 -5
- package/clients/rds.d.ts +54 -6
- package/clients/secretsmanager.d.ts +3 -3
- package/clients/transfer.d.ts +5 -5
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +66 -48
- package/dist/aws-sdk.min.js +64 -64
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -5,6 +5,9 @@
|
|
5
5
|
"endpointPrefix": "controltower",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "rest-json",
|
8
|
+
"protocols": [
|
9
|
+
"rest-json"
|
10
|
+
],
|
8
11
|
"serviceFullName": "AWS Control Tower",
|
9
12
|
"serviceId": "ControlTower",
|
10
13
|
"signatureVersion": "v4",
|
@@ -278,15 +281,19 @@
|
|
278
281
|
"controlOperation": {
|
279
282
|
"type": "structure",
|
280
283
|
"members": {
|
284
|
+
"controlIdentifier": {},
|
285
|
+
"enabledControlIdentifier": {},
|
281
286
|
"endTime": {
|
282
287
|
"shape": "S16"
|
283
288
|
},
|
289
|
+
"operationIdentifier": {},
|
284
290
|
"operationType": {},
|
285
291
|
"startTime": {
|
286
292
|
"shape": "S16"
|
287
293
|
},
|
288
294
|
"status": {},
|
289
|
-
"statusMessage": {}
|
295
|
+
"statusMessage": {},
|
296
|
+
"targetIdentifier": {}
|
290
297
|
}
|
291
298
|
}
|
292
299
|
}
|
@@ -529,6 +536,75 @@
|
|
529
536
|
}
|
530
537
|
}
|
531
538
|
},
|
539
|
+
"ListControlOperations": {
|
540
|
+
"http": {
|
541
|
+
"requestUri": "/list-control-operations",
|
542
|
+
"responseCode": 200
|
543
|
+
},
|
544
|
+
"input": {
|
545
|
+
"type": "structure",
|
546
|
+
"members": {
|
547
|
+
"filter": {
|
548
|
+
"type": "structure",
|
549
|
+
"members": {
|
550
|
+
"controlIdentifiers": {
|
551
|
+
"shape": "S28"
|
552
|
+
},
|
553
|
+
"controlOperationTypes": {
|
554
|
+
"type": "list",
|
555
|
+
"member": {}
|
556
|
+
},
|
557
|
+
"enabledControlIdentifiers": {
|
558
|
+
"type": "list",
|
559
|
+
"member": {}
|
560
|
+
},
|
561
|
+
"statuses": {
|
562
|
+
"type": "list",
|
563
|
+
"member": {}
|
564
|
+
},
|
565
|
+
"targetIdentifiers": {
|
566
|
+
"type": "list",
|
567
|
+
"member": {}
|
568
|
+
}
|
569
|
+
}
|
570
|
+
},
|
571
|
+
"maxResults": {
|
572
|
+
"type": "integer"
|
573
|
+
},
|
574
|
+
"nextToken": {}
|
575
|
+
}
|
576
|
+
},
|
577
|
+
"output": {
|
578
|
+
"type": "structure",
|
579
|
+
"required": [
|
580
|
+
"controlOperations"
|
581
|
+
],
|
582
|
+
"members": {
|
583
|
+
"controlOperations": {
|
584
|
+
"type": "list",
|
585
|
+
"member": {
|
586
|
+
"type": "structure",
|
587
|
+
"members": {
|
588
|
+
"controlIdentifier": {},
|
589
|
+
"enabledControlIdentifier": {},
|
590
|
+
"endTime": {
|
591
|
+
"shape": "S16"
|
592
|
+
},
|
593
|
+
"operationIdentifier": {},
|
594
|
+
"operationType": {},
|
595
|
+
"startTime": {
|
596
|
+
"shape": "S16"
|
597
|
+
},
|
598
|
+
"status": {},
|
599
|
+
"statusMessage": {},
|
600
|
+
"targetIdentifier": {}
|
601
|
+
}
|
602
|
+
}
|
603
|
+
},
|
604
|
+
"nextToken": {}
|
605
|
+
}
|
606
|
+
}
|
607
|
+
},
|
532
608
|
"ListEnabledBaselines": {
|
533
609
|
"http": {
|
534
610
|
"requestUri": "/list-enabled-baselines",
|
@@ -594,10 +670,23 @@
|
|
594
670
|
},
|
595
671
|
"input": {
|
596
672
|
"type": "structure",
|
597
|
-
"required": [
|
598
|
-
"targetIdentifier"
|
599
|
-
],
|
600
673
|
"members": {
|
674
|
+
"filter": {
|
675
|
+
"type": "structure",
|
676
|
+
"members": {
|
677
|
+
"controlIdentifiers": {
|
678
|
+
"shape": "S28"
|
679
|
+
},
|
680
|
+
"driftStatuses": {
|
681
|
+
"type": "list",
|
682
|
+
"member": {}
|
683
|
+
},
|
684
|
+
"statuses": {
|
685
|
+
"type": "list",
|
686
|
+
"member": {}
|
687
|
+
}
|
688
|
+
}
|
689
|
+
},
|
601
690
|
"maxResults": {
|
602
691
|
"type": "integer"
|
603
692
|
},
|
@@ -960,6 +1049,10 @@
|
|
960
1049
|
"members": {
|
961
1050
|
"driftStatus": {}
|
962
1051
|
}
|
1052
|
+
},
|
1053
|
+
"S28": {
|
1054
|
+
"type": "list",
|
1055
|
+
"member": {}
|
963
1056
|
}
|
964
1057
|
}
|
965
1058
|
}
|
@@ -6,6 +6,12 @@
|
|
6
6
|
"limit_key": "maxResults",
|
7
7
|
"result_key": "baselines"
|
8
8
|
},
|
9
|
+
"ListControlOperations": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"output_token": "nextToken",
|
12
|
+
"limit_key": "maxResults",
|
13
|
+
"result_key": "controlOperations"
|
14
|
+
},
|
9
15
|
"ListEnabledBaselines": {
|
10
16
|
"input_token": "nextToken",
|
11
17
|
"output_token": "nextToken",
|
@@ -4,6 +4,9 @@
|
|
4
4
|
"apiVersion": "2015-12-01",
|
5
5
|
"endpointPrefix": "elasticloadbalancing",
|
6
6
|
"protocol": "query",
|
7
|
+
"protocols": [
|
8
|
+
"query"
|
9
|
+
],
|
7
10
|
"serviceAbbreviation": "Elastic Load Balancing v2",
|
8
11
|
"serviceFullName": "Elastic Load Balancing",
|
9
12
|
"serviceId": "Elastic Load Balancing v2",
|
@@ -5,6 +5,9 @@
|
|
5
5
|
"endpointPrefix": "lakeformation",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "rest-json",
|
8
|
+
"protocols": [
|
9
|
+
"rest-json"
|
10
|
+
],
|
8
11
|
"serviceFullName": "AWS Lake Formation",
|
9
12
|
"serviceId": "LakeFormation",
|
10
13
|
"signatureVersion": "v4",
|
@@ -496,6 +499,21 @@
|
|
496
499
|
}
|
497
500
|
}
|
498
501
|
},
|
502
|
+
"GetDataLakePrincipal": {
|
503
|
+
"http": {
|
504
|
+
"requestUri": "/GetDataLakePrincipal"
|
505
|
+
},
|
506
|
+
"input": {
|
507
|
+
"type": "structure",
|
508
|
+
"members": {}
|
509
|
+
},
|
510
|
+
"output": {
|
511
|
+
"type": "structure",
|
512
|
+
"members": {
|
513
|
+
"Identity": {}
|
514
|
+
}
|
515
|
+
}
|
516
|
+
},
|
499
517
|
"GetDataLakeSettings": {
|
500
518
|
"http": {
|
501
519
|
"requestUri": "/GetDataLakeSettings"
|
@@ -510,7 +528,7 @@
|
|
510
528
|
"type": "structure",
|
511
529
|
"members": {
|
512
530
|
"DataLakeSettings": {
|
513
|
-
"shape": "
|
531
|
+
"shape": "S38"
|
514
532
|
}
|
515
533
|
}
|
516
534
|
}
|
@@ -537,7 +555,7 @@
|
|
537
555
|
"type": "structure",
|
538
556
|
"members": {
|
539
557
|
"Permissions": {
|
540
|
-
"shape": "
|
558
|
+
"shape": "S3k"
|
541
559
|
},
|
542
560
|
"NextToken": {}
|
543
561
|
}
|
@@ -683,7 +701,7 @@
|
|
683
701
|
"shape": "Sn"
|
684
702
|
},
|
685
703
|
"LFTagsOnColumns": {
|
686
|
-
"shape": "
|
704
|
+
"shape": "S47"
|
687
705
|
}
|
688
706
|
}
|
689
707
|
}
|
@@ -722,7 +740,7 @@
|
|
722
740
|
"type": "structure",
|
723
741
|
"members": {
|
724
742
|
"PartitionValues": {
|
725
|
-
"shape": "
|
743
|
+
"shape": "S4e"
|
726
744
|
},
|
727
745
|
"Objects": {
|
728
746
|
"type": "list",
|
@@ -775,10 +793,10 @@
|
|
775
793
|
"type": "integer"
|
776
794
|
},
|
777
795
|
"AuditContext": {
|
778
|
-
"shape": "
|
796
|
+
"shape": "S4n"
|
779
797
|
},
|
780
798
|
"SupportedPermissionTypes": {
|
781
|
-
"shape": "
|
799
|
+
"shape": "S4p"
|
782
800
|
}
|
783
801
|
}
|
784
802
|
},
|
@@ -812,10 +830,10 @@
|
|
812
830
|
"type": "integer"
|
813
831
|
},
|
814
832
|
"AuditContext": {
|
815
|
-
"shape": "
|
833
|
+
"shape": "S4n"
|
816
834
|
},
|
817
835
|
"SupportedPermissionTypes": {
|
818
|
-
"shape": "
|
836
|
+
"shape": "S4p"
|
819
837
|
},
|
820
838
|
"S3Path": {},
|
821
839
|
"QuerySessionContext": {
|
@@ -1098,7 +1116,7 @@
|
|
1098
1116
|
"type": "structure",
|
1099
1117
|
"members": {
|
1100
1118
|
"PrincipalResourcePermissions": {
|
1101
|
-
"shape": "
|
1119
|
+
"shape": "S3k"
|
1102
1120
|
},
|
1103
1121
|
"NextToken": {}
|
1104
1122
|
}
|
@@ -1175,7 +1193,7 @@
|
|
1175
1193
|
"members": {
|
1176
1194
|
"StorageOptimizerType": {},
|
1177
1195
|
"Config": {
|
1178
|
-
"shape": "
|
1196
|
+
"shape": "S6b"
|
1179
1197
|
},
|
1180
1198
|
"ErrorMessage": {},
|
1181
1199
|
"Warnings": {},
|
@@ -1227,7 +1245,7 @@
|
|
1227
1245
|
"members": {
|
1228
1246
|
"CatalogId": {},
|
1229
1247
|
"DataLakeSettings": {
|
1230
|
-
"shape": "
|
1248
|
+
"shape": "S38"
|
1231
1249
|
}
|
1232
1250
|
}
|
1233
1251
|
},
|
@@ -1405,7 +1423,7 @@
|
|
1405
1423
|
"shape": "Sn"
|
1406
1424
|
},
|
1407
1425
|
"LFTagsOnColumns": {
|
1408
|
-
"shape": "
|
1426
|
+
"shape": "S47"
|
1409
1427
|
}
|
1410
1428
|
}
|
1411
1429
|
}
|
@@ -1608,7 +1626,7 @@
|
|
1608
1626
|
"type": "long"
|
1609
1627
|
},
|
1610
1628
|
"PartitionValues": {
|
1611
|
-
"shape": "
|
1629
|
+
"shape": "S4e"
|
1612
1630
|
}
|
1613
1631
|
}
|
1614
1632
|
},
|
@@ -1621,7 +1639,7 @@
|
|
1621
1639
|
"Uri": {},
|
1622
1640
|
"ETag": {},
|
1623
1641
|
"PartitionValues": {
|
1624
|
-
"shape": "
|
1642
|
+
"shape": "S4e"
|
1625
1643
|
}
|
1626
1644
|
}
|
1627
1645
|
}
|
@@ -1654,7 +1672,7 @@
|
|
1654
1672
|
"type": "map",
|
1655
1673
|
"key": {},
|
1656
1674
|
"value": {
|
1657
|
-
"shape": "
|
1675
|
+
"shape": "S6b"
|
1658
1676
|
}
|
1659
1677
|
}
|
1660
1678
|
}
|
@@ -1978,7 +1996,7 @@
|
|
1978
1996
|
}
|
1979
1997
|
}
|
1980
1998
|
},
|
1981
|
-
"
|
1999
|
+
"S38": {
|
1982
2000
|
"type": "structure",
|
1983
2001
|
"members": {
|
1984
2002
|
"DataLakeAdmins": {
|
@@ -1988,10 +2006,10 @@
|
|
1988
2006
|
"shape": "S22"
|
1989
2007
|
},
|
1990
2008
|
"CreateDatabaseDefaultPermissions": {
|
1991
|
-
"shape": "
|
2009
|
+
"shape": "S39"
|
1992
2010
|
},
|
1993
2011
|
"CreateTableDefaultPermissions": {
|
1994
|
-
"shape": "
|
2012
|
+
"shape": "S39"
|
1995
2013
|
},
|
1996
2014
|
"Parameters": {
|
1997
2015
|
"type": "map",
|
@@ -2017,7 +2035,7 @@
|
|
2017
2035
|
}
|
2018
2036
|
}
|
2019
2037
|
},
|
2020
|
-
"
|
2038
|
+
"S39": {
|
2021
2039
|
"type": "list",
|
2022
2040
|
"member": {
|
2023
2041
|
"type": "structure",
|
@@ -2031,7 +2049,7 @@
|
|
2031
2049
|
}
|
2032
2050
|
}
|
2033
2051
|
},
|
2034
|
-
"
|
2052
|
+
"S3k": {
|
2035
2053
|
"type": "list",
|
2036
2054
|
"member": {
|
2037
2055
|
"type": "structure",
|
@@ -2064,7 +2082,7 @@
|
|
2064
2082
|
}
|
2065
2083
|
}
|
2066
2084
|
},
|
2067
|
-
"
|
2085
|
+
"S47": {
|
2068
2086
|
"type": "list",
|
2069
2087
|
"member": {
|
2070
2088
|
"type": "structure",
|
@@ -2076,21 +2094,21 @@
|
|
2076
2094
|
}
|
2077
2095
|
}
|
2078
2096
|
},
|
2079
|
-
"
|
2097
|
+
"S4e": {
|
2080
2098
|
"type": "list",
|
2081
2099
|
"member": {}
|
2082
2100
|
},
|
2083
|
-
"
|
2101
|
+
"S4n": {
|
2084
2102
|
"type": "structure",
|
2085
2103
|
"members": {
|
2086
2104
|
"AdditionalAuditContext": {}
|
2087
2105
|
}
|
2088
2106
|
},
|
2089
|
-
"
|
2107
|
+
"S4p": {
|
2090
2108
|
"type": "list",
|
2091
2109
|
"member": {}
|
2092
2110
|
},
|
2093
|
-
"
|
2111
|
+
"S6b": {
|
2094
2112
|
"type": "map",
|
2095
2113
|
"key": {},
|
2096
2114
|
"value": {}
|
@@ -4,6 +4,9 @@
|
|
4
4
|
"apiVersion": "2022-01-01",
|
5
5
|
"endpointPrefix": "osis",
|
6
6
|
"protocol": "rest-json",
|
7
|
+
"protocols": [
|
8
|
+
"rest-json"
|
9
|
+
],
|
7
10
|
"serviceFullName": "Amazon OpenSearch Ingestion",
|
8
11
|
"serviceId": "OSIS",
|
9
12
|
"signatureVersion": "v4",
|
@@ -38,13 +41,13 @@
|
|
38
41
|
"shape": "S9"
|
39
42
|
},
|
40
43
|
"BufferOptions": {
|
41
|
-
"shape": "
|
44
|
+
"shape": "Sg"
|
42
45
|
},
|
43
46
|
"EncryptionAtRestOptions": {
|
44
|
-
"shape": "
|
47
|
+
"shape": "Sh"
|
45
48
|
},
|
46
49
|
"Tags": {
|
47
|
-
"shape": "
|
50
|
+
"shape": "Sj"
|
48
51
|
}
|
49
52
|
}
|
50
53
|
},
|
@@ -52,7 +55,7 @@
|
|
52
55
|
"type": "structure",
|
53
56
|
"members": {
|
54
57
|
"Pipeline": {
|
55
|
-
"shape": "
|
58
|
+
"shape": "So"
|
56
59
|
}
|
57
60
|
}
|
58
61
|
}
|
@@ -100,7 +103,7 @@
|
|
100
103
|
"type": "structure",
|
101
104
|
"members": {
|
102
105
|
"Pipeline": {
|
103
|
-
"shape": "
|
106
|
+
"shape": "So"
|
104
107
|
}
|
105
108
|
}
|
106
109
|
}
|
@@ -119,6 +122,10 @@
|
|
119
122
|
"BlueprintName": {
|
120
123
|
"location": "uri",
|
121
124
|
"locationName": "BlueprintName"
|
125
|
+
},
|
126
|
+
"Format": {
|
127
|
+
"location": "querystring",
|
128
|
+
"locationName": "format"
|
122
129
|
}
|
123
130
|
}
|
124
131
|
},
|
@@ -129,9 +136,14 @@
|
|
129
136
|
"type": "structure",
|
130
137
|
"members": {
|
131
138
|
"BlueprintName": {},
|
132
|
-
"PipelineConfigurationBody": {}
|
139
|
+
"PipelineConfigurationBody": {},
|
140
|
+
"DisplayName": {},
|
141
|
+
"DisplayDescription": {},
|
142
|
+
"Service": {},
|
143
|
+
"UseCase": {}
|
133
144
|
}
|
134
|
-
}
|
145
|
+
},
|
146
|
+
"Format": {}
|
135
147
|
}
|
136
148
|
}
|
137
149
|
},
|
@@ -203,7 +215,11 @@
|
|
203
215
|
"member": {
|
204
216
|
"type": "structure",
|
205
217
|
"members": {
|
206
|
-
"BlueprintName": {}
|
218
|
+
"BlueprintName": {},
|
219
|
+
"DisplayName": {},
|
220
|
+
"DisplayDescription": {},
|
221
|
+
"Service": {},
|
222
|
+
"UseCase": {}
|
207
223
|
}
|
208
224
|
}
|
209
225
|
}
|
@@ -240,7 +256,7 @@
|
|
240
256
|
"members": {
|
241
257
|
"Status": {},
|
242
258
|
"StatusReason": {
|
243
|
-
"shape": "
|
259
|
+
"shape": "Ss"
|
244
260
|
},
|
245
261
|
"PipelineName": {},
|
246
262
|
"PipelineArn": {},
|
@@ -256,8 +272,11 @@
|
|
256
272
|
"LastUpdatedAt": {
|
257
273
|
"type": "timestamp"
|
258
274
|
},
|
275
|
+
"Destinations": {
|
276
|
+
"shape": "S10"
|
277
|
+
},
|
259
278
|
"Tags": {
|
260
|
-
"shape": "
|
279
|
+
"shape": "Sj"
|
261
280
|
}
|
262
281
|
}
|
263
282
|
}
|
@@ -286,7 +305,7 @@
|
|
286
305
|
"type": "structure",
|
287
306
|
"members": {
|
288
307
|
"Tags": {
|
289
|
-
"shape": "
|
308
|
+
"shape": "Sj"
|
290
309
|
}
|
291
310
|
}
|
292
311
|
}
|
@@ -312,7 +331,7 @@
|
|
312
331
|
"type": "structure",
|
313
332
|
"members": {
|
314
333
|
"Pipeline": {
|
315
|
-
"shape": "
|
334
|
+
"shape": "So"
|
316
335
|
}
|
317
336
|
}
|
318
337
|
}
|
@@ -338,7 +357,7 @@
|
|
338
357
|
"type": "structure",
|
339
358
|
"members": {
|
340
359
|
"Pipeline": {
|
341
|
-
"shape": "
|
360
|
+
"shape": "So"
|
342
361
|
}
|
343
362
|
}
|
344
363
|
}
|
@@ -359,7 +378,7 @@
|
|
359
378
|
"locationName": "arn"
|
360
379
|
},
|
361
380
|
"Tags": {
|
362
|
-
"shape": "
|
381
|
+
"shape": "Sj"
|
363
382
|
}
|
364
383
|
}
|
365
384
|
},
|
@@ -420,10 +439,10 @@
|
|
420
439
|
"shape": "S5"
|
421
440
|
},
|
422
441
|
"BufferOptions": {
|
423
|
-
"shape": "
|
442
|
+
"shape": "Sg"
|
424
443
|
},
|
425
444
|
"EncryptionAtRestOptions": {
|
426
|
-
"shape": "
|
445
|
+
"shape": "Sh"
|
427
446
|
}
|
428
447
|
}
|
429
448
|
},
|
@@ -431,7 +450,7 @@
|
|
431
450
|
"type": "structure",
|
432
451
|
"members": {
|
433
452
|
"Pipeline": {
|
434
|
-
"shape": "
|
453
|
+
"shape": "So"
|
435
454
|
}
|
436
455
|
}
|
437
456
|
}
|
@@ -499,10 +518,22 @@
|
|
499
518
|
"SecurityGroupIds": {
|
500
519
|
"type": "list",
|
501
520
|
"member": {}
|
521
|
+
},
|
522
|
+
"VpcAttachmentOptions": {
|
523
|
+
"type": "structure",
|
524
|
+
"required": [
|
525
|
+
"AttachToVpc"
|
526
|
+
],
|
527
|
+
"members": {
|
528
|
+
"AttachToVpc": {
|
529
|
+
"type": "boolean"
|
530
|
+
},
|
531
|
+
"CidrBlock": {}
|
532
|
+
}
|
502
533
|
}
|
503
534
|
}
|
504
535
|
},
|
505
|
-
"
|
536
|
+
"Sg": {
|
506
537
|
"type": "structure",
|
507
538
|
"required": [
|
508
539
|
"PersistentBufferEnabled"
|
@@ -513,7 +544,7 @@
|
|
513
544
|
}
|
514
545
|
}
|
515
546
|
},
|
516
|
-
"
|
547
|
+
"Sh": {
|
517
548
|
"type": "structure",
|
518
549
|
"required": [
|
519
550
|
"KmsKeyArn"
|
@@ -522,7 +553,7 @@
|
|
522
553
|
"KmsKeyArn": {}
|
523
554
|
}
|
524
555
|
},
|
525
|
-
"
|
556
|
+
"Sj": {
|
526
557
|
"type": "list",
|
527
558
|
"member": {
|
528
559
|
"type": "structure",
|
@@ -536,7 +567,7 @@
|
|
536
567
|
}
|
537
568
|
}
|
538
569
|
},
|
539
|
-
"
|
570
|
+
"So": {
|
540
571
|
"type": "structure",
|
541
572
|
"members": {
|
542
573
|
"PipelineName": {},
|
@@ -549,7 +580,7 @@
|
|
549
580
|
},
|
550
581
|
"Status": {},
|
551
582
|
"StatusReason": {
|
552
|
-
"shape": "
|
583
|
+
"shape": "Ss"
|
553
584
|
},
|
554
585
|
"PipelineConfigurationBody": {},
|
555
586
|
"CreatedAt": {
|
@@ -579,10 +610,10 @@
|
|
579
610
|
}
|
580
611
|
},
|
581
612
|
"BufferOptions": {
|
582
|
-
"shape": "
|
613
|
+
"shape": "Sg"
|
583
614
|
},
|
584
615
|
"EncryptionAtRestOptions": {
|
585
|
-
"shape": "
|
616
|
+
"shape": "Sh"
|
586
617
|
},
|
587
618
|
"ServiceVpcEndpoints": {
|
588
619
|
"type": "list",
|
@@ -594,16 +625,29 @@
|
|
594
625
|
}
|
595
626
|
}
|
596
627
|
},
|
628
|
+
"Destinations": {
|
629
|
+
"shape": "S10"
|
630
|
+
},
|
597
631
|
"Tags": {
|
598
|
-
"shape": "
|
632
|
+
"shape": "Sj"
|
599
633
|
}
|
600
634
|
}
|
601
635
|
},
|
602
|
-
"
|
636
|
+
"Ss": {
|
603
637
|
"type": "structure",
|
604
638
|
"members": {
|
605
639
|
"Description": {}
|
606
640
|
}
|
641
|
+
},
|
642
|
+
"S10": {
|
643
|
+
"type": "list",
|
644
|
+
"member": {
|
645
|
+
"type": "structure",
|
646
|
+
"members": {
|
647
|
+
"ServiceName": {},
|
648
|
+
"Endpoint": {}
|
649
|
+
}
|
650
|
+
}
|
607
651
|
}
|
608
652
|
}
|
609
653
|
}
|