@aws-sdk/client-glue 3.1103.0 → 3.1104.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 +14 -0
- package/dist-cjs/index.js +72 -1
- package/dist-es/Glue.js +4 -0
- package/dist-es/commands/GetDataCatalogExportConfigurationCommand.js +4 -0
- package/dist-es/commands/PutDataCatalogExportConfigurationCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +11 -0
- package/dist-es/schemas/schemas_0.js +41 -0
- package/dist-types/Glue.d.ts +15 -0
- package/dist-types/GlueClient.d.ts +4 -2
- package/dist-types/commands/GetDataCatalogExportConfigurationCommand.d.ts +89 -0
- package/dist-types/commands/PutDataCatalogExportConfigurationCommand.d.ts +95 -0
- package/dist-types/commands/RunStatementCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +27 -0
- package/dist-types/models/models_2.d.ts +92 -130
- package/dist-types/models/models_3.d.ts +131 -2
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/Glue.d.ts +35 -0
- package/dist-types/ts3.4/GlueClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetDataCatalogExportConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/PutDataCatalogExportConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/RunStatementCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +13 -0
- package/dist-types/ts3.4/models/models_2.d.ts +24 -57
- package/dist-types/ts3.4/models/models_3.d.ts +57 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1071,6 +1071,13 @@ GetDataCatalogEncryptionSettings
|
|
|
1071
1071
|
</details>
|
|
1072
1072
|
<details>
|
|
1073
1073
|
<summary>
|
|
1074
|
+
GetDataCatalogExportConfiguration
|
|
1075
|
+
</summary>
|
|
1076
|
+
|
|
1077
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetDataCatalogExportConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetDataCatalogExportConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetDataCatalogExportConfigurationCommandOutput/)
|
|
1078
|
+
</details>
|
|
1079
|
+
<details>
|
|
1080
|
+
<summary>
|
|
1074
1081
|
GetDataflowGraph
|
|
1075
1082
|
</summary>
|
|
1076
1083
|
|
|
@@ -1764,6 +1771,13 @@ PutDataCatalogEncryptionSettings
|
|
|
1764
1771
|
</details>
|
|
1765
1772
|
<details>
|
|
1766
1773
|
<summary>
|
|
1774
|
+
PutDataCatalogExportConfiguration
|
|
1775
|
+
</summary>
|
|
1776
|
+
|
|
1777
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/PutDataCatalogExportConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/PutDataCatalogExportConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/PutDataCatalogExportConfigurationCommandOutput/)
|
|
1778
|
+
</details>
|
|
1779
|
+
<details>
|
|
1780
|
+
<summary>
|
|
1767
1781
|
PutDataQualityProfileAnnotation
|
|
1768
1782
|
</summary>
|
|
1769
1783
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1103.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -1665,6 +1665,7 @@ const _EDQ = "EvaluateDataQuality";
|
|
|
1665
1665
|
const _EDQMF = "EvaluateDataQualityMultiFrame";
|
|
1666
1666
|
const _EDr = "ErrorDetails";
|
|
1667
1667
|
const _EDv = "EvaluatedDistributions";
|
|
1668
|
+
const _EEC = "ExportEncryptionConfiguration";
|
|
1668
1669
|
const _EH = "EnableHybrid";
|
|
1669
1670
|
const _EJSP = "ExtraJarsS3Path";
|
|
1670
1671
|
const _EK = "EncryptionKey";
|
|
@@ -1693,6 +1694,7 @@ const _ER = "EvaluatedRule";
|
|
|
1693
1694
|
const _ERSP = "ExecutionRoleSessionPolicy";
|
|
1694
1695
|
const _ES = "ErrorString";
|
|
1695
1696
|
const _ESP = "EnableSamplePath";
|
|
1697
|
+
const _ESx = "ExportSetting";
|
|
1696
1698
|
const _ET = "EndTime";
|
|
1697
1699
|
const _ETTD = "EntityTypesToDetect";
|
|
1698
1700
|
const _ETx = "ExecutionTime";
|
|
@@ -1839,6 +1841,9 @@ const _GCeton = "GetConnections";
|
|
|
1839
1841
|
const _GCetr = "GetCrawler";
|
|
1840
1842
|
const _GCetra = "GetCrawlers";
|
|
1841
1843
|
const _GD = "GetDatabase";
|
|
1844
|
+
const _GDCEC = "GetDataCatalogExportConfiguration";
|
|
1845
|
+
const _GDCECI = "GetDataCatalogExportConfigurationInput";
|
|
1846
|
+
const _GDCECO = "GetDataCatalogExportConfigurationOutput";
|
|
1842
1847
|
const _GDCES = "GetDataCatalogEncryptionSettings";
|
|
1843
1848
|
const _GDCESR = "GetDataCatalogEncryptionSettingsRequest";
|
|
1844
1849
|
const _GDCESRe = "GetDataCatalogEncryptionSettingsResponse";
|
|
@@ -2593,6 +2598,9 @@ const _PCPR = "PhysicalConnectionPropertiesRequired";
|
|
|
2593
2598
|
const _PCR = "PhysicalConnectionRequirements";
|
|
2594
2599
|
const _PCa = "PaginationConfiguration";
|
|
2595
2600
|
const _PCr = "ProfileConfiguration";
|
|
2601
|
+
const _PDCEC = "PutDataCatalogExportConfiguration";
|
|
2602
|
+
const _PDCECI = "PutDataCatalogExportConfigurationInput";
|
|
2603
|
+
const _PDCECO = "PutDataCatalogExportConfigurationOutput";
|
|
2596
2604
|
const _PDCES = "PutDataCatalogEncryptionSettings";
|
|
2597
2605
|
const _PDCESR = "PutDataCatalogEncryptionSettingsRequest";
|
|
2598
2606
|
const _PDCESRu = "PutDataCatalogEncryptionSettingsResponse";
|
|
@@ -2855,6 +2863,7 @@ const _SAk = "SkipArchive";
|
|
|
2855
2863
|
const _SAo = "SourceArn";
|
|
2856
2864
|
const _SAq = "SqlAliases";
|
|
2857
2865
|
const _SAql = "SqlAlias";
|
|
2866
|
+
const _SAs = "SseAlgorithm";
|
|
2858
2867
|
const _SAt = "StartedAfter";
|
|
2859
2868
|
const _SAta = "StatisticAnnotation";
|
|
2860
2869
|
const _SAto = "StoppedActions";
|
|
@@ -3069,6 +3078,7 @@ const _SSt = "StatisticSummary";
|
|
|
3069
3078
|
const _SSto = "StopSession";
|
|
3070
3079
|
const _SSu = "SuccessfulSubmissions";
|
|
3071
3080
|
const _ST = "SourceType";
|
|
3081
|
+
const _STBA = "S3TableBucketArn";
|
|
3072
3082
|
const _STC = "SourceTableConfig";
|
|
3073
3083
|
const _STE = "SchedulerTransitioningException";
|
|
3074
3084
|
const _STL = "S3TargetList";
|
|
@@ -5696,6 +5706,11 @@ var ExecutionProperty$ = [3, n0, _EP,
|
|
|
5696
5706
|
[_MCR],
|
|
5697
5707
|
[1]
|
|
5698
5708
|
];
|
|
5709
|
+
var ExportEncryptionConfiguration$ = [3, n0, _EEC,
|
|
5710
|
+
0,
|
|
5711
|
+
[_SAs, _KKA],
|
|
5712
|
+
[0, 0]
|
|
5713
|
+
];
|
|
5699
5714
|
var ExportLabelsTaskRunProperties$ = [3, n0, _ELTRP,
|
|
5700
5715
|
0,
|
|
5701
5716
|
[_OSP],
|
|
@@ -6041,6 +6056,16 @@ var GetDataCatalogEncryptionSettingsResponse$ = [3, n0, _GDCESRe,
|
|
|
6041
6056
|
[_DCES],
|
|
6042
6057
|
[() => DataCatalogEncryptionSettings$]
|
|
6043
6058
|
];
|
|
6059
|
+
var GetDataCatalogExportConfigurationInput$ = [3, n0, _GDCECI,
|
|
6060
|
+
0,
|
|
6061
|
+
[],
|
|
6062
|
+
[]
|
|
6063
|
+
];
|
|
6064
|
+
var GetDataCatalogExportConfigurationOutput$ = [3, n0, _GDCECO,
|
|
6065
|
+
0,
|
|
6066
|
+
[_ESx, _St, _ECn, _STBA, _CAr, _UA],
|
|
6067
|
+
[0, 0, () => ExportEncryptionConfiguration$, 0, 4, 4]
|
|
6068
|
+
];
|
|
6044
6069
|
var GetDataflowGraphRequest$ = [3, n0, _GDGR,
|
|
6045
6070
|
0,
|
|
6046
6071
|
[_PSy],
|
|
@@ -7621,6 +7646,16 @@ var PutDataCatalogEncryptionSettingsResponse$ = [3, n0, _PDCESRu,
|
|
|
7621
7646
|
[],
|
|
7622
7647
|
[]
|
|
7623
7648
|
];
|
|
7649
|
+
var PutDataCatalogExportConfigurationInput$ = [3, n0, _PDCECI,
|
|
7650
|
+
0,
|
|
7651
|
+
[_ESx, _ECn, _CTl],
|
|
7652
|
+
[0, () => ExportEncryptionConfiguration$, [0, 4]], 1
|
|
7653
|
+
];
|
|
7654
|
+
var PutDataCatalogExportConfigurationOutput$ = [3, n0, _PDCECO,
|
|
7655
|
+
0,
|
|
7656
|
+
[_ESx, _ECn],
|
|
7657
|
+
[0, () => ExportEncryptionConfiguration$]
|
|
7658
|
+
];
|
|
7624
7659
|
var PutDataQualityProfileAnnotationRequest$ = [3, n0, _PDQPAR,
|
|
7625
7660
|
0,
|
|
7626
7661
|
[_PI, _IAnc],
|
|
@@ -9979,6 +10014,9 @@ var GetDatabases$ = [9, n0, _GDe,
|
|
|
9979
10014
|
var GetDataCatalogEncryptionSettings$ = [9, n0, _GDCES,
|
|
9980
10015
|
0, () => GetDataCatalogEncryptionSettingsRequest$, () => GetDataCatalogEncryptionSettingsResponse$
|
|
9981
10016
|
];
|
|
10017
|
+
var GetDataCatalogExportConfiguration$ = [9, n0, _GDCEC,
|
|
10018
|
+
{ [_h]: ["POST", "/get-data-catalog-export-configuration", 200] }, () => GetDataCatalogExportConfigurationInput$, () => GetDataCatalogExportConfigurationOutput$
|
|
10019
|
+
];
|
|
9982
10020
|
var GetDataflowGraph$ = [9, n0, _GDG,
|
|
9983
10021
|
0, () => GetDataflowGraphRequest$, () => GetDataflowGraphResponse$
|
|
9984
10022
|
];
|
|
@@ -10276,6 +10314,9 @@ var PutAttachment$ = [9, n0, _PAutt,
|
|
|
10276
10314
|
var PutDataCatalogEncryptionSettings$ = [9, n0, _PDCES,
|
|
10277
10315
|
0, () => PutDataCatalogEncryptionSettingsRequest$, () => PutDataCatalogEncryptionSettingsResponse$
|
|
10278
10316
|
];
|
|
10317
|
+
var PutDataCatalogExportConfiguration$ = [9, n0, _PDCEC,
|
|
10318
|
+
{ [_h]: ["POST", "/put-data-catalog-export-configuration", 200] }, () => PutDataCatalogExportConfigurationInput$, () => PutDataCatalogExportConfigurationOutput$
|
|
10319
|
+
];
|
|
10279
10320
|
var PutDataQualityProfileAnnotation$ = [9, n0, _PDQPA,
|
|
10280
10321
|
0, () => PutDataQualityProfileAnnotationRequest$, () => PutDataQualityProfileAnnotationResponse$
|
|
10281
10322
|
];
|
|
@@ -11021,6 +11062,9 @@ class GetDatabasesCommand extends command(_ep0, _mw0, "GetDatabases", GetDatabas
|
|
|
11021
11062
|
class GetDataCatalogEncryptionSettingsCommand extends command(_ep0, _mw0, "GetDataCatalogEncryptionSettings", GetDataCatalogEncryptionSettings$) {
|
|
11022
11063
|
}
|
|
11023
11064
|
|
|
11065
|
+
class GetDataCatalogExportConfigurationCommand extends command(_ep0, _mw0, "GetDataCatalogExportConfiguration", GetDataCatalogExportConfiguration$) {
|
|
11066
|
+
}
|
|
11067
|
+
|
|
11024
11068
|
class GetDataflowGraphCommand extends command(_ep0, _mw0, "GetDataflowGraph", GetDataflowGraph$) {
|
|
11025
11069
|
}
|
|
11026
11070
|
|
|
@@ -11318,6 +11362,9 @@ class PutAttachmentCommand extends command(_ep0, _mw0, "PutAttachment", PutAttac
|
|
|
11318
11362
|
class PutDataCatalogEncryptionSettingsCommand extends command(_ep0, _mw0, "PutDataCatalogEncryptionSettings", PutDataCatalogEncryptionSettings$) {
|
|
11319
11363
|
}
|
|
11320
11364
|
|
|
11365
|
+
class PutDataCatalogExportConfigurationCommand extends command(_ep0, _mw0, "PutDataCatalogExportConfiguration", PutDataCatalogExportConfiguration$) {
|
|
11366
|
+
}
|
|
11367
|
+
|
|
11321
11368
|
class PutDataQualityProfileAnnotationCommand extends command(_ep0, _mw0, "PutDataQualityProfileAnnotation", PutDataQualityProfileAnnotation$) {
|
|
11322
11369
|
}
|
|
11323
11370
|
|
|
@@ -11763,6 +11810,7 @@ const commands = {
|
|
|
11763
11810
|
GetDatabaseCommand,
|
|
11764
11811
|
GetDatabasesCommand,
|
|
11765
11812
|
GetDataCatalogEncryptionSettingsCommand,
|
|
11813
|
+
GetDataCatalogExportConfigurationCommand,
|
|
11766
11814
|
GetDataflowGraphCommand,
|
|
11767
11815
|
GetDataQualityModelCommand,
|
|
11768
11816
|
GetDataQualityModelResultCommand,
|
|
@@ -11862,6 +11910,7 @@ const commands = {
|
|
|
11862
11910
|
PutAssetTypeCommand,
|
|
11863
11911
|
PutAttachmentCommand,
|
|
11864
11912
|
PutDataCatalogEncryptionSettingsCommand,
|
|
11913
|
+
PutDataCatalogExportConfigurationCommand,
|
|
11865
11914
|
PutDataQualityProfileAnnotationCommand,
|
|
11866
11915
|
PutFormTypeCommand,
|
|
11867
11916
|
PutResourcePolicyCommand,
|
|
@@ -12822,6 +12871,17 @@ const CatalogEncryptionMode = {
|
|
|
12822
12871
|
SSEKMS: "SSE-KMS",
|
|
12823
12872
|
SSEKMSWITHSERVICEROLE: "SSE-KMS-WITH-SERVICE-ROLE",
|
|
12824
12873
|
};
|
|
12874
|
+
const ExportSetting = {
|
|
12875
|
+
DISABLED: "DISABLED",
|
|
12876
|
+
ENABLED: "ENABLED",
|
|
12877
|
+
};
|
|
12878
|
+
const ExportStatus = {
|
|
12879
|
+
DISABLED: "DISABLED",
|
|
12880
|
+
DISABLING: "DISABLING",
|
|
12881
|
+
ENABLED: "ENABLED",
|
|
12882
|
+
ENABLING: "ENABLING",
|
|
12883
|
+
FAILED: "FAILED",
|
|
12884
|
+
};
|
|
12825
12885
|
const DataQualityModelStatus = {
|
|
12826
12886
|
FAILED: "FAILED",
|
|
12827
12887
|
RUNNING: "RUNNING",
|
|
@@ -13656,7 +13716,10 @@ exports.ExecutionClass = ExecutionClass;
|
|
|
13656
13716
|
exports.ExecutionProperty$ = ExecutionProperty$;
|
|
13657
13717
|
exports.ExecutionStatus = ExecutionStatus;
|
|
13658
13718
|
exports.ExistCondition = ExistCondition;
|
|
13719
|
+
exports.ExportEncryptionConfiguration$ = ExportEncryptionConfiguration$;
|
|
13659
13720
|
exports.ExportLabelsTaskRunProperties$ = ExportLabelsTaskRunProperties$;
|
|
13721
|
+
exports.ExportSetting = ExportSetting;
|
|
13722
|
+
exports.ExportStatus = ExportStatus;
|
|
13660
13723
|
exports.ExtractedParameter$ = ExtractedParameter$;
|
|
13661
13724
|
exports.FederatedCatalog$ = FederatedCatalog$;
|
|
13662
13725
|
exports.FederatedDatabase$ = FederatedDatabase$;
|
|
@@ -13783,6 +13846,10 @@ exports.GetDataCatalogEncryptionSettings$ = GetDataCatalogEncryptionSettings$;
|
|
|
13783
13846
|
exports.GetDataCatalogEncryptionSettingsCommand = GetDataCatalogEncryptionSettingsCommand;
|
|
13784
13847
|
exports.GetDataCatalogEncryptionSettingsRequest$ = GetDataCatalogEncryptionSettingsRequest$;
|
|
13785
13848
|
exports.GetDataCatalogEncryptionSettingsResponse$ = GetDataCatalogEncryptionSettingsResponse$;
|
|
13849
|
+
exports.GetDataCatalogExportConfiguration$ = GetDataCatalogExportConfiguration$;
|
|
13850
|
+
exports.GetDataCatalogExportConfigurationCommand = GetDataCatalogExportConfigurationCommand;
|
|
13851
|
+
exports.GetDataCatalogExportConfigurationInput$ = GetDataCatalogExportConfigurationInput$;
|
|
13852
|
+
exports.GetDataCatalogExportConfigurationOutput$ = GetDataCatalogExportConfigurationOutput$;
|
|
13786
13853
|
exports.GetDataQualityModel$ = GetDataQualityModel$;
|
|
13787
13854
|
exports.GetDataQualityModelCommand = GetDataQualityModelCommand;
|
|
13788
13855
|
exports.GetDataQualityModelRequest$ = GetDataQualityModelRequest$;
|
|
@@ -14396,6 +14463,10 @@ exports.PutDataCatalogEncryptionSettings$ = PutDataCatalogEncryptionSettings$;
|
|
|
14396
14463
|
exports.PutDataCatalogEncryptionSettingsCommand = PutDataCatalogEncryptionSettingsCommand;
|
|
14397
14464
|
exports.PutDataCatalogEncryptionSettingsRequest$ = PutDataCatalogEncryptionSettingsRequest$;
|
|
14398
14465
|
exports.PutDataCatalogEncryptionSettingsResponse$ = PutDataCatalogEncryptionSettingsResponse$;
|
|
14466
|
+
exports.PutDataCatalogExportConfiguration$ = PutDataCatalogExportConfiguration$;
|
|
14467
|
+
exports.PutDataCatalogExportConfigurationCommand = PutDataCatalogExportConfigurationCommand;
|
|
14468
|
+
exports.PutDataCatalogExportConfigurationInput$ = PutDataCatalogExportConfigurationInput$;
|
|
14469
|
+
exports.PutDataCatalogExportConfigurationOutput$ = PutDataCatalogExportConfigurationOutput$;
|
|
14399
14470
|
exports.PutDataQualityProfileAnnotation$ = PutDataQualityProfileAnnotation$;
|
|
14400
14471
|
exports.PutDataQualityProfileAnnotationCommand = PutDataQualityProfileAnnotationCommand;
|
|
14401
14472
|
exports.PutDataQualityProfileAnnotationRequest$ = PutDataQualityProfileAnnotationRequest$;
|
package/dist-es/Glue.js
CHANGED
|
@@ -126,6 +126,7 @@ import { GetDashboardUrlCommand, } from "./commands/GetDashboardUrlCommand";
|
|
|
126
126
|
import { GetDatabaseCommand, } from "./commands/GetDatabaseCommand";
|
|
127
127
|
import { GetDatabasesCommand, } from "./commands/GetDatabasesCommand";
|
|
128
128
|
import { GetDataCatalogEncryptionSettingsCommand, } from "./commands/GetDataCatalogEncryptionSettingsCommand";
|
|
129
|
+
import { GetDataCatalogExportConfigurationCommand, } from "./commands/GetDataCatalogExportConfigurationCommand";
|
|
129
130
|
import { GetDataflowGraphCommand, } from "./commands/GetDataflowGraphCommand";
|
|
130
131
|
import { GetDataQualityModelCommand, } from "./commands/GetDataQualityModelCommand";
|
|
131
132
|
import { GetDataQualityModelResultCommand, } from "./commands/GetDataQualityModelResultCommand";
|
|
@@ -225,6 +226,7 @@ import { PutAssetCommand } from "./commands/PutAssetCommand";
|
|
|
225
226
|
import { PutAssetTypeCommand, } from "./commands/PutAssetTypeCommand";
|
|
226
227
|
import { PutAttachmentCommand, } from "./commands/PutAttachmentCommand";
|
|
227
228
|
import { PutDataCatalogEncryptionSettingsCommand, } from "./commands/PutDataCatalogEncryptionSettingsCommand";
|
|
229
|
+
import { PutDataCatalogExportConfigurationCommand, } from "./commands/PutDataCatalogExportConfigurationCommand";
|
|
228
230
|
import { PutDataQualityProfileAnnotationCommand, } from "./commands/PutDataQualityProfileAnnotationCommand";
|
|
229
231
|
import { PutFormTypeCommand, } from "./commands/PutFormTypeCommand";
|
|
230
232
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
@@ -477,6 +479,7 @@ const commands = {
|
|
|
477
479
|
GetDatabaseCommand,
|
|
478
480
|
GetDatabasesCommand,
|
|
479
481
|
GetDataCatalogEncryptionSettingsCommand,
|
|
482
|
+
GetDataCatalogExportConfigurationCommand,
|
|
480
483
|
GetDataflowGraphCommand,
|
|
481
484
|
GetDataQualityModelCommand,
|
|
482
485
|
GetDataQualityModelResultCommand,
|
|
@@ -576,6 +579,7 @@ const commands = {
|
|
|
576
579
|
PutAssetTypeCommand,
|
|
577
580
|
PutAttachmentCommand,
|
|
578
581
|
PutDataCatalogEncryptionSettingsCommand,
|
|
582
|
+
PutDataCatalogExportConfigurationCommand,
|
|
579
583
|
PutDataQualityProfileAnnotationCommand,
|
|
580
584
|
PutFormTypeCommand,
|
|
581
585
|
PutResourcePolicyCommand,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { GetDataCatalogExportConfiguration$ } from "../schemas/schemas_0";
|
|
3
|
+
export class GetDataCatalogExportConfigurationCommand extends command(_ep0, _mw0, "GetDataCatalogExportConfiguration", GetDataCatalogExportConfiguration$) {
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
2
|
+
import { PutDataCatalogExportConfiguration$ } from "../schemas/schemas_0";
|
|
3
|
+
export class PutDataCatalogExportConfigurationCommand extends command(_ep0, _mw0, "PutDataCatalogExportConfiguration", PutDataCatalogExportConfiguration$) {
|
|
4
|
+
}
|
|
@@ -123,6 +123,7 @@ export * from "./GetCrawlersCommand";
|
|
|
123
123
|
export * from "./GetCustomEntityTypeCommand";
|
|
124
124
|
export * from "./GetDashboardUrlCommand";
|
|
125
125
|
export * from "./GetDataCatalogEncryptionSettingsCommand";
|
|
126
|
+
export * from "./GetDataCatalogExportConfigurationCommand";
|
|
126
127
|
export * from "./GetDataQualityModelCommand";
|
|
127
128
|
export * from "./GetDataQualityModelResultCommand";
|
|
128
129
|
export * from "./GetDataQualityResultCommand";
|
|
@@ -224,6 +225,7 @@ export * from "./PutAssetCommand";
|
|
|
224
225
|
export * from "./PutAssetTypeCommand";
|
|
225
226
|
export * from "./PutAttachmentCommand";
|
|
226
227
|
export * from "./PutDataCatalogEncryptionSettingsCommand";
|
|
228
|
+
export * from "./PutDataCatalogExportConfigurationCommand";
|
|
227
229
|
export * from "./PutDataQualityProfileAnnotationCommand";
|
|
228
230
|
export * from "./PutFormTypeCommand";
|
|
229
231
|
export * from "./PutResourcePolicyCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -828,6 +828,17 @@ export const CatalogEncryptionMode = {
|
|
|
828
828
|
SSEKMS: "SSE-KMS",
|
|
829
829
|
SSEKMSWITHSERVICEROLE: "SSE-KMS-WITH-SERVICE-ROLE",
|
|
830
830
|
};
|
|
831
|
+
export const ExportSetting = {
|
|
832
|
+
DISABLED: "DISABLED",
|
|
833
|
+
ENABLED: "ENABLED",
|
|
834
|
+
};
|
|
835
|
+
export const ExportStatus = {
|
|
836
|
+
DISABLED: "DISABLED",
|
|
837
|
+
DISABLING: "DISABLING",
|
|
838
|
+
ENABLED: "ENABLED",
|
|
839
|
+
ENABLING: "ENABLING",
|
|
840
|
+
FAILED: "FAILED",
|
|
841
|
+
};
|
|
831
842
|
export const DataQualityModelStatus = {
|
|
832
843
|
FAILED: "FAILED",
|
|
833
844
|
RUNNING: "RUNNING",
|
|
@@ -830,6 +830,7 @@ const _EDQ = "EvaluateDataQuality";
|
|
|
830
830
|
const _EDQMF = "EvaluateDataQualityMultiFrame";
|
|
831
831
|
const _EDr = "ErrorDetails";
|
|
832
832
|
const _EDv = "EvaluatedDistributions";
|
|
833
|
+
const _EEC = "ExportEncryptionConfiguration";
|
|
833
834
|
const _EH = "EnableHybrid";
|
|
834
835
|
const _EJSP = "ExtraJarsS3Path";
|
|
835
836
|
const _EK = "EncryptionKey";
|
|
@@ -858,6 +859,7 @@ const _ER = "EvaluatedRule";
|
|
|
858
859
|
const _ERSP = "ExecutionRoleSessionPolicy";
|
|
859
860
|
const _ES = "ErrorString";
|
|
860
861
|
const _ESP = "EnableSamplePath";
|
|
862
|
+
const _ESx = "ExportSetting";
|
|
861
863
|
const _ET = "EndTime";
|
|
862
864
|
const _ETTD = "EntityTypesToDetect";
|
|
863
865
|
const _ETx = "ExecutionTime";
|
|
@@ -1004,6 +1006,9 @@ const _GCeton = "GetConnections";
|
|
|
1004
1006
|
const _GCetr = "GetCrawler";
|
|
1005
1007
|
const _GCetra = "GetCrawlers";
|
|
1006
1008
|
const _GD = "GetDatabase";
|
|
1009
|
+
const _GDCEC = "GetDataCatalogExportConfiguration";
|
|
1010
|
+
const _GDCECI = "GetDataCatalogExportConfigurationInput";
|
|
1011
|
+
const _GDCECO = "GetDataCatalogExportConfigurationOutput";
|
|
1007
1012
|
const _GDCES = "GetDataCatalogEncryptionSettings";
|
|
1008
1013
|
const _GDCESR = "GetDataCatalogEncryptionSettingsRequest";
|
|
1009
1014
|
const _GDCESRe = "GetDataCatalogEncryptionSettingsResponse";
|
|
@@ -1758,6 +1763,9 @@ const _PCPR = "PhysicalConnectionPropertiesRequired";
|
|
|
1758
1763
|
const _PCR = "PhysicalConnectionRequirements";
|
|
1759
1764
|
const _PCa = "PaginationConfiguration";
|
|
1760
1765
|
const _PCr = "ProfileConfiguration";
|
|
1766
|
+
const _PDCEC = "PutDataCatalogExportConfiguration";
|
|
1767
|
+
const _PDCECI = "PutDataCatalogExportConfigurationInput";
|
|
1768
|
+
const _PDCECO = "PutDataCatalogExportConfigurationOutput";
|
|
1761
1769
|
const _PDCES = "PutDataCatalogEncryptionSettings";
|
|
1762
1770
|
const _PDCESR = "PutDataCatalogEncryptionSettingsRequest";
|
|
1763
1771
|
const _PDCESRu = "PutDataCatalogEncryptionSettingsResponse";
|
|
@@ -2020,6 +2028,7 @@ const _SAk = "SkipArchive";
|
|
|
2020
2028
|
const _SAo = "SourceArn";
|
|
2021
2029
|
const _SAq = "SqlAliases";
|
|
2022
2030
|
const _SAql = "SqlAlias";
|
|
2031
|
+
const _SAs = "SseAlgorithm";
|
|
2023
2032
|
const _SAt = "StartedAfter";
|
|
2024
2033
|
const _SAta = "StatisticAnnotation";
|
|
2025
2034
|
const _SAto = "StoppedActions";
|
|
@@ -2234,6 +2243,7 @@ const _SSt = "StatisticSummary";
|
|
|
2234
2243
|
const _SSto = "StopSession";
|
|
2235
2244
|
const _SSu = "SuccessfulSubmissions";
|
|
2236
2245
|
const _ST = "SourceType";
|
|
2246
|
+
const _STBA = "S3TableBucketArn";
|
|
2237
2247
|
const _STC = "SourceTableConfig";
|
|
2238
2248
|
const _STE = "SchedulerTransitioningException";
|
|
2239
2249
|
const _STL = "S3TargetList";
|
|
@@ -4864,6 +4874,11 @@ export var ExecutionProperty$ = [3, n0, _EP,
|
|
|
4864
4874
|
[_MCR],
|
|
4865
4875
|
[1]
|
|
4866
4876
|
];
|
|
4877
|
+
export var ExportEncryptionConfiguration$ = [3, n0, _EEC,
|
|
4878
|
+
0,
|
|
4879
|
+
[_SAs, _KKA],
|
|
4880
|
+
[0, 0]
|
|
4881
|
+
];
|
|
4867
4882
|
export var ExportLabelsTaskRunProperties$ = [3, n0, _ELTRP,
|
|
4868
4883
|
0,
|
|
4869
4884
|
[_OSP],
|
|
@@ -5209,6 +5224,16 @@ export var GetDataCatalogEncryptionSettingsResponse$ = [3, n0, _GDCESRe,
|
|
|
5209
5224
|
[_DCES],
|
|
5210
5225
|
[() => DataCatalogEncryptionSettings$]
|
|
5211
5226
|
];
|
|
5227
|
+
export var GetDataCatalogExportConfigurationInput$ = [3, n0, _GDCECI,
|
|
5228
|
+
0,
|
|
5229
|
+
[],
|
|
5230
|
+
[]
|
|
5231
|
+
];
|
|
5232
|
+
export var GetDataCatalogExportConfigurationOutput$ = [3, n0, _GDCECO,
|
|
5233
|
+
0,
|
|
5234
|
+
[_ESx, _St, _ECn, _STBA, _CAr, _UA],
|
|
5235
|
+
[0, 0, () => ExportEncryptionConfiguration$, 0, 4, 4]
|
|
5236
|
+
];
|
|
5212
5237
|
export var GetDataflowGraphRequest$ = [3, n0, _GDGR,
|
|
5213
5238
|
0,
|
|
5214
5239
|
[_PSy],
|
|
@@ -6789,6 +6814,16 @@ export var PutDataCatalogEncryptionSettingsResponse$ = [3, n0, _PDCESRu,
|
|
|
6789
6814
|
[],
|
|
6790
6815
|
[]
|
|
6791
6816
|
];
|
|
6817
|
+
export var PutDataCatalogExportConfigurationInput$ = [3, n0, _PDCECI,
|
|
6818
|
+
0,
|
|
6819
|
+
[_ESx, _ECn, _CTl],
|
|
6820
|
+
[0, () => ExportEncryptionConfiguration$, [0, 4]], 1
|
|
6821
|
+
];
|
|
6822
|
+
export var PutDataCatalogExportConfigurationOutput$ = [3, n0, _PDCECO,
|
|
6823
|
+
0,
|
|
6824
|
+
[_ESx, _ECn],
|
|
6825
|
+
[0, () => ExportEncryptionConfiguration$]
|
|
6826
|
+
];
|
|
6792
6827
|
export var PutDataQualityProfileAnnotationRequest$ = [3, n0, _PDQPAR,
|
|
6793
6828
|
0,
|
|
6794
6829
|
[_PI, _IAnc],
|
|
@@ -9257,6 +9292,9 @@ export var GetDatabases$ = [9, n0, _GDe,
|
|
|
9257
9292
|
export var GetDataCatalogEncryptionSettings$ = [9, n0, _GDCES,
|
|
9258
9293
|
0, () => GetDataCatalogEncryptionSettingsRequest$, () => GetDataCatalogEncryptionSettingsResponse$
|
|
9259
9294
|
];
|
|
9295
|
+
export var GetDataCatalogExportConfiguration$ = [9, n0, _GDCEC,
|
|
9296
|
+
{ [_h]: ["POST", "/get-data-catalog-export-configuration", 200] }, () => GetDataCatalogExportConfigurationInput$, () => GetDataCatalogExportConfigurationOutput$
|
|
9297
|
+
];
|
|
9260
9298
|
export var GetDataflowGraph$ = [9, n0, _GDG,
|
|
9261
9299
|
0, () => GetDataflowGraphRequest$, () => GetDataflowGraphResponse$
|
|
9262
9300
|
];
|
|
@@ -9554,6 +9592,9 @@ export var PutAttachment$ = [9, n0, _PAutt,
|
|
|
9554
9592
|
export var PutDataCatalogEncryptionSettings$ = [9, n0, _PDCES,
|
|
9555
9593
|
0, () => PutDataCatalogEncryptionSettingsRequest$, () => PutDataCatalogEncryptionSettingsResponse$
|
|
9556
9594
|
];
|
|
9595
|
+
export var PutDataCatalogExportConfiguration$ = [9, n0, _PDCEC,
|
|
9596
|
+
{ [_h]: ["POST", "/put-data-catalog-export-configuration", 200] }, () => PutDataCatalogExportConfigurationInput$, () => PutDataCatalogExportConfigurationOutput$
|
|
9597
|
+
];
|
|
9557
9598
|
export var PutDataQualityProfileAnnotation$ = [9, n0, _PDQPA,
|
|
9558
9599
|
0, () => PutDataQualityProfileAnnotationRequest$, () => PutDataQualityProfileAnnotationResponse$
|
|
9559
9600
|
];
|
package/dist-types/Glue.d.ts
CHANGED
|
@@ -126,6 +126,7 @@ import { type GetDashboardUrlCommandInput, type GetDashboardUrlCommandOutput } f
|
|
|
126
126
|
import { type GetDatabaseCommandInput, type GetDatabaseCommandOutput } from "./commands/GetDatabaseCommand";
|
|
127
127
|
import { type GetDatabasesCommandInput, type GetDatabasesCommandOutput } from "./commands/GetDatabasesCommand";
|
|
128
128
|
import { type GetDataCatalogEncryptionSettingsCommandInput, type GetDataCatalogEncryptionSettingsCommandOutput } from "./commands/GetDataCatalogEncryptionSettingsCommand";
|
|
129
|
+
import { type GetDataCatalogExportConfigurationCommandInput, type GetDataCatalogExportConfigurationCommandOutput } from "./commands/GetDataCatalogExportConfigurationCommand";
|
|
129
130
|
import { type GetDataflowGraphCommandInput, type GetDataflowGraphCommandOutput } from "./commands/GetDataflowGraphCommand";
|
|
130
131
|
import { type GetDataQualityModelCommandInput, type GetDataQualityModelCommandOutput } from "./commands/GetDataQualityModelCommand";
|
|
131
132
|
import { type GetDataQualityModelResultCommandInput, type GetDataQualityModelResultCommandOutput } from "./commands/GetDataQualityModelResultCommand";
|
|
@@ -225,6 +226,7 @@ import { type PutAssetCommandInput, type PutAssetCommandOutput } from "./command
|
|
|
225
226
|
import { type PutAssetTypeCommandInput, type PutAssetTypeCommandOutput } from "./commands/PutAssetTypeCommand";
|
|
226
227
|
import { type PutAttachmentCommandInput, type PutAttachmentCommandOutput } from "./commands/PutAttachmentCommand";
|
|
227
228
|
import { type PutDataCatalogEncryptionSettingsCommandInput, type PutDataCatalogEncryptionSettingsCommandOutput } from "./commands/PutDataCatalogEncryptionSettingsCommand";
|
|
229
|
+
import { type PutDataCatalogExportConfigurationCommandInput, type PutDataCatalogExportConfigurationCommandOutput } from "./commands/PutDataCatalogExportConfigurationCommand";
|
|
228
230
|
import { type PutDataQualityProfileAnnotationCommandInput, type PutDataQualityProfileAnnotationCommandOutput } from "./commands/PutDataQualityProfileAnnotationCommand";
|
|
229
231
|
import { type PutFormTypeCommandInput, type PutFormTypeCommandOutput } from "./commands/PutFormTypeCommand";
|
|
230
232
|
import { type PutResourcePolicyCommandInput, type PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
@@ -1074,6 +1076,13 @@ export interface Glue {
|
|
|
1074
1076
|
getDataCatalogEncryptionSettings(args: GetDataCatalogEncryptionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetDataCatalogEncryptionSettingsCommandOutput>;
|
|
1075
1077
|
getDataCatalogEncryptionSettings(args: GetDataCatalogEncryptionSettingsCommandInput, cb: (err: any, data?: GetDataCatalogEncryptionSettingsCommandOutput) => void): void;
|
|
1076
1078
|
getDataCatalogEncryptionSettings(args: GetDataCatalogEncryptionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataCatalogEncryptionSettingsCommandOutput) => void): void;
|
|
1079
|
+
/**
|
|
1080
|
+
* @see {@link GetDataCatalogExportConfigurationCommand}
|
|
1081
|
+
*/
|
|
1082
|
+
getDataCatalogExportConfiguration(): Promise<GetDataCatalogExportConfigurationCommandOutput>;
|
|
1083
|
+
getDataCatalogExportConfiguration(args: GetDataCatalogExportConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetDataCatalogExportConfigurationCommandOutput>;
|
|
1084
|
+
getDataCatalogExportConfiguration(args: GetDataCatalogExportConfigurationCommandInput, cb: (err: any, data?: GetDataCatalogExportConfigurationCommandOutput) => void): void;
|
|
1085
|
+
getDataCatalogExportConfiguration(args: GetDataCatalogExportConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataCatalogExportConfigurationCommandOutput) => void): void;
|
|
1077
1086
|
/**
|
|
1078
1087
|
* @see {@link GetDataflowGraphCommand}
|
|
1079
1088
|
*/
|
|
@@ -1704,6 +1713,12 @@ export interface Glue {
|
|
|
1704
1713
|
putDataCatalogEncryptionSettings(args: PutDataCatalogEncryptionSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutDataCatalogEncryptionSettingsCommandOutput>;
|
|
1705
1714
|
putDataCatalogEncryptionSettings(args: PutDataCatalogEncryptionSettingsCommandInput, cb: (err: any, data?: PutDataCatalogEncryptionSettingsCommandOutput) => void): void;
|
|
1706
1715
|
putDataCatalogEncryptionSettings(args: PutDataCatalogEncryptionSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDataCatalogEncryptionSettingsCommandOutput) => void): void;
|
|
1716
|
+
/**
|
|
1717
|
+
* @see {@link PutDataCatalogExportConfigurationCommand}
|
|
1718
|
+
*/
|
|
1719
|
+
putDataCatalogExportConfiguration(args: PutDataCatalogExportConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutDataCatalogExportConfigurationCommandOutput>;
|
|
1720
|
+
putDataCatalogExportConfiguration(args: PutDataCatalogExportConfigurationCommandInput, cb: (err: any, data?: PutDataCatalogExportConfigurationCommandOutput) => void): void;
|
|
1721
|
+
putDataCatalogExportConfiguration(args: PutDataCatalogExportConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDataCatalogExportConfigurationCommandOutput) => void): void;
|
|
1707
1722
|
/**
|
|
1708
1723
|
* @see {@link PutDataQualityProfileAnnotationCommand}
|
|
1709
1724
|
*/
|
|
@@ -133,6 +133,7 @@ import type { GetDashboardUrlCommandInput, GetDashboardUrlCommandOutput } from "
|
|
|
133
133
|
import type { GetDatabaseCommandInput, GetDatabaseCommandOutput } from "./commands/GetDatabaseCommand";
|
|
134
134
|
import type { GetDatabasesCommandInput, GetDatabasesCommandOutput } from "./commands/GetDatabasesCommand";
|
|
135
135
|
import type { GetDataCatalogEncryptionSettingsCommandInput, GetDataCatalogEncryptionSettingsCommandOutput } from "./commands/GetDataCatalogEncryptionSettingsCommand";
|
|
136
|
+
import type { GetDataCatalogExportConfigurationCommandInput, GetDataCatalogExportConfigurationCommandOutput } from "./commands/GetDataCatalogExportConfigurationCommand";
|
|
136
137
|
import type { GetDataflowGraphCommandInput, GetDataflowGraphCommandOutput } from "./commands/GetDataflowGraphCommand";
|
|
137
138
|
import type { GetDataQualityModelCommandInput, GetDataQualityModelCommandOutput } from "./commands/GetDataQualityModelCommand";
|
|
138
139
|
import type { GetDataQualityModelResultCommandInput, GetDataQualityModelResultCommandOutput } from "./commands/GetDataQualityModelResultCommand";
|
|
@@ -232,6 +233,7 @@ import type { PutAssetCommandInput, PutAssetCommandOutput } from "./commands/Put
|
|
|
232
233
|
import type { PutAssetTypeCommandInput, PutAssetTypeCommandOutput } from "./commands/PutAssetTypeCommand";
|
|
233
234
|
import type { PutAttachmentCommandInput, PutAttachmentCommandOutput } from "./commands/PutAttachmentCommand";
|
|
234
235
|
import type { PutDataCatalogEncryptionSettingsCommandInput, PutDataCatalogEncryptionSettingsCommandOutput } from "./commands/PutDataCatalogEncryptionSettingsCommand";
|
|
236
|
+
import type { PutDataCatalogExportConfigurationCommandInput, PutDataCatalogExportConfigurationCommandOutput } from "./commands/PutDataCatalogExportConfigurationCommand";
|
|
235
237
|
import type { PutDataQualityProfileAnnotationCommandInput, PutDataQualityProfileAnnotationCommandOutput } from "./commands/PutDataQualityProfileAnnotationCommand";
|
|
236
238
|
import type { PutFormTypeCommandInput, PutFormTypeCommandOutput } from "./commands/PutFormTypeCommand";
|
|
237
239
|
import type { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
|
|
@@ -309,11 +311,11 @@ export { __Client };
|
|
|
309
311
|
/**
|
|
310
312
|
* @public
|
|
311
313
|
*/
|
|
312
|
-
export type ServiceInputTypes = AssociateGlossaryTermsCommandInput | BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDataQualityRulesetEvaluationRunCommandInput | BatchGetDevEndpointsCommandInput | BatchGetIterableFormsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchPutDataQualityStatisticAnnotationCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateCatalogCommandInput | CreateClassifierCommandInput | CreateColumnStatisticsTaskSettingsCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGlueIdentityCenterConfigurationCommandInput | CreateIntegrationCommandInput | CreateIntegrationResourcePropertyCommandInput | CreateIntegrationTablePropertiesCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteAssetCommandInput | DeleteAssetTypeCommandInput | DeleteAttachmentCommandInput | DeleteBlueprintCommandInput | DeleteCatalogCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteColumnStatisticsTaskSettingsCommandInput | DeleteConnectionCommandInput | DeleteConnectionTypeCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteGlueIdentityCenterConfigurationCommandInput | DeleteIntegrationCommandInput | DeleteIntegrationResourcePropertyCommandInput | DeleteIntegrationTablePropertiesCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | DescribeConnectionTypeCommandInput | DescribeEntityCommandInput | DescribeInboundIntegrationsCommandInput | DescribeIntegrationsCommandInput | DisassociateGlossaryTermsCommandInput | GetAssetCommandInput | GetAssetTypeCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogCommandInput | GetCatalogImportStatusCommandInput | GetCatalogsCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetColumnStatisticsTaskSettingsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDashboardUrlCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityModelCommandInput | GetDataQualityModelResultCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetEntityRecordsCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGlueIdentityCenterConfigurationCommandInput | GetIntegrationResourcePropertyCommandInput | GetIntegrationTablePropertiesCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetMaterializedViewRefreshTaskRunCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetSessionEndpointCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListAssetTypesCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListConnectionTypesCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDataQualityStatisticAnnotationsCommandInput | ListDataQualityStatisticsCommandInput | ListDevEndpointsCommandInput | ListEntitiesCommandInput | ListFormTypesCommandInput | ListGlossariesCommandInput | ListGlossaryTermsCommandInput | ListIntegrationResourcePropertiesCommandInput | ListIterableFormsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListMaterializedViewRefreshTaskRunsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | ModifyIntegrationCommandInput | PutAssetCommandInput | PutAssetTypeCommandInput | PutAttachmentCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutDataQualityProfileAnnotationCommandInput | PutFormTypeCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterConnectionTypeCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchAssetsCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartColumnStatisticsTaskRunScheduleCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartMaterializedViewRefreshTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopColumnStatisticsTaskRunScheduleCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopMaterializedViewRefreshTaskRunCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | TestConnectionCommandInput | UntagResourceCommandInput | UpdateAssetCommandInput | UpdateBlueprintCommandInput | UpdateCatalogCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateColumnStatisticsTaskSettingsCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGlueIdentityCenterConfigurationCommandInput | UpdateIntegrationResourcePropertyCommandInput | UpdateIntegrationTablePropertiesCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
314
|
+
export type ServiceInputTypes = AssociateGlossaryTermsCommandInput | BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDataQualityRulesetEvaluationRunCommandInput | BatchGetDevEndpointsCommandInput | BatchGetIterableFormsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchPutDataQualityStatisticAnnotationCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateCatalogCommandInput | CreateClassifierCommandInput | CreateColumnStatisticsTaskSettingsCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGlueIdentityCenterConfigurationCommandInput | CreateIntegrationCommandInput | CreateIntegrationResourcePropertyCommandInput | CreateIntegrationTablePropertiesCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteAssetCommandInput | DeleteAssetTypeCommandInput | DeleteAttachmentCommandInput | DeleteBlueprintCommandInput | DeleteCatalogCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteColumnStatisticsTaskSettingsCommandInput | DeleteConnectionCommandInput | DeleteConnectionTypeCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteGlueIdentityCenterConfigurationCommandInput | DeleteIntegrationCommandInput | DeleteIntegrationResourcePropertyCommandInput | DeleteIntegrationTablePropertiesCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | DescribeConnectionTypeCommandInput | DescribeEntityCommandInput | DescribeInboundIntegrationsCommandInput | DescribeIntegrationsCommandInput | DisassociateGlossaryTermsCommandInput | GetAssetCommandInput | GetAssetTypeCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogCommandInput | GetCatalogImportStatusCommandInput | GetCatalogsCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetColumnStatisticsTaskSettingsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDashboardUrlCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataCatalogExportConfigurationCommandInput | GetDataQualityModelCommandInput | GetDataQualityModelResultCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetEntityRecordsCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGlueIdentityCenterConfigurationCommandInput | GetIntegrationResourcePropertyCommandInput | GetIntegrationTablePropertiesCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetMaterializedViewRefreshTaskRunCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetSessionEndpointCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListAssetTypesCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListConnectionTypesCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDataQualityStatisticAnnotationsCommandInput | ListDataQualityStatisticsCommandInput | ListDevEndpointsCommandInput | ListEntitiesCommandInput | ListFormTypesCommandInput | ListGlossariesCommandInput | ListGlossaryTermsCommandInput | ListIntegrationResourcePropertiesCommandInput | ListIterableFormsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListMaterializedViewRefreshTaskRunsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | ModifyIntegrationCommandInput | PutAssetCommandInput | PutAssetTypeCommandInput | PutAttachmentCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutDataCatalogExportConfigurationCommandInput | PutDataQualityProfileAnnotationCommandInput | PutFormTypeCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterConnectionTypeCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchAssetsCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartColumnStatisticsTaskRunScheduleCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartMaterializedViewRefreshTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopColumnStatisticsTaskRunScheduleCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopMaterializedViewRefreshTaskRunCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | TestConnectionCommandInput | UntagResourceCommandInput | UpdateAssetCommandInput | UpdateBlueprintCommandInput | UpdateCatalogCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateColumnStatisticsTaskSettingsCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGlueIdentityCenterConfigurationCommandInput | UpdateIntegrationResourcePropertyCommandInput | UpdateIntegrationTablePropertiesCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
|
|
313
315
|
/**
|
|
314
316
|
* @public
|
|
315
317
|
*/
|
|
316
|
-
export type ServiceOutputTypes = AssociateGlossaryTermsCommandOutput | BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDataQualityRulesetEvaluationRunCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetIterableFormsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchPutDataQualityStatisticAnnotationCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateCatalogCommandOutput | CreateClassifierCommandOutput | CreateColumnStatisticsTaskSettingsCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGlueIdentityCenterConfigurationCommandOutput | CreateIntegrationCommandOutput | CreateIntegrationResourcePropertyCommandOutput | CreateIntegrationTablePropertiesCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteAssetCommandOutput | DeleteAssetTypeCommandOutput | DeleteAttachmentCommandOutput | DeleteBlueprintCommandOutput | DeleteCatalogCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteColumnStatisticsTaskSettingsCommandOutput | DeleteConnectionCommandOutput | DeleteConnectionTypeCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteGlueIdentityCenterConfigurationCommandOutput | DeleteIntegrationCommandOutput | DeleteIntegrationResourcePropertyCommandOutput | DeleteIntegrationTablePropertiesCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | DescribeConnectionTypeCommandOutput | DescribeEntityCommandOutput | DescribeInboundIntegrationsCommandOutput | DescribeIntegrationsCommandOutput | DisassociateGlossaryTermsCommandOutput | GetAssetCommandOutput | GetAssetTypeCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogCommandOutput | GetCatalogImportStatusCommandOutput | GetCatalogsCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetColumnStatisticsTaskSettingsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDashboardUrlCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityModelCommandOutput | GetDataQualityModelResultCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetEntityRecordsCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGlueIdentityCenterConfigurationCommandOutput | GetIntegrationResourcePropertyCommandOutput | GetIntegrationTablePropertiesCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetMaterializedViewRefreshTaskRunCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetSessionEndpointCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListAssetTypesCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListConnectionTypesCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDataQualityStatisticAnnotationsCommandOutput | ListDataQualityStatisticsCommandOutput | ListDevEndpointsCommandOutput | ListEntitiesCommandOutput | ListFormTypesCommandOutput | ListGlossariesCommandOutput | ListGlossaryTermsCommandOutput | ListIntegrationResourcePropertiesCommandOutput | ListIterableFormsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListMaterializedViewRefreshTaskRunsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | ModifyIntegrationCommandOutput | PutAssetCommandOutput | PutAssetTypeCommandOutput | PutAttachmentCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutDataQualityProfileAnnotationCommandOutput | PutFormTypeCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterConnectionTypeCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchAssetsCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartColumnStatisticsTaskRunScheduleCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartMaterializedViewRefreshTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopColumnStatisticsTaskRunScheduleCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopMaterializedViewRefreshTaskRunCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | TestConnectionCommandOutput | UntagResourceCommandOutput | UpdateAssetCommandOutput | UpdateBlueprintCommandOutput | UpdateCatalogCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateColumnStatisticsTaskSettingsCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGlueIdentityCenterConfigurationCommandOutput | UpdateIntegrationResourcePropertyCommandOutput | UpdateIntegrationTablePropertiesCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
318
|
+
export type ServiceOutputTypes = AssociateGlossaryTermsCommandOutput | BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDataQualityRulesetEvaluationRunCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetIterableFormsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchPutDataQualityStatisticAnnotationCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateCatalogCommandOutput | CreateClassifierCommandOutput | CreateColumnStatisticsTaskSettingsCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGlueIdentityCenterConfigurationCommandOutput | CreateIntegrationCommandOutput | CreateIntegrationResourcePropertyCommandOutput | CreateIntegrationTablePropertiesCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteAssetCommandOutput | DeleteAssetTypeCommandOutput | DeleteAttachmentCommandOutput | DeleteBlueprintCommandOutput | DeleteCatalogCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteColumnStatisticsTaskSettingsCommandOutput | DeleteConnectionCommandOutput | DeleteConnectionTypeCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteGlueIdentityCenterConfigurationCommandOutput | DeleteIntegrationCommandOutput | DeleteIntegrationResourcePropertyCommandOutput | DeleteIntegrationTablePropertiesCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | DescribeConnectionTypeCommandOutput | DescribeEntityCommandOutput | DescribeInboundIntegrationsCommandOutput | DescribeIntegrationsCommandOutput | DisassociateGlossaryTermsCommandOutput | GetAssetCommandOutput | GetAssetTypeCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogCommandOutput | GetCatalogImportStatusCommandOutput | GetCatalogsCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetColumnStatisticsTaskSettingsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDashboardUrlCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataCatalogExportConfigurationCommandOutput | GetDataQualityModelCommandOutput | GetDataQualityModelResultCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetEntityRecordsCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGlueIdentityCenterConfigurationCommandOutput | GetIntegrationResourcePropertyCommandOutput | GetIntegrationTablePropertiesCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetMaterializedViewRefreshTaskRunCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetSessionEndpointCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListAssetTypesCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListConnectionTypesCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDataQualityStatisticAnnotationsCommandOutput | ListDataQualityStatisticsCommandOutput | ListDevEndpointsCommandOutput | ListEntitiesCommandOutput | ListFormTypesCommandOutput | ListGlossariesCommandOutput | ListGlossaryTermsCommandOutput | ListIntegrationResourcePropertiesCommandOutput | ListIterableFormsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListMaterializedViewRefreshTaskRunsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | ModifyIntegrationCommandOutput | PutAssetCommandOutput | PutAssetTypeCommandOutput | PutAttachmentCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutDataCatalogExportConfigurationCommandOutput | PutDataQualityProfileAnnotationCommandOutput | PutFormTypeCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterConnectionTypeCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchAssetsCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartColumnStatisticsTaskRunScheduleCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartMaterializedViewRefreshTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopColumnStatisticsTaskRunScheduleCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopMaterializedViewRefreshTaskRunCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | TestConnectionCommandOutput | UntagResourceCommandOutput | UpdateAssetCommandOutput | UpdateBlueprintCommandOutput | UpdateCatalogCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateColumnStatisticsTaskSettingsCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGlueIdentityCenterConfigurationCommandOutput | UpdateIntegrationResourcePropertyCommandOutput | UpdateIntegrationTablePropertiesCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
|
|
317
319
|
/**
|
|
318
320
|
* @public
|
|
319
321
|
*/
|