@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.
Files changed (29) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +72 -1
  3. package/dist-es/Glue.js +4 -0
  4. package/dist-es/commands/GetDataCatalogExportConfigurationCommand.js +4 -0
  5. package/dist-es/commands/PutDataCatalogExportConfigurationCommand.js +4 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +11 -0
  8. package/dist-es/schemas/schemas_0.js +41 -0
  9. package/dist-types/Glue.d.ts +15 -0
  10. package/dist-types/GlueClient.d.ts +4 -2
  11. package/dist-types/commands/GetDataCatalogExportConfigurationCommand.d.ts +89 -0
  12. package/dist-types/commands/PutDataCatalogExportConfigurationCommand.d.ts +95 -0
  13. package/dist-types/commands/RunStatementCommand.d.ts +1 -1
  14. package/dist-types/commands/index.d.ts +2 -0
  15. package/dist-types/models/enums.d.ts +27 -0
  16. package/dist-types/models/models_2.d.ts +92 -130
  17. package/dist-types/models/models_3.d.ts +131 -2
  18. package/dist-types/schemas/schemas_0.d.ts +7 -0
  19. package/dist-types/ts3.4/Glue.d.ts +35 -0
  20. package/dist-types/ts3.4/GlueClient.d.ts +12 -0
  21. package/dist-types/ts3.4/commands/GetDataCatalogExportConfigurationCommand.d.ts +42 -0
  22. package/dist-types/ts3.4/commands/PutDataCatalogExportConfigurationCommand.d.ts +42 -0
  23. package/dist-types/ts3.4/commands/RunStatementCommand.d.ts +1 -1
  24. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  25. package/dist-types/ts3.4/models/enums.d.ts +13 -0
  26. package/dist-types/ts3.4/models/models_2.d.ts +24 -57
  27. package/dist-types/ts3.4/models/models_3.d.ts +57 -2
  28. package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
  29. package/package.json +1 -1
@@ -478,6 +478,10 @@ import {
478
478
  GetDataCatalogEncryptionSettingsCommandInput,
479
479
  GetDataCatalogEncryptionSettingsCommandOutput,
480
480
  } from "./commands/GetDataCatalogEncryptionSettingsCommand";
481
+ import {
482
+ GetDataCatalogExportConfigurationCommandInput,
483
+ GetDataCatalogExportConfigurationCommandOutput,
484
+ } from "./commands/GetDataCatalogExportConfigurationCommand";
481
485
  import {
482
486
  GetDataflowGraphCommandInput,
483
487
  GetDataflowGraphCommandOutput,
@@ -811,6 +815,10 @@ import {
811
815
  PutDataCatalogEncryptionSettingsCommandInput,
812
816
  PutDataCatalogEncryptionSettingsCommandOutput,
813
817
  } from "./commands/PutDataCatalogEncryptionSettingsCommand";
818
+ import {
819
+ PutDataCatalogExportConfigurationCommandInput,
820
+ PutDataCatalogExportConfigurationCommandOutput,
821
+ } from "./commands/PutDataCatalogExportConfigurationCommand";
814
822
  import {
815
823
  PutDataQualityProfileAnnotationCommandInput,
816
824
  PutDataQualityProfileAnnotationCommandOutput,
@@ -2732,6 +2740,20 @@ export interface Glue {
2732
2740
  options: __HttpHandlerOptions,
2733
2741
  cb: (err: any, data?: GetDataCatalogEncryptionSettingsCommandOutput) => void,
2734
2742
  ): void;
2743
+ getDataCatalogExportConfiguration(): Promise<GetDataCatalogExportConfigurationCommandOutput>;
2744
+ getDataCatalogExportConfiguration(
2745
+ args: GetDataCatalogExportConfigurationCommandInput,
2746
+ options?: __HttpHandlerOptions,
2747
+ ): Promise<GetDataCatalogExportConfigurationCommandOutput>;
2748
+ getDataCatalogExportConfiguration(
2749
+ args: GetDataCatalogExportConfigurationCommandInput,
2750
+ cb: (err: any, data?: GetDataCatalogExportConfigurationCommandOutput) => void,
2751
+ ): void;
2752
+ getDataCatalogExportConfiguration(
2753
+ args: GetDataCatalogExportConfigurationCommandInput,
2754
+ options: __HttpHandlerOptions,
2755
+ cb: (err: any, data?: GetDataCatalogExportConfigurationCommandOutput) => void,
2756
+ ): void;
2735
2757
  getDataflowGraph(): Promise<GetDataflowGraphCommandOutput>;
2736
2758
  getDataflowGraph(
2737
2759
  args: GetDataflowGraphCommandInput,
@@ -4022,6 +4044,19 @@ export interface Glue {
4022
4044
  options: __HttpHandlerOptions,
4023
4045
  cb: (err: any, data?: PutDataCatalogEncryptionSettingsCommandOutput) => void,
4024
4046
  ): void;
4047
+ putDataCatalogExportConfiguration(
4048
+ args: PutDataCatalogExportConfigurationCommandInput,
4049
+ options?: __HttpHandlerOptions,
4050
+ ): Promise<PutDataCatalogExportConfigurationCommandOutput>;
4051
+ putDataCatalogExportConfiguration(
4052
+ args: PutDataCatalogExportConfigurationCommandInput,
4053
+ cb: (err: any, data?: PutDataCatalogExportConfigurationCommandOutput) => void,
4054
+ ): void;
4055
+ putDataCatalogExportConfiguration(
4056
+ args: PutDataCatalogExportConfigurationCommandInput,
4057
+ options: __HttpHandlerOptions,
4058
+ cb: (err: any, data?: PutDataCatalogExportConfigurationCommandOutput) => void,
4059
+ ): void;
4025
4060
  putDataQualityProfileAnnotation(
4026
4061
  args: PutDataQualityProfileAnnotationCommandInput,
4027
4062
  options?: __HttpHandlerOptions,
@@ -508,6 +508,10 @@ import {
508
508
  GetDataCatalogEncryptionSettingsCommandInput,
509
509
  GetDataCatalogEncryptionSettingsCommandOutput,
510
510
  } from "./commands/GetDataCatalogEncryptionSettingsCommand";
511
+ import {
512
+ GetDataCatalogExportConfigurationCommandInput,
513
+ GetDataCatalogExportConfigurationCommandOutput,
514
+ } from "./commands/GetDataCatalogExportConfigurationCommand";
511
515
  import {
512
516
  GetDataflowGraphCommandInput,
513
517
  GetDataflowGraphCommandOutput,
@@ -841,6 +845,10 @@ import {
841
845
  PutDataCatalogEncryptionSettingsCommandInput,
842
846
  PutDataCatalogEncryptionSettingsCommandOutput,
843
847
  } from "./commands/PutDataCatalogEncryptionSettingsCommand";
848
+ import {
849
+ PutDataCatalogExportConfigurationCommandInput,
850
+ PutDataCatalogExportConfigurationCommandOutput,
851
+ } from "./commands/PutDataCatalogExportConfigurationCommand";
844
852
  import {
845
853
  PutDataQualityProfileAnnotationCommandInput,
846
854
  PutDataQualityProfileAnnotationCommandOutput,
@@ -1231,6 +1239,7 @@ export type ServiceInputTypes =
1231
1239
  | GetCustomEntityTypeCommandInput
1232
1240
  | GetDashboardUrlCommandInput
1233
1241
  | GetDataCatalogEncryptionSettingsCommandInput
1242
+ | GetDataCatalogExportConfigurationCommandInput
1234
1243
  | GetDataQualityModelCommandInput
1235
1244
  | GetDataQualityModelResultCommandInput
1236
1245
  | GetDataQualityResultCommandInput
@@ -1332,6 +1341,7 @@ export type ServiceInputTypes =
1332
1341
  | PutAssetTypeCommandInput
1333
1342
  | PutAttachmentCommandInput
1334
1343
  | PutDataCatalogEncryptionSettingsCommandInput
1344
+ | PutDataCatalogExportConfigurationCommandInput
1335
1345
  | PutDataQualityProfileAnnotationCommandInput
1336
1346
  | PutFormTypeCommandInput
1337
1347
  | PutResourcePolicyCommandInput
@@ -1529,6 +1539,7 @@ export type ServiceOutputTypes =
1529
1539
  | GetCustomEntityTypeCommandOutput
1530
1540
  | GetDashboardUrlCommandOutput
1531
1541
  | GetDataCatalogEncryptionSettingsCommandOutput
1542
+ | GetDataCatalogExportConfigurationCommandOutput
1532
1543
  | GetDataQualityModelCommandOutput
1533
1544
  | GetDataQualityModelResultCommandOutput
1534
1545
  | GetDataQualityResultCommandOutput
@@ -1630,6 +1641,7 @@ export type ServiceOutputTypes =
1630
1641
  | PutAssetTypeCommandOutput
1631
1642
  | PutAttachmentCommandOutput
1632
1643
  | PutDataCatalogEncryptionSettingsCommandOutput
1644
+ | PutDataCatalogExportConfigurationCommandOutput
1633
1645
  | PutDataQualityProfileAnnotationCommandOutput
1634
1646
  | PutFormTypeCommandOutput
1635
1647
  | PutResourcePolicyCommandOutput
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ GetDataCatalogExportConfigurationInput,
4
+ GetDataCatalogExportConfigurationOutput,
5
+ } from "../models/models_2";
6
+ export { __MetadataBearer };
7
+ export interface GetDataCatalogExportConfigurationCommandInput extends GetDataCatalogExportConfigurationInput {}
8
+ export interface GetDataCatalogExportConfigurationCommandOutput
9
+ extends GetDataCatalogExportConfigurationOutput, __MetadataBearer {}
10
+ declare const GetDataCatalogExportConfigurationCommand_base: {
11
+ new (
12
+ input: GetDataCatalogExportConfigurationCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ GetDataCatalogExportConfigurationCommandInput,
15
+ GetDataCatalogExportConfigurationCommandOutput,
16
+ import("..").GlueClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ ...[input]: [] | [GetDataCatalogExportConfigurationCommandInput]
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ GetDataCatalogExportConfigurationCommandInput,
24
+ GetDataCatalogExportConfigurationCommandOutput,
25
+ import("..").GlueClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class GetDataCatalogExportConfigurationCommand extends GetDataCatalogExportConfigurationCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: {};
35
+ output: GetDataCatalogExportConfigurationOutput;
36
+ };
37
+ sdk: {
38
+ input: GetDataCatalogExportConfigurationCommandInput;
39
+ output: GetDataCatalogExportConfigurationCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -0,0 +1,42 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ PutDataCatalogExportConfigurationInput,
4
+ PutDataCatalogExportConfigurationOutput,
5
+ } from "../models/models_2";
6
+ export { __MetadataBearer };
7
+ export interface PutDataCatalogExportConfigurationCommandInput extends PutDataCatalogExportConfigurationInput {}
8
+ export interface PutDataCatalogExportConfigurationCommandOutput
9
+ extends PutDataCatalogExportConfigurationOutput, __MetadataBearer {}
10
+ declare const PutDataCatalogExportConfigurationCommand_base: {
11
+ new (
12
+ input: PutDataCatalogExportConfigurationCommandInput,
13
+ ): import("@smithy/core/client").CommandImpl<
14
+ PutDataCatalogExportConfigurationCommandInput,
15
+ PutDataCatalogExportConfigurationCommandOutput,
16
+ import("..").GlueClientResolvedConfig,
17
+ import("..").ServiceInputTypes,
18
+ import("..").ServiceOutputTypes
19
+ >;
20
+ new (
21
+ input: PutDataCatalogExportConfigurationCommandInput,
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ PutDataCatalogExportConfigurationCommandInput,
24
+ PutDataCatalogExportConfigurationCommandOutput,
25
+ import("..").GlueClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
28
+ >;
29
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
+ };
31
+ export declare class PutDataCatalogExportConfigurationCommand extends PutDataCatalogExportConfigurationCommand_base {
32
+ protected static __types: {
33
+ api: {
34
+ input: PutDataCatalogExportConfigurationInput;
35
+ output: PutDataCatalogExportConfigurationOutput;
36
+ };
37
+ sdk: {
38
+ input: PutDataCatalogExportConfigurationCommandInput;
39
+ output: PutDataCatalogExportConfigurationCommandOutput;
40
+ };
41
+ };
42
+ }
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { RunStatementRequest, RunStatementResponse } from "../models/models_2";
2
+ import { RunStatementRequest, RunStatementResponse } from "../models/models_3";
3
3
  export { __MetadataBearer };
4
4
  export interface RunStatementCommandInput extends RunStatementRequest {}
5
5
  export interface RunStatementCommandOutput extends RunStatementResponse, __MetadataBearer {}
@@ -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";
@@ -969,6 +969,19 @@ export declare const CatalogEncryptionMode: {
969
969
  };
970
970
  export type CatalogEncryptionMode =
971
971
  (typeof CatalogEncryptionMode)[keyof typeof CatalogEncryptionMode];
972
+ export declare const ExportSetting: {
973
+ readonly DISABLED: "DISABLED";
974
+ readonly ENABLED: "ENABLED";
975
+ };
976
+ export type ExportSetting = (typeof ExportSetting)[keyof typeof ExportSetting];
977
+ export declare const ExportStatus: {
978
+ readonly DISABLED: "DISABLED";
979
+ readonly DISABLING: "DISABLING";
980
+ readonly ENABLED: "ENABLED";
981
+ readonly ENABLING: "ENABLING";
982
+ readonly FAILED: "FAILED";
983
+ };
984
+ export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
972
985
  export declare const DataQualityModelStatus: {
973
986
  readonly FAILED: "FAILED";
974
987
  readonly RUNNING: "RUNNING";
@@ -11,6 +11,8 @@ import {
11
11
  DataQualityModelStatus,
12
12
  EnableHybridValues,
13
13
  ExistCondition,
14
+ ExportSetting,
15
+ ExportStatus,
14
16
  FieldName,
15
17
  FilterOperator,
16
18
  FunctionType,
@@ -31,7 +33,6 @@ import {
31
33
  SchemaDiffType,
32
34
  SchemaStatus,
33
35
  SchemaVersionStatus,
34
- SearchFilterOperator,
35
36
  SortDirectionType,
36
37
  StatementState,
37
38
  StatisticEvaluationLevel,
@@ -110,6 +111,19 @@ export interface DataCatalogEncryptionSettings {
110
111
  export interface GetDataCatalogEncryptionSettingsResponse {
111
112
  DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
112
113
  }
114
+ export interface GetDataCatalogExportConfigurationInput {}
115
+ export interface ExportEncryptionConfiguration {
116
+ SseAlgorithm?: string | undefined;
117
+ KmsKeyArn?: string | undefined;
118
+ }
119
+ export interface GetDataCatalogExportConfigurationOutput {
120
+ ExportSetting?: ExportSetting | undefined;
121
+ Status?: ExportStatus | undefined;
122
+ EncryptionConfiguration?: ExportEncryptionConfiguration | undefined;
123
+ S3TableBucketArn?: string | undefined;
124
+ CreatedAt?: Date | undefined;
125
+ UpdatedAt?: Date | undefined;
126
+ }
113
127
  export interface GetDataflowGraphRequest {
114
128
  PythonScript?: string | undefined;
115
129
  }
@@ -1581,6 +1595,15 @@ export interface PutDataCatalogEncryptionSettingsRequest {
1581
1595
  DataCatalogEncryptionSettings: DataCatalogEncryptionSettings | undefined;
1582
1596
  }
1583
1597
  export interface PutDataCatalogEncryptionSettingsResponse {}
1598
+ export interface PutDataCatalogExportConfigurationInput {
1599
+ ExportSetting: ExportSetting | undefined;
1600
+ EncryptionConfiguration?: ExportEncryptionConfiguration | undefined;
1601
+ ClientToken?: string | undefined;
1602
+ }
1603
+ export interface PutDataCatalogExportConfigurationOutput {
1604
+ ExportSetting?: ExportSetting | undefined;
1605
+ EncryptionConfiguration?: ExportEncryptionConfiguration | undefined;
1606
+ }
1584
1607
  export interface PutDataQualityProfileAnnotationRequest {
1585
1608
  ProfileId: string | undefined;
1586
1609
  InclusionAnnotation: InclusionAnnotationValue | undefined;
@@ -1759,59 +1782,3 @@ export interface ResumeWorkflowRunResponse {
1759
1782
  RunId?: string | undefined;
1760
1783
  NodeIds?: string[] | undefined;
1761
1784
  }
1762
- export interface RunStatementRequest {
1763
- SessionId: string | undefined;
1764
- Code: string | undefined;
1765
- RequestOrigin?: string | undefined;
1766
- }
1767
- export interface RunStatementResponse {
1768
- Id?: number | undefined;
1769
- }
1770
- export type SearchFilterValue =
1771
- | SearchFilterValue.LongValueMember
1772
- | SearchFilterValue.StringValueMember
1773
- | SearchFilterValue.$UnknownMember;
1774
- export declare namespace SearchFilterValue {
1775
- interface StringValueMember {
1776
- StringValue: string;
1777
- LongValue?: never;
1778
- $unknown?: never;
1779
- }
1780
- interface LongValueMember {
1781
- StringValue?: never;
1782
- LongValue: number;
1783
- $unknown?: never;
1784
- }
1785
- interface $UnknownMember {
1786
- StringValue?: never;
1787
- LongValue?: never;
1788
- $unknown: [string, any];
1789
- }
1790
- interface Visitor<T> {
1791
- StringValue: (value: string) => T;
1792
- LongValue: (value: number) => T;
1793
- _: (name: string, value: any) => T;
1794
- }
1795
- }
1796
- export interface SearchAttributeFilter {
1797
- Attribute: string | undefined;
1798
- Operator: SearchFilterOperator | undefined;
1799
- Value?: SearchFilterValue | undefined;
1800
- }
1801
- export type SearchMapFilterValue =
1802
- | SearchMapFilterValue.StringValueMember
1803
- | SearchMapFilterValue.$UnknownMember;
1804
- export declare namespace SearchMapFilterValue {
1805
- interface StringValueMember {
1806
- StringValue: string;
1807
- $unknown?: never;
1808
- }
1809
- interface $UnknownMember {
1810
- StringValue?: never;
1811
- $unknown: [string, any];
1812
- }
1813
- interface Visitor<T> {
1814
- StringValue: (value: string) => T;
1815
- _: (name: string, value: any) => T;
1816
- }
1817
- }
@@ -12,6 +12,7 @@ import {
12
12
  ResourceAction,
13
13
  ResourceShareType,
14
14
  ResourceState,
15
+ SearchFilterOperator,
15
16
  SearchSortOrder,
16
17
  Sort,
17
18
  SourceControlAuthStrategy,
@@ -148,11 +149,65 @@ import {
148
149
  FederatedTable,
149
150
  IcebergTableMetadata,
150
151
  SchemaVersionNumber,
151
- SearchAttributeFilter,
152
- SearchMapFilterValue,
153
152
  ViewDefinition,
154
153
  ViewValidation,
155
154
  } from "./models_2";
155
+ export interface RunStatementRequest {
156
+ SessionId: string | undefined;
157
+ Code: string | undefined;
158
+ RequestOrigin?: string | undefined;
159
+ }
160
+ export interface RunStatementResponse {
161
+ Id?: number | undefined;
162
+ }
163
+ export type SearchFilterValue =
164
+ | SearchFilterValue.LongValueMember
165
+ | SearchFilterValue.StringValueMember
166
+ | SearchFilterValue.$UnknownMember;
167
+ export declare namespace SearchFilterValue {
168
+ interface StringValueMember {
169
+ StringValue: string;
170
+ LongValue?: never;
171
+ $unknown?: never;
172
+ }
173
+ interface LongValueMember {
174
+ StringValue?: never;
175
+ LongValue: number;
176
+ $unknown?: never;
177
+ }
178
+ interface $UnknownMember {
179
+ StringValue?: never;
180
+ LongValue?: never;
181
+ $unknown: [string, any];
182
+ }
183
+ interface Visitor<T> {
184
+ StringValue: (value: string) => T;
185
+ LongValue: (value: number) => T;
186
+ _: (name: string, value: any) => T;
187
+ }
188
+ }
189
+ export interface SearchAttributeFilter {
190
+ Attribute: string | undefined;
191
+ Operator: SearchFilterOperator | undefined;
192
+ Value?: SearchFilterValue | undefined;
193
+ }
194
+ export type SearchMapFilterValue =
195
+ | SearchMapFilterValue.StringValueMember
196
+ | SearchMapFilterValue.$UnknownMember;
197
+ export declare namespace SearchMapFilterValue {
198
+ interface StringValueMember {
199
+ StringValue: string;
200
+ $unknown?: never;
201
+ }
202
+ interface $UnknownMember {
203
+ StringValue?: never;
204
+ $unknown: [string, any];
205
+ }
206
+ interface Visitor<T> {
207
+ StringValue: (value: string) => T;
208
+ _: (name: string, value: any) => T;
209
+ }
210
+ }
156
211
  export interface SearchMapFilter {
157
212
  Attribute: string | undefined;
158
213
  Key: string | undefined;
@@ -434,6 +434,7 @@ export declare var EvaluationMetrics$: StaticStructureSchema;
434
434
  export declare var EventBatchingCondition$: StaticStructureSchema;
435
435
  export declare var ExecutionAttempt$: StaticStructureSchema;
436
436
  export declare var ExecutionProperty$: StaticStructureSchema;
437
+ export declare var ExportEncryptionConfiguration$: StaticStructureSchema;
437
438
  export declare var ExportLabelsTaskRunProperties$: StaticStructureSchema;
438
439
  export declare var ExtractedParameter$: StaticStructureSchema;
439
440
  export declare var FederatedCatalog$: StaticStructureSchema;
@@ -503,6 +504,8 @@ export declare var GetDatabasesRequest$: StaticStructureSchema;
503
504
  export declare var GetDatabasesResponse$: StaticStructureSchema;
504
505
  export declare var GetDataCatalogEncryptionSettingsRequest$: StaticStructureSchema;
505
506
  export declare var GetDataCatalogEncryptionSettingsResponse$: StaticStructureSchema;
507
+ export declare var GetDataCatalogExportConfigurationInput$: StaticStructureSchema;
508
+ export declare var GetDataCatalogExportConfigurationOutput$: StaticStructureSchema;
506
509
  export declare var GetDataflowGraphRequest$: StaticStructureSchema;
507
510
  export declare var GetDataflowGraphResponse$: StaticStructureSchema;
508
511
  export declare var GetDataQualityModelRequest$: StaticStructureSchema;
@@ -819,6 +822,8 @@ export declare var PutAttachmentRequest$: StaticStructureSchema;
819
822
  export declare var PutAttachmentResponse$: StaticStructureSchema;
820
823
  export declare var PutDataCatalogEncryptionSettingsRequest$: StaticStructureSchema;
821
824
  export declare var PutDataCatalogEncryptionSettingsResponse$: StaticStructureSchema;
825
+ export declare var PutDataCatalogExportConfigurationInput$: StaticStructureSchema;
826
+ export declare var PutDataCatalogExportConfigurationOutput$: StaticStructureSchema;
822
827
  export declare var PutDataQualityProfileAnnotationRequest$: StaticStructureSchema;
823
828
  export declare var PutDataQualityProfileAnnotationResponse$: StaticStructureSchema;
824
829
  export declare var PutFormTypeRequest$: StaticStructureSchema;
@@ -1238,6 +1243,7 @@ export declare var GetDashboardUrl$: StaticOperationSchema;
1238
1243
  export declare var GetDatabase$: StaticOperationSchema;
1239
1244
  export declare var GetDatabases$: StaticOperationSchema;
1240
1245
  export declare var GetDataCatalogEncryptionSettings$: StaticOperationSchema;
1246
+ export declare var GetDataCatalogExportConfiguration$: StaticOperationSchema;
1241
1247
  export declare var GetDataflowGraph$: StaticOperationSchema;
1242
1248
  export declare var GetDataQualityModel$: StaticOperationSchema;
1243
1249
  export declare var GetDataQualityModelResult$: StaticOperationSchema;
@@ -1337,6 +1343,7 @@ export declare var PutAsset$: StaticOperationSchema;
1337
1343
  export declare var PutAssetType$: StaticOperationSchema;
1338
1344
  export declare var PutAttachment$: StaticOperationSchema;
1339
1345
  export declare var PutDataCatalogEncryptionSettings$: StaticOperationSchema;
1346
+ export declare var PutDataCatalogExportConfiguration$: StaticOperationSchema;
1340
1347
  export declare var PutDataQualityProfileAnnotation$: StaticOperationSchema;
1341
1348
  export declare var PutFormType$: StaticOperationSchema;
1342
1349
  export declare var PutResourcePolicy$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
- "version": "3.1103.0",
3
+ "version": "3.1104.0",
4
4
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-glue",
6
6
  "license": "Apache-2.0",