@aws-sdk/client-glue 3.1102.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 +3 -3
@@ -0,0 +1,89 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { GetDataCatalogExportConfigurationInput, GetDataCatalogExportConfigurationOutput } from "../models/models_2";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link GetDataCatalogExportConfigurationCommand}.
11
+ */
12
+ export interface GetDataCatalogExportConfigurationCommandInput extends GetDataCatalogExportConfigurationInput {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link GetDataCatalogExportConfigurationCommand}.
18
+ */
19
+ export interface GetDataCatalogExportConfigurationCommandOutput extends GetDataCatalogExportConfigurationOutput, __MetadataBearer {
20
+ }
21
+ declare const GetDataCatalogExportConfigurationCommand_base: {
22
+ new (input: GetDataCatalogExportConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetDataCatalogExportConfigurationCommandInput, GetDataCatalogExportConfigurationCommandOutput, import("..").GlueClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetDataCatalogExportConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<GetDataCatalogExportConfigurationCommandInput, GetDataCatalogExportConfigurationCommandOutput, import("..").GlueClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Retrieves the current export configuration for the Glue Data Catalog. The export configuration controls whether catalog metadata is exported to S3 Tables.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { GlueClient, GetDataCatalogExportConfigurationCommand } from "@aws-sdk/client-glue"; // ES Modules import
32
+ * // const { GlueClient, GetDataCatalogExportConfigurationCommand } = require("@aws-sdk/client-glue"); // CommonJS import
33
+ * // import type { GlueClientConfig } from "@aws-sdk/client-glue";
34
+ * const config = {}; // type is GlueClientConfig
35
+ * const client = new GlueClient(config);
36
+ * const input = {};
37
+ * const command = new GetDataCatalogExportConfigurationCommand(input);
38
+ * const response = await client.send(command);
39
+ * // { // GetDataCatalogExportConfigurationOutput
40
+ * // ExportSetting: "ENABLED" || "DISABLED",
41
+ * // Status: "ENABLING" || "ENABLED" || "DISABLING" || "DISABLED" || "FAILED",
42
+ * // EncryptionConfiguration: { // ExportEncryptionConfiguration
43
+ * // SseAlgorithm: "STRING_VALUE",
44
+ * // KmsKeyArn: "STRING_VALUE",
45
+ * // },
46
+ * // S3TableBucketArn: "STRING_VALUE",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // UpdatedAt: new Date("TIMESTAMP"),
49
+ * // };
50
+ *
51
+ * ```
52
+ *
53
+ * @param GetDataCatalogExportConfigurationCommandInput - {@link GetDataCatalogExportConfigurationCommandInput}
54
+ * @returns {@link GetDataCatalogExportConfigurationCommandOutput}
55
+ * @see {@link GetDataCatalogExportConfigurationCommandInput} for command's `input` shape.
56
+ * @see {@link GetDataCatalogExportConfigurationCommandOutput} for command's `response` shape.
57
+ * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
58
+ *
59
+ * @throws {@link EntityNotFoundException} (client fault)
60
+ * <p>A specified entity does not exist</p>
61
+ *
62
+ * @throws {@link InternalServiceException} (server fault)
63
+ * <p>An internal service error occurred.</p>
64
+ *
65
+ * @throws {@link InvalidInputException} (client fault)
66
+ * <p>The input provided was not valid.</p>
67
+ *
68
+ * @throws {@link ThrottlingException} (client fault)
69
+ * <p>The throttling threshhold was exceeded.</p>
70
+ *
71
+ * @throws {@link GlueServiceException}
72
+ * <p>Base exception class for all service exceptions from Glue service.</p>
73
+ *
74
+ *
75
+ * @public
76
+ */
77
+ export declare class GetDataCatalogExportConfigurationCommand extends GetDataCatalogExportConfigurationCommand_base {
78
+ /** @internal type navigation helper, not in runtime. */
79
+ protected static __types: {
80
+ api: {
81
+ input: {};
82
+ output: GetDataCatalogExportConfigurationOutput;
83
+ };
84
+ sdk: {
85
+ input: GetDataCatalogExportConfigurationCommandInput;
86
+ output: GetDataCatalogExportConfigurationCommandOutput;
87
+ };
88
+ };
89
+ }
@@ -0,0 +1,95 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { PutDataCatalogExportConfigurationInput, PutDataCatalogExportConfigurationOutput } from "../models/models_2";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link PutDataCatalogExportConfigurationCommand}.
11
+ */
12
+ export interface PutDataCatalogExportConfigurationCommandInput extends PutDataCatalogExportConfigurationInput {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link PutDataCatalogExportConfigurationCommand}.
18
+ */
19
+ export interface PutDataCatalogExportConfigurationCommandOutput extends PutDataCatalogExportConfigurationOutput, __MetadataBearer {
20
+ }
21
+ declare const PutDataCatalogExportConfigurationCommand_base: {
22
+ new (input: PutDataCatalogExportConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutDataCatalogExportConfigurationCommandInput, PutDataCatalogExportConfigurationCommandOutput, import("..").GlueClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutDataCatalogExportConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutDataCatalogExportConfigurationCommandInput, PutDataCatalogExportConfigurationCommandOutput, import("..").GlueClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Creates or updates the export configuration for the Glue Data Catalog. Use this operation to enable or disable the export of catalog metadata to S3 Tables.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { GlueClient, PutDataCatalogExportConfigurationCommand } from "@aws-sdk/client-glue"; // ES Modules import
32
+ * // const { GlueClient, PutDataCatalogExportConfigurationCommand } = require("@aws-sdk/client-glue"); // CommonJS import
33
+ * // import type { GlueClientConfig } from "@aws-sdk/client-glue";
34
+ * const config = {}; // type is GlueClientConfig
35
+ * const client = new GlueClient(config);
36
+ * const input = { // PutDataCatalogExportConfigurationInput
37
+ * ExportSetting: "ENABLED" || "DISABLED", // required
38
+ * EncryptionConfiguration: { // ExportEncryptionConfiguration
39
+ * SseAlgorithm: "STRING_VALUE",
40
+ * KmsKeyArn: "STRING_VALUE",
41
+ * },
42
+ * ClientToken: "STRING_VALUE",
43
+ * };
44
+ * const command = new PutDataCatalogExportConfigurationCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // PutDataCatalogExportConfigurationOutput
47
+ * // ExportSetting: "ENABLED" || "DISABLED",
48
+ * // EncryptionConfiguration: { // ExportEncryptionConfiguration
49
+ * // SseAlgorithm: "STRING_VALUE",
50
+ * // KmsKeyArn: "STRING_VALUE",
51
+ * // },
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param PutDataCatalogExportConfigurationCommandInput - {@link PutDataCatalogExportConfigurationCommandInput}
57
+ * @returns {@link PutDataCatalogExportConfigurationCommandOutput}
58
+ * @see {@link PutDataCatalogExportConfigurationCommandInput} for command's `input` shape.
59
+ * @see {@link PutDataCatalogExportConfigurationCommandOutput} for command's `response` shape.
60
+ * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>Access to a resource was denied.</p>
64
+ *
65
+ * @throws {@link ConflictException} (client fault)
66
+ * <p>The <code>CreatePartitions</code> API was called on a table that has indexes enabled. </p>
67
+ *
68
+ * @throws {@link InternalServiceException} (server fault)
69
+ * <p>An internal service error occurred.</p>
70
+ *
71
+ * @throws {@link InvalidInputException} (client fault)
72
+ * <p>The input provided was not valid.</p>
73
+ *
74
+ * @throws {@link ThrottlingException} (client fault)
75
+ * <p>The throttling threshhold was exceeded.</p>
76
+ *
77
+ * @throws {@link GlueServiceException}
78
+ * <p>Base exception class for all service exceptions from Glue service.</p>
79
+ *
80
+ *
81
+ * @public
82
+ */
83
+ export declare class PutDataCatalogExportConfigurationCommand extends PutDataCatalogExportConfigurationCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: PutDataCatalogExportConfigurationInput;
88
+ output: PutDataCatalogExportConfigurationOutput;
89
+ };
90
+ sdk: {
91
+ input: PutDataCatalogExportConfigurationCommandInput;
92
+ output: PutDataCatalogExportConfigurationCommandOutput;
93
+ };
94
+ };
95
+ }
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { RunStatementRequest, RunStatementResponse } from "../models/models_2";
2
+ import type { RunStatementRequest, RunStatementResponse } from "../models/models_3";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -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";
@@ -1740,6 +1740,33 @@ export declare const CatalogEncryptionMode: {
1740
1740
  * @public
1741
1741
  */
1742
1742
  export type CatalogEncryptionMode = (typeof CatalogEncryptionMode)[keyof typeof CatalogEncryptionMode];
1743
+ /**
1744
+ * @public
1745
+ * @enum
1746
+ */
1747
+ export declare const ExportSetting: {
1748
+ readonly DISABLED: "DISABLED";
1749
+ readonly ENABLED: "ENABLED";
1750
+ };
1751
+ /**
1752
+ * @public
1753
+ */
1754
+ export type ExportSetting = (typeof ExportSetting)[keyof typeof ExportSetting];
1755
+ /**
1756
+ * @public
1757
+ * @enum
1758
+ */
1759
+ export declare const ExportStatus: {
1760
+ readonly DISABLED: "DISABLED";
1761
+ readonly DISABLING: "DISABLING";
1762
+ readonly ENABLED: "ENABLED";
1763
+ readonly ENABLING: "ENABLING";
1764
+ readonly FAILED: "FAILED";
1765
+ };
1766
+ /**
1767
+ * @public
1768
+ */
1769
+ export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
1743
1770
  /**
1744
1771
  * @public
1745
1772
  * @enum
@@ -1,5 +1,5 @@
1
1
  import type { DocumentType as __DocumentType } from "@smithy/types";
2
- import type { AuthenticationType, BackfillErrorCode, Compatibility, ConnectionType, ConnectorOAuth2GrantType, ContentType, CrawlerHistoryState, DataFormat, DataQualityModelStatus, EnableHybridValues, ExistCondition, FieldName, FilterOperator, FunctionType, HTTPMethod, InclusionAnnotationValue, IntegrationStatus, IntegrationType, Language, LastRefreshType, MaterializedViewRefreshState, MaterializedViewRefreshType, PartitionIndexStatus, Permission, PermissionType, PrincipalType, RegistryStatus, ResourceState, SchemaDiffType, SchemaStatus, SchemaVersionStatus, SearchFilterOperator, SortDirectionType, StatementState, StatisticEvaluationLevel, TableAttributes, TableOptimizerType, TaskRunSortColumnType, TaskStatusType, TaskType, TransformSortColumnType, TransformStatusType, TransformType, ViewDialect, WorkerType } from "./enums";
2
+ import type { AuthenticationType, BackfillErrorCode, Compatibility, ConnectionType, ConnectorOAuth2GrantType, ContentType, CrawlerHistoryState, DataFormat, DataQualityModelStatus, EnableHybridValues, ExistCondition, ExportSetting, ExportStatus, FieldName, FilterOperator, FunctionType, HTTPMethod, InclusionAnnotationValue, IntegrationStatus, IntegrationType, Language, LastRefreshType, MaterializedViewRefreshState, MaterializedViewRefreshType, PartitionIndexStatus, Permission, PermissionType, PrincipalType, RegistryStatus, ResourceState, SchemaDiffType, SchemaStatus, SchemaVersionStatus, SortDirectionType, StatementState, StatisticEvaluationLevel, TableAttributes, TableOptimizerType, TaskRunSortColumnType, TaskStatusType, TaskType, TransformSortColumnType, TransformStatusType, TransformType, ViewDialect, WorkerType } from "./enums";
3
3
  import type { AssetFormEntry, AssetTypeFormReference, AssetTypeItem, AuditContext, CustomEntityType, DataQualityAggregatedMetrics, DataQualityAnalyzerResult, DataQualityEvaluationRunAdditionalRunOptions, DataQualityObservation, DataQualityRuleResult, DataSource, DevEndpoint, DistributionData, ErrorDetail, GlueTable, JobRun, Partition, PartitionValueList, QuerySessionContext, SchemaId, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TimestampedInclusionAnnotation, Trigger, Workflow, WorkflowRun } from "./models_0";
4
4
  import type { Capabilities, CodeGenEdge, CodeGenNode, CodeGenNodeArg, ConnectionPasswordEncryption, ConnectorProperty, DataQualityTargetTable, EncryptionAtRest, EncryptionConfiguration, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, IntegrationConfig, IntegrationError, ProfileConfiguration, RegistryId, ResourceUri, RestConfiguration, Session, SourceProcessingProperties, SourceTableConfig, Tag, TargetProcessingProperties, TargetTableConfig, TransformEncryption, TransformParameters } from "./models_1";
5
5
  /**
@@ -32,6 +32,62 @@ export interface GetDataCatalogEncryptionSettingsResponse {
32
32
  */
33
33
  DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
34
34
  }
35
+ /**
36
+ * @public
37
+ */
38
+ export interface GetDataCatalogExportConfigurationInput {
39
+ }
40
+ /**
41
+ * <p>The encryption configuration for exported data catalog metadata.</p>
42
+ * @public
43
+ */
44
+ export interface ExportEncryptionConfiguration {
45
+ /**
46
+ * <p>The server-side encryption algorithm used for the exported data. Valid values are <code>AES256</code> and <code>aws:kms</code>.</p>
47
+ * @public
48
+ */
49
+ SseAlgorithm?: string | undefined;
50
+ /**
51
+ * <p>The ARN of the KMS key used to encrypt the exported data.</p>
52
+ * @public
53
+ */
54
+ KmsKeyArn?: string | undefined;
55
+ }
56
+ /**
57
+ * @public
58
+ */
59
+ export interface GetDataCatalogExportConfigurationOutput {
60
+ /**
61
+ * <p>The export setting for the data catalog. Valid values are <code>ENABLED</code> and <code>DISABLED</code>.</p>
62
+ * @public
63
+ */
64
+ ExportSetting?: ExportSetting | undefined;
65
+ /**
66
+ * <p>The current status of the export. Valid values are <code>ENABLING</code>, <code>ENABLED</code>, <code>DISABLING</code>, <code>DISABLED</code>, and <code>FAILED</code>.</p>
67
+ * @public
68
+ */
69
+ Status?: ExportStatus | undefined;
70
+ /**
71
+ * <p>The encryption configuration for the exported data.</p>
72
+ * @public
73
+ */
74
+ EncryptionConfiguration?: ExportEncryptionConfiguration | undefined;
75
+ /**
76
+ * <p>The ARN of the S3 Tables bucket where catalog metadata is exported.</p>
77
+ * @public
78
+ */
79
+ S3TableBucketArn?: string | undefined;
80
+ /**
81
+ * <p>The timestamp at which the export configuration was created.</p>
82
+ * @public
83
+ */
84
+ CreatedAt?: Date | undefined;
85
+ /**
86
+ * <p>The timestamp at which the export configuration was last updated.</p>
87
+ * @public
88
+ */
89
+ UpdatedAt?: Date | undefined;
90
+ }
35
91
  /**
36
92
  * @public
37
93
  */
@@ -6759,6 +6815,41 @@ export interface PutDataCatalogEncryptionSettingsRequest {
6759
6815
  */
6760
6816
  export interface PutDataCatalogEncryptionSettingsResponse {
6761
6817
  }
6818
+ /**
6819
+ * @public
6820
+ */
6821
+ export interface PutDataCatalogExportConfigurationInput {
6822
+ /**
6823
+ * <p>The export setting for the data catalog. Specify <code>ENABLED</code> to start exporting catalog metadata to S3 Tables, or <code>DISABLED</code> to stop exporting. This field is required.</p>
6824
+ * @public
6825
+ */
6826
+ ExportSetting: ExportSetting | undefined;
6827
+ /**
6828
+ * <p>The encryption configuration for the exported data. If not specified, the default encryption settings are used.</p>
6829
+ * @public
6830
+ */
6831
+ EncryptionConfiguration?: ExportEncryptionConfiguration | undefined;
6832
+ /**
6833
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
6834
+ * @public
6835
+ */
6836
+ ClientToken?: string | undefined;
6837
+ }
6838
+ /**
6839
+ * @public
6840
+ */
6841
+ export interface PutDataCatalogExportConfigurationOutput {
6842
+ /**
6843
+ * <p>The export setting for the data catalog.</p>
6844
+ * @public
6845
+ */
6846
+ ExportSetting?: ExportSetting | undefined;
6847
+ /**
6848
+ * <p>The encryption configuration for the exported data.</p>
6849
+ * @public
6850
+ */
6851
+ EncryptionConfiguration?: ExportEncryptionConfiguration | undefined;
6852
+ }
6762
6853
  /**
6763
6854
  * @public
6764
6855
  */
@@ -7534,132 +7625,3 @@ export interface ResumeWorkflowRunResponse {
7534
7625
  */
7535
7626
  NodeIds?: string[] | undefined;
7536
7627
  }
7537
- /**
7538
- * @public
7539
- */
7540
- export interface RunStatementRequest {
7541
- /**
7542
- * <p>The Session Id of the statement to be run.</p>
7543
- * @public
7544
- */
7545
- SessionId: string | undefined;
7546
- /**
7547
- * <p>The statement code to be run.</p>
7548
- * @public
7549
- */
7550
- Code: string | undefined;
7551
- /**
7552
- * <p>The origin of the request.</p>
7553
- * @public
7554
- */
7555
- RequestOrigin?: string | undefined;
7556
- }
7557
- /**
7558
- * @public
7559
- */
7560
- export interface RunStatementResponse {
7561
- /**
7562
- * <p>Returns the Id of the statement that was run.</p>
7563
- * @public
7564
- */
7565
- Id?: number | undefined;
7566
- }
7567
- /**
7568
- * <p>A filter value. Exactly one of <code>stringValue</code> or <code>longValue</code> must be specified.</p>
7569
- * @public
7570
- */
7571
- export type SearchFilterValue = SearchFilterValue.LongValueMember | SearchFilterValue.StringValueMember | SearchFilterValue.$UnknownMember;
7572
- /**
7573
- * @public
7574
- */
7575
- export declare namespace SearchFilterValue {
7576
- /**
7577
- * <p>A string filter value.</p>
7578
- * @public
7579
- */
7580
- interface StringValueMember {
7581
- StringValue: string;
7582
- LongValue?: never;
7583
- $unknown?: never;
7584
- }
7585
- /**
7586
- * <p>A long integer filter value.</p>
7587
- * @public
7588
- */
7589
- interface LongValueMember {
7590
- StringValue?: never;
7591
- LongValue: number;
7592
- $unknown?: never;
7593
- }
7594
- /**
7595
- * @public
7596
- */
7597
- interface $UnknownMember {
7598
- StringValue?: never;
7599
- LongValue?: never;
7600
- $unknown: [string, any];
7601
- }
7602
- /**
7603
- * @deprecated unused in schema-serde mode.
7604
- *
7605
- */
7606
- interface Visitor<T> {
7607
- StringValue: (value: string) => T;
7608
- LongValue: (value: number) => T;
7609
- _: (name: string, value: any) => T;
7610
- }
7611
- }
7612
- /**
7613
- * <p>A filter that compares an attribute value using an operator.</p>
7614
- * @public
7615
- */
7616
- export interface SearchAttributeFilter {
7617
- /**
7618
- * <p>The attribute name to filter on.</p>
7619
- * @public
7620
- */
7621
- Attribute: string | undefined;
7622
- /**
7623
- * <p>The comparison operator. Valid values are <code>equals</code>, <code>greaterThan</code>, <code>greaterThanOrEquals</code>, <code>lessThan</code>, <code>lessThanOrEquals</code>, and <code>notExists</code>.</p>
7624
- * @public
7625
- */
7626
- Operator: SearchFilterOperator | undefined;
7627
- /**
7628
- * <p>The value to compare against.</p>
7629
- * @public
7630
- */
7631
- Value?: SearchFilterValue | undefined;
7632
- }
7633
- /**
7634
- * <p>A map filter value. Currently supports string comparison only.</p>
7635
- * @public
7636
- */
7637
- export type SearchMapFilterValue = SearchMapFilterValue.StringValueMember | SearchMapFilterValue.$UnknownMember;
7638
- /**
7639
- * @public
7640
- */
7641
- export declare namespace SearchMapFilterValue {
7642
- /**
7643
- * <p>A string filter value.</p>
7644
- * @public
7645
- */
7646
- interface StringValueMember {
7647
- StringValue: string;
7648
- $unknown?: never;
7649
- }
7650
- /**
7651
- * @public
7652
- */
7653
- interface $UnknownMember {
7654
- StringValue?: never;
7655
- $unknown: [string, any];
7656
- }
7657
- /**
7658
- * @deprecated unused in schema-serde mode.
7659
- *
7660
- */
7661
- interface Visitor<T> {
7662
- StringValue: (value: string) => T;
7663
- _: (name: string, value: any) => T;
7664
- }
7665
- }
@@ -1,7 +1,136 @@
1
- import type { Comparator, Compatibility, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, ExecutionClass, IcebergUpdateAction, JobMode, Permission, ResourceAction, ResourceShareType, ResourceState, SearchSortOrder, Sort, SourceControlAuthStrategy, SourceControlProvider, TableOptimizerType, ViewUpdateAction, WorkerType } from "./enums";
1
+ import type { Comparator, Compatibility, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, ExecutionClass, IcebergUpdateAction, JobMode, Permission, ResourceAction, ResourceShareType, ResourceState, SearchFilterOperator, SearchSortOrder, Sort, SourceControlAuthStrategy, SourceControlProvider, TableOptimizerType, ViewUpdateAction, WorkerType } from "./enums";
2
2
  import type { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogInput, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataQualityEvaluationRunAdditionalRunOptions, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, DynamoDBELTConnectorSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, Route, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogIcebergSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergCatalogTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlDetails, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, Trigger, Union } from "./models_0";
3
3
  import type { ColumnStatistics, ConnectionInput, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
4
- import type { ColumnRowFilter, DataQualityRuleRecommendationRunAdditionalRunOptions, FederatedTable, IcebergTableMetadata, SchemaVersionNumber, SearchAttributeFilter, SearchMapFilterValue, ViewDefinition, ViewValidation } from "./models_2";
4
+ import type { ColumnRowFilter, DataQualityRuleRecommendationRunAdditionalRunOptions, FederatedTable, IcebergTableMetadata, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface RunStatementRequest {
9
+ /**
10
+ * <p>The Session Id of the statement to be run.</p>
11
+ * @public
12
+ */
13
+ SessionId: string | undefined;
14
+ /**
15
+ * <p>The statement code to be run.</p>
16
+ * @public
17
+ */
18
+ Code: string | undefined;
19
+ /**
20
+ * <p>The origin of the request.</p>
21
+ * @public
22
+ */
23
+ RequestOrigin?: string | undefined;
24
+ }
25
+ /**
26
+ * @public
27
+ */
28
+ export interface RunStatementResponse {
29
+ /**
30
+ * <p>Returns the Id of the statement that was run.</p>
31
+ * @public
32
+ */
33
+ Id?: number | undefined;
34
+ }
35
+ /**
36
+ * <p>A filter value. Exactly one of <code>stringValue</code> or <code>longValue</code> must be specified.</p>
37
+ * @public
38
+ */
39
+ export type SearchFilterValue = SearchFilterValue.LongValueMember | SearchFilterValue.StringValueMember | SearchFilterValue.$UnknownMember;
40
+ /**
41
+ * @public
42
+ */
43
+ export declare namespace SearchFilterValue {
44
+ /**
45
+ * <p>A string filter value.</p>
46
+ * @public
47
+ */
48
+ interface StringValueMember {
49
+ StringValue: string;
50
+ LongValue?: never;
51
+ $unknown?: never;
52
+ }
53
+ /**
54
+ * <p>A long integer filter value.</p>
55
+ * @public
56
+ */
57
+ interface LongValueMember {
58
+ StringValue?: never;
59
+ LongValue: number;
60
+ $unknown?: never;
61
+ }
62
+ /**
63
+ * @public
64
+ */
65
+ interface $UnknownMember {
66
+ StringValue?: never;
67
+ LongValue?: never;
68
+ $unknown: [string, any];
69
+ }
70
+ /**
71
+ * @deprecated unused in schema-serde mode.
72
+ *
73
+ */
74
+ interface Visitor<T> {
75
+ StringValue: (value: string) => T;
76
+ LongValue: (value: number) => T;
77
+ _: (name: string, value: any) => T;
78
+ }
79
+ }
80
+ /**
81
+ * <p>A filter that compares an attribute value using an operator.</p>
82
+ * @public
83
+ */
84
+ export interface SearchAttributeFilter {
85
+ /**
86
+ * <p>The attribute name to filter on.</p>
87
+ * @public
88
+ */
89
+ Attribute: string | undefined;
90
+ /**
91
+ * <p>The comparison operator. Valid values are <code>equals</code>, <code>greaterThan</code>, <code>greaterThanOrEquals</code>, <code>lessThan</code>, <code>lessThanOrEquals</code>, and <code>notExists</code>.</p>
92
+ * @public
93
+ */
94
+ Operator: SearchFilterOperator | undefined;
95
+ /**
96
+ * <p>The value to compare against.</p>
97
+ * @public
98
+ */
99
+ Value?: SearchFilterValue | undefined;
100
+ }
101
+ /**
102
+ * <p>A map filter value. Currently supports string comparison only.</p>
103
+ * @public
104
+ */
105
+ export type SearchMapFilterValue = SearchMapFilterValue.StringValueMember | SearchMapFilterValue.$UnknownMember;
106
+ /**
107
+ * @public
108
+ */
109
+ export declare namespace SearchMapFilterValue {
110
+ /**
111
+ * <p>A string filter value.</p>
112
+ * @public
113
+ */
114
+ interface StringValueMember {
115
+ StringValue: string;
116
+ $unknown?: never;
117
+ }
118
+ /**
119
+ * @public
120
+ */
121
+ interface $UnknownMember {
122
+ StringValue?: never;
123
+ $unknown: [string, any];
124
+ }
125
+ /**
126
+ * @deprecated unused in schema-serde mode.
127
+ *
128
+ */
129
+ interface Visitor<T> {
130
+ StringValue: (value: string) => T;
131
+ _: (name: string, value: any) => T;
132
+ }
133
+ }
5
134
  /**
6
135
  * <p>A filter on a map attribute's key-value pair.</p>
7
136
  * @public
@@ -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;