@aws-sdk/client-glue 3.1097.0 → 3.1098.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.
@@ -1,5 +1,5 @@
1
1
  import type { DocumentType as __DocumentType } from "@smithy/types";
2
- import type { AllowFullTableExternalDataAccessEnum, AuthenticationType, BlueprintRunState, CatalogEncryptionMode, CloudWatchEncryptionMode, ColumnStatisticsState, ColumnStatisticsType, Compatibility, ComputationType, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseAttributes, DataFormat, DataOperation, DataQualityEncryptionMode, ExecutionStatus, FieldDataType, FieldFilterOperator, FunctionType, GlueResourceType, HTTPMethod, IcebergNullOrder, IcebergSortDirection, IcebergStructTypeEnum, IntegrationStatus, JobBookmarksEncryptionMode, Language, LastRefreshType, MetadataOperation, MLUserDataEncryptionModeString, PrincipalType, PropertyLocation, PropertyType, RegistryStatus, ResourceShareType, ResourceType, S3EncryptionMode, ScheduleType, SchemaStatus, SchemaVersionStatus, SessionStatus, SessionType, SettingSource, TableOptimizerType, TransformType, TriggerType, UnnestSpec, ViewDialect, WorkerType } from "./enums";
2
+ import type { AllowFullTableExternalDataAccessEnum, AuthenticationType, BlueprintRunState, CatalogEncryptionMode, CloudWatchEncryptionMode, ColumnStatisticsState, ColumnStatisticsType, Compatibility, ComputationType, ComputeEnvironment, ConnectionPropertyKey, ConnectionStatus, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseAttributes, DataFormat, DataOperation, DataQualityEncryptionMode, ExecutionStatus, FieldDataType, FieldFilterOperator, FilterMode, FunctionType, GlueResourceType, HTTPMethod, IcebergNullOrder, IcebergSortDirection, IcebergStructTypeEnum, IntegrationStatus, JobBookmarksEncryptionMode, Language, LastRefreshType, MetadataOperation, MLUserDataEncryptionModeString, PrincipalType, PropertyLocation, PropertyType, RegistryStatus, ResourceShareType, ResourceType, S3EncryptionMode, ScheduleType, SchemaStatus, SchemaVersionStatus, SessionStatus, SessionType, SettingSource, TableOptimizerType, TransformType, TriggerType, UnnestSpec, ViewDialect, WorkerType } from "./enums";
3
3
  import type { Action, AssetFormEntry, AssetTypeFormReference, AuthConfiguration, AuthenticationConfiguration, AuthenticationConfigurationInput, Blueprint, Column, ConnectionsList, Crawler, CrawlerTargets, CreateCsvClassifierRequest, CreateGrokClassifierRequest, ErrorDetail, EventBatchingCondition, FederatedCatalog, GlueTable, LakeFormationConfiguration, LineageConfiguration, PartitionInput, Predicate, PrincipalPermissions, Property, RecrawlPolicy, Schedule, SchemaChangePolicy, SchemaId, StorageDescriptor, TableOptimizerConfiguration, TargetRedshiftCatalog } from "./models_0";
4
4
  /**
5
5
  * <p>Specifies a JSON classifier for <code>CreateClassifier</code> to create.</p>
@@ -4344,6 +4344,53 @@ export interface ComputeEnvironmentConfiguration {
4344
4344
  */
4345
4345
  PhysicalConnectionPropertiesRequired?: boolean | undefined;
4346
4346
  }
4347
+ /**
4348
+ * <p>Configuration that defines how BETWEEN range filter operations are translated into REST API request parameters.</p>
4349
+ * @public
4350
+ */
4351
+ export interface BetweenConfiguration {
4352
+ /**
4353
+ * <p>The parameter name used for the lower bound value in a BETWEEN filter operation.</p>
4354
+ * @public
4355
+ */
4356
+ LowBoundKey?: string | undefined;
4357
+ /**
4358
+ * <p>The parameter name used for the upper bound value in a BETWEEN filter operation.</p>
4359
+ * @public
4360
+ */
4361
+ HighBoundKey?: string | undefined;
4362
+ /**
4363
+ * <p>A template string for constructing the BETWEEN filter expression.</p>
4364
+ * @public
4365
+ */
4366
+ Template?: string | undefined;
4367
+ }
4368
+ /**
4369
+ * <p>Configuration that defines per-field overrides for filter behavior, allowing individual fields to customize how filter operations are applied.</p>
4370
+ * @public
4371
+ */
4372
+ export interface FilterOverrides {
4373
+ /**
4374
+ * <p>An override for the field name to use in filter expressions, if different from the schema field name.</p>
4375
+ * @public
4376
+ */
4377
+ FieldName?: string | undefined;
4378
+ /**
4379
+ * <p>A map of logical filter operators to their field-specific API representations, overriding the global operator mappings. Supported operator keys are: <code>EQUAL_TO</code>, <code>NOT_EQUAL_TO</code>, <code>LESS_THAN</code>, <code>GREATER_THAN</code>, <code>LESS_THAN_OR_EQUAL_TO</code>, <code>GREATER_THAN_OR_EQUAL_TO</code>, <code>CONTAINS</code>, <code>BETWEEN</code>, <code>AND</code>, and <code>OR</code>.</p>
4380
+ * @public
4381
+ */
4382
+ OperatorMappings?: Record<string, string> | undefined;
4383
+ /**
4384
+ * <p>Field-specific configuration for handling BETWEEN range filter operations.</p>
4385
+ * @public
4386
+ */
4387
+ BetweenConfiguration?: BetweenConfiguration | undefined;
4388
+ /**
4389
+ * <p>The date and time format for filter expressions on this field, overriding the global <code>DateTimeFormat</code>. Accepts Java <code>DateTimeFormatter</code> patterns (for example, <code>EEE, d MMM yyyy HH:mm:ss Z</code>), <code>EPOCH_SECONDS</code> for Unix epoch seconds, or <code>EPOCH_MILLIS</code> for Unix epoch milliseconds.</p>
4390
+ * @public
4391
+ */
4392
+ DateTimeFormat?: string | undefined;
4393
+ }
4347
4394
  /**
4348
4395
  * <p>Defines a field in an entity schema for REST connector data sources, specifying the field name and data type.</p>
4349
4396
  * @public
@@ -4359,6 +4406,93 @@ export interface FieldDefinition {
4359
4406
  * @public
4360
4407
  */
4361
4408
  FieldDataType: FieldDataType | undefined;
4409
+ /**
4410
+ * <p>The format pattern for parsing date values from API responses. Required when the API uses a non-ISO-8601 format. Accepts Java <code>DateTimeFormatter</code> patterns (for example, <code>EEE, d MMM yyyy HH:mm:ss Z</code>), <code>EPOCH_SECONDS</code> for Unix epoch seconds, or <code>EPOCH_MILLIS</code> for Unix epoch milliseconds.</p>
4411
+ * @public
4412
+ */
4413
+ ResponseDateFormat?: string | undefined;
4414
+ /**
4415
+ * <p>Indicates whether this field can be used for partitioning queries to the data source.</p>
4416
+ * @public
4417
+ */
4418
+ IsPartitionable?: boolean | undefined;
4419
+ /**
4420
+ * <p>Indicates whether this field can contain null values.</p>
4421
+ * @public
4422
+ */
4423
+ IsNullable?: boolean | undefined;
4424
+ /**
4425
+ * <p>Indicates whether this field can be used in filter predicates when querying data.</p>
4426
+ * @public
4427
+ */
4428
+ IsQueryable?: boolean | undefined;
4429
+ /**
4430
+ * <p>Indicates whether this field can be used for ordering results.</p>
4431
+ * @public
4432
+ */
4433
+ IsOrderable?: boolean | undefined;
4434
+ /**
4435
+ * <p>Per-field overrides for filter behavior, allowing customization of how filters are applied to this specific field.</p>
4436
+ * @public
4437
+ */
4438
+ FilterOverrides?: FilterOverrides | undefined;
4439
+ }
4440
+ /**
4441
+ * <p>Configuration for constructing filter expression strings when using the <code>FILTER_STRING</code> filter mode.</p>
4442
+ * @public
4443
+ */
4444
+ export interface FilterStringConfiguration {
4445
+ /**
4446
+ * <p>The query parameter name used to send the constructed filter expression string in API requests.</p>
4447
+ * @public
4448
+ */
4449
+ QueryParameterName: string | undefined;
4450
+ /**
4451
+ * <p>Indicates whether string and date values should be wrapped with a quote character in the filter expression.</p>
4452
+ * @public
4453
+ */
4454
+ QuoteStringValues?: boolean | undefined;
4455
+ /**
4456
+ * <p>The character used to quote values when <code>QuoteStringValues</code> is true. Defaults to double quotes if not specified.</p>
4457
+ * @public
4458
+ */
4459
+ QuoteCharacter?: string | undefined;
4460
+ }
4461
+ /**
4462
+ * <p>Configuration that defines how filter predicates are applied to REST API requests, supporting both query parameter and filter string strategies.</p>
4463
+ * @public
4464
+ */
4465
+ export interface FilterConfiguration {
4466
+ /**
4467
+ * <p>The strategy for applying filters to requests. Use <code>QUERY_PARAMS</code> to pass filters as individual query parameters, or <code>FILTER_STRING</code> to construct a single filter expression string.</p>
4468
+ * @public
4469
+ */
4470
+ FilterMode: FilterMode | undefined;
4471
+ /**
4472
+ * <p>A map of logical filter operators to their API-specific string representations. Supported operator keys are: <code>EQUAL_TO</code>, <code>NOT_EQUAL_TO</code>, <code>LESS_THAN</code>, <code>GREATER_THAN</code>, <code>LESS_THAN_OR_EQUAL_TO</code>, <code>GREATER_THAN_OR_EQUAL_TO</code>, <code>CONTAINS</code>, <code>BETWEEN</code>, <code>AND</code>, and <code>OR</code>.</p>
4473
+ * @public
4474
+ */
4475
+ OperatorMappings?: Record<string, string> | undefined;
4476
+ /**
4477
+ * <p>The global date and time format for filter expressions. Accepts Java <code>DateTimeFormatter</code> patterns (for example, <code>EEE, d MMM yyyy HH:mm:ss Z</code>), <code>EPOCH_SECONDS</code> for Unix epoch seconds, or <code>EPOCH_MILLIS</code> for Unix epoch milliseconds. If not specified, values are passed as-is in ISO-8601 format.</p>
4478
+ * @public
4479
+ */
4480
+ DateTimeFormat?: string | undefined;
4481
+ /**
4482
+ * <p>Indicates whether surrounding double quotes should be stripped from filter values before processing.</p>
4483
+ * @public
4484
+ */
4485
+ StripQuotes?: boolean | undefined;
4486
+ /**
4487
+ * <p>Configuration for handling BETWEEN range filter operations.</p>
4488
+ * @public
4489
+ */
4490
+ BetweenConfiguration?: BetweenConfiguration | undefined;
4491
+ /**
4492
+ * <p>Configuration for constructing filter expressions when <code>FilterMode</code> is set to <code>FILTER_STRING</code>.</p>
4493
+ * @public
4494
+ */
4495
+ FilterStringConfiguration?: FilterStringConfiguration | undefined;
4362
4496
  }
4363
4497
  /**
4364
4498
  * <p>Configuration that defines how to extract values from HTTP response content or headers for use in subsequent requests or parameter mapping.</p>
@@ -4490,6 +4624,11 @@ export interface ConnectorProperty {
4490
4624
  * @public
4491
4625
  */
4492
4626
  PropertyType: PropertyType | undefined;
4627
+ /**
4628
+ * <p>A format template for the property value that defines how the value should be formatted before sending it in API requests. Use <code>\{value\}</code> as a placeholder for the actual property value (for example, <code>SSWS \{value\}</code>).</p>
4629
+ * @public
4630
+ */
4631
+ Format?: string | undefined;
4493
4632
  }
4494
4633
  /**
4495
4634
  * <p>Configuration that defines how to parse JSON responses from REST API calls, including paths to result data and error information.</p>
@@ -4537,6 +4676,11 @@ export interface SourceConfiguration {
4537
4676
  * @public
4538
4677
  */
4539
4678
  PaginationConfiguration?: PaginationConfiguration | undefined;
4679
+ /**
4680
+ * <p>Configuration for applying filter pushdown to REST API requests, defining how filter predicates are translated into query parameters or filter strings.</p>
4681
+ * @public
4682
+ */
4683
+ FilterConfiguration?: FilterConfiguration | undefined;
4540
4684
  }
4541
4685
  /**
4542
4686
  * <p>Configuration that defines how to interact with a specific data entity through the REST API, including its access patterns and schema definition.</p>
@@ -7338,58 +7482,3 @@ export interface EncryptionAtRest {
7338
7482
  */
7339
7483
  CatalogEncryptionServiceRole?: string | undefined;
7340
7484
  }
7341
- /**
7342
- * <p>Contains configuration information for maintaining Data Catalog security.</p>
7343
- * @public
7344
- */
7345
- export interface DataCatalogEncryptionSettings {
7346
- /**
7347
- * <p>Specifies the encryption-at-rest configuration for the Data Catalog.</p>
7348
- * @public
7349
- */
7350
- EncryptionAtRest?: EncryptionAtRest | undefined;
7351
- /**
7352
- * <p>When connection password protection is enabled, the Data Catalog uses a customer-provided
7353
- * key to encrypt the password as part of <code>CreateConnection</code> or
7354
- * <code>UpdateConnection</code> and store it in the <code>ENCRYPTED_PASSWORD</code> field in
7355
- * the connection properties. You can enable catalog encryption or only password
7356
- * encryption.</p>
7357
- * @public
7358
- */
7359
- ConnectionPasswordEncryption?: ConnectionPasswordEncryption | undefined;
7360
- }
7361
- /**
7362
- * @public
7363
- */
7364
- export interface GetDataCatalogEncryptionSettingsResponse {
7365
- /**
7366
- * <p>The requested security configuration.</p>
7367
- * @public
7368
- */
7369
- DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
7370
- }
7371
- /**
7372
- * @public
7373
- */
7374
- export interface GetDataflowGraphRequest {
7375
- /**
7376
- * <p>The Python script to transform.</p>
7377
- * @public
7378
- */
7379
- PythonScript?: string | undefined;
7380
- }
7381
- /**
7382
- * @public
7383
- */
7384
- export interface GetDataflowGraphResponse {
7385
- /**
7386
- * <p>A list of the nodes in the resulting DAG.</p>
7387
- * @public
7388
- */
7389
- DagNodes?: CodeGenNode[] | undefined;
7390
- /**
7391
- * <p>A list of the edges in the resulting DAG.</p>
7392
- * @public
7393
- */
7394
- DagEdges?: CodeGenEdge[] | undefined;
7395
- }
@@ -1,7 +1,62 @@
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, SearchSortOrder, 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, 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";
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
- import type { Capabilities, CodeGenNodeArg, ConnectorProperty, DataCatalogEncryptionSettings, DataQualityTargetTable, EncryptionConfiguration, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, IntegrationConfig, IntegrationError, ProfileConfiguration, RegistryId, ResourceUri, RestConfiguration, Session, SourceProcessingProperties, SourceTableConfig, Tag, TargetProcessingProperties, TargetTableConfig, TransformEncryption, TransformParameters } from "./models_1";
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
+ /**
6
+ * <p>Contains configuration information for maintaining Data Catalog security.</p>
7
+ * @public
8
+ */
9
+ export interface DataCatalogEncryptionSettings {
10
+ /**
11
+ * <p>Specifies the encryption-at-rest configuration for the Data Catalog.</p>
12
+ * @public
13
+ */
14
+ EncryptionAtRest?: EncryptionAtRest | undefined;
15
+ /**
16
+ * <p>When connection password protection is enabled, the Data Catalog uses a customer-provided
17
+ * key to encrypt the password as part of <code>CreateConnection</code> or
18
+ * <code>UpdateConnection</code> and store it in the <code>ENCRYPTED_PASSWORD</code> field in
19
+ * the connection properties. You can enable catalog encryption or only password
20
+ * encryption.</p>
21
+ * @public
22
+ */
23
+ ConnectionPasswordEncryption?: ConnectionPasswordEncryption | undefined;
24
+ }
25
+ /**
26
+ * @public
27
+ */
28
+ export interface GetDataCatalogEncryptionSettingsResponse {
29
+ /**
30
+ * <p>The requested security configuration.</p>
31
+ * @public
32
+ */
33
+ DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
34
+ }
35
+ /**
36
+ * @public
37
+ */
38
+ export interface GetDataflowGraphRequest {
39
+ /**
40
+ * <p>The Python script to transform.</p>
41
+ * @public
42
+ */
43
+ PythonScript?: string | undefined;
44
+ }
45
+ /**
46
+ * @public
47
+ */
48
+ export interface GetDataflowGraphResponse {
49
+ /**
50
+ * <p>A list of the nodes in the resulting DAG.</p>
51
+ * @public
52
+ */
53
+ DagNodes?: CodeGenNode[] | undefined;
54
+ /**
55
+ * <p>A list of the edges in the resulting DAG.</p>
56
+ * @public
57
+ */
58
+ DagEdges?: CodeGenEdge[] | undefined;
59
+ }
5
60
  /**
6
61
  * @public
7
62
  */
@@ -7608,86 +7663,3 @@ export declare namespace SearchMapFilterValue {
7608
7663
  _: (name: string, value: any) => T;
7609
7664
  }
7610
7665
  }
7611
- /**
7612
- * <p>A filter on a map attribute's key-value pair.</p>
7613
- * @public
7614
- */
7615
- export interface SearchMapFilter {
7616
- /**
7617
- * <p>The map attribute name to filter on.</p>
7618
- * @public
7619
- */
7620
- Attribute: string | undefined;
7621
- /**
7622
- * <p>The key within the map attribute to filter on.</p>
7623
- * @public
7624
- */
7625
- Key: string | undefined;
7626
- /**
7627
- * <p>The value to compare against.</p>
7628
- * @public
7629
- */
7630
- Value: SearchMapFilterValue | undefined;
7631
- }
7632
- /**
7633
- * <p>The sort criteria for search results.</p>
7634
- * @public
7635
- */
7636
- export interface SearchSort {
7637
- /**
7638
- * <p>The attribute to sort by.</p>
7639
- * @public
7640
- */
7641
- Attribute: string | undefined;
7642
- /**
7643
- * <p>The sort order. Valid values are <code>ASCENDING</code> and <code>DESCENDING</code>.</p>
7644
- * @public
7645
- */
7646
- Order?: SearchSortOrder | undefined;
7647
- }
7648
- /**
7649
- * <p>A single search result item representing a matched asset.</p>
7650
- * @public
7651
- */
7652
- export interface SearchResultItem {
7653
- /**
7654
- * <p>The unique identifier of the matched asset.</p>
7655
- * @public
7656
- */
7657
- Id?: string | undefined;
7658
- /**
7659
- * <p>The name of the matched asset.</p>
7660
- * @public
7661
- */
7662
- AssetName?: string | undefined;
7663
- /**
7664
- * <p>The description of the matched asset.</p>
7665
- * @public
7666
- */
7667
- AssetDescription?: string | undefined;
7668
- /**
7669
- * <p>The timestamp at which the matched asset was last updated.</p>
7670
- * @public
7671
- */
7672
- UpdatedAt?: Date | undefined;
7673
- /**
7674
- * <p>The identifier of the asset type for the matched asset.</p>
7675
- * @public
7676
- */
7677
- AssetTypeId?: string | undefined;
7678
- }
7679
- /**
7680
- * @public
7681
- */
7682
- export interface SearchAssetsOutput {
7683
- /**
7684
- * <p>The list of assets matching the search criteria.</p>
7685
- * @public
7686
- */
7687
- Items?: SearchResultItem[] | undefined;
7688
- /**
7689
- * <p>A continuation token, present if the current segment is not the last.</p>
7690
- * @public
7691
- */
7692
- NextToken?: string | undefined;
7693
- }
@@ -1,7 +1,90 @@
1
- import type { Comparator, Compatibility, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, ExecutionClass, IcebergUpdateAction, JobMode, Permission, ResourceAction, ResourceShareType, ResourceState, Sort, SourceControlAuthStrategy, SourceControlProvider, TableOptimizerType, ViewUpdateAction, WorkerType } from "./enums";
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";
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, SearchMapFilter, SearchSort, ViewDefinition, ViewValidation } from "./models_2";
4
+ import type { ColumnRowFilter, DataQualityRuleRecommendationRunAdditionalRunOptions, FederatedTable, IcebergTableMetadata, SchemaVersionNumber, SearchAttributeFilter, SearchMapFilterValue, ViewDefinition, ViewValidation } from "./models_2";
5
+ /**
6
+ * <p>A filter on a map attribute's key-value pair.</p>
7
+ * @public
8
+ */
9
+ export interface SearchMapFilter {
10
+ /**
11
+ * <p>The map attribute name to filter on.</p>
12
+ * @public
13
+ */
14
+ Attribute: string | undefined;
15
+ /**
16
+ * <p>The key within the map attribute to filter on.</p>
17
+ * @public
18
+ */
19
+ Key: string | undefined;
20
+ /**
21
+ * <p>The value to compare against.</p>
22
+ * @public
23
+ */
24
+ Value: SearchMapFilterValue | undefined;
25
+ }
26
+ /**
27
+ * <p>The sort criteria for search results.</p>
28
+ * @public
29
+ */
30
+ export interface SearchSort {
31
+ /**
32
+ * <p>The attribute to sort by.</p>
33
+ * @public
34
+ */
35
+ Attribute: string | undefined;
36
+ /**
37
+ * <p>The sort order. Valid values are <code>ASCENDING</code> and <code>DESCENDING</code>.</p>
38
+ * @public
39
+ */
40
+ Order?: SearchSortOrder | undefined;
41
+ }
42
+ /**
43
+ * <p>A single search result item representing a matched asset.</p>
44
+ * @public
45
+ */
46
+ export interface SearchResultItem {
47
+ /**
48
+ * <p>The unique identifier of the matched asset.</p>
49
+ * @public
50
+ */
51
+ Id?: string | undefined;
52
+ /**
53
+ * <p>The name of the matched asset.</p>
54
+ * @public
55
+ */
56
+ AssetName?: string | undefined;
57
+ /**
58
+ * <p>The description of the matched asset.</p>
59
+ * @public
60
+ */
61
+ AssetDescription?: string | undefined;
62
+ /**
63
+ * <p>The timestamp at which the matched asset was last updated.</p>
64
+ * @public
65
+ */
66
+ UpdatedAt?: Date | undefined;
67
+ /**
68
+ * <p>The identifier of the asset type for the matched asset.</p>
69
+ * @public
70
+ */
71
+ AssetTypeId?: string | undefined;
72
+ }
73
+ /**
74
+ * @public
75
+ */
76
+ export interface SearchAssetsOutput {
77
+ /**
78
+ * <p>The list of assets matching the search criteria.</p>
79
+ * @public
80
+ */
81
+ Items?: SearchResultItem[] | undefined;
82
+ /**
83
+ * <p>A continuation token, present if the current segment is not the last.</p>
84
+ * @public
85
+ */
86
+ NextToken?: string | undefined;
87
+ }
5
88
  /**
6
89
  * <p>Defines a property predicate.</p>
7
90
  * @public
@@ -129,6 +129,7 @@ export declare var BatchUpdatePartitionFailureEntry$: StaticStructureSchema;
129
129
  export declare var BatchUpdatePartitionRequest$: StaticStructureSchema;
130
130
  export declare var BatchUpdatePartitionRequestEntry$: StaticStructureSchema;
131
131
  export declare var BatchUpdatePartitionResponse$: StaticStructureSchema;
132
+ export declare var BetweenConfiguration$: StaticStructureSchema;
132
133
  export declare var BinaryColumnStatisticsData$: StaticStructureSchema;
133
134
  export declare var Blueprint$: StaticStructureSchema;
134
135
  export declare var BlueprintDetails$: StaticStructureSchema;
@@ -442,7 +443,10 @@ export declare var Field$: StaticStructureSchema;
442
443
  export declare var FieldDefinition$: StaticStructureSchema;
443
444
  export declare var FillMissingValues$: StaticStructureSchema;
444
445
  export declare var Filter$: StaticStructureSchema;
446
+ export declare var FilterConfiguration$: StaticStructureSchema;
445
447
  export declare var FilterExpression$: StaticStructureSchema;
448
+ export declare var FilterOverrides$: StaticStructureSchema;
449
+ export declare var FilterStringConfiguration$: StaticStructureSchema;
446
450
  export declare var FilterValue$: StaticStructureSchema;
447
451
  export declare var FindMatchesMetrics$: StaticStructureSchema;
448
452
  export declare var FindMatchesParameters$: StaticStructureSchema;
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetDataCatalogEncryptionSettingsRequest,
4
- GetDataCatalogEncryptionSettingsResponse,
5
- } from "../models/models_1";
2
+ import { GetDataCatalogEncryptionSettingsRequest } from "../models/models_1";
3
+ import { GetDataCatalogEncryptionSettingsResponse } from "../models/models_2";
6
4
  export { __MetadataBearer };
7
5
  export interface GetDataCatalogEncryptionSettingsCommandInput extends GetDataCatalogEncryptionSettingsRequest {}
8
6
  export interface GetDataCatalogEncryptionSettingsCommandOutput
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { GetDataflowGraphRequest, GetDataflowGraphResponse } from "../models/models_1";
2
+ import { GetDataflowGraphRequest, GetDataflowGraphResponse } from "../models/models_2";
3
3
  export { __MetadataBearer };
4
4
  export interface GetDataflowGraphCommandInput extends GetDataflowGraphRequest {}
5
5
  export interface GetDataflowGraphCommandOutput extends GetDataflowGraphResponse, __MetadataBearer {}
@@ -1,6 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { SearchAssetsOutput } from "../models/models_2";
3
- import { SearchAssetsInput } from "../models/models_3";
2
+ import { SearchAssetsInput, SearchAssetsOutput } from "../models/models_3";
4
3
  export { __MetadataBearer };
5
4
  export interface SearchAssetsCommandInput extends SearchAssetsInput {}
6
5
  export interface SearchAssetsCommandOutput extends SearchAssetsOutput, __MetadataBearer {}
@@ -878,6 +878,11 @@ export declare const FieldDataType: {
878
878
  readonly UNION: "UNION";
879
879
  };
880
880
  export type FieldDataType = (typeof FieldDataType)[keyof typeof FieldDataType];
881
+ export declare const FilterMode: {
882
+ readonly FILTER_STRING: "FILTER_STRING";
883
+ readonly QUERY_PARAMS: "QUERY_PARAMS";
884
+ };
885
+ export type FilterMode = (typeof FilterMode)[keyof typeof FilterMode];
881
886
  export declare const HTTPMethod: {
882
887
  readonly GET: "GET";
883
888
  readonly POST: "POST";
@@ -22,6 +22,7 @@ import {
22
22
  ExecutionStatus,
23
23
  FieldDataType,
24
24
  FieldFilterOperator,
25
+ FilterMode,
25
26
  FunctionType,
26
27
  GlueResourceType,
27
28
  HTTPMethod,
@@ -991,9 +992,39 @@ export interface ComputeEnvironmentConfiguration {
991
992
  ConnectionPropertiesRequiredOverrides: string[] | undefined;
992
993
  PhysicalConnectionPropertiesRequired?: boolean | undefined;
993
994
  }
995
+ export interface BetweenConfiguration {
996
+ LowBoundKey?: string | undefined;
997
+ HighBoundKey?: string | undefined;
998
+ Template?: string | undefined;
999
+ }
1000
+ export interface FilterOverrides {
1001
+ FieldName?: string | undefined;
1002
+ OperatorMappings?: Record<string, string> | undefined;
1003
+ BetweenConfiguration?: BetweenConfiguration | undefined;
1004
+ DateTimeFormat?: string | undefined;
1005
+ }
994
1006
  export interface FieldDefinition {
995
1007
  Name: string | undefined;
996
1008
  FieldDataType: FieldDataType | undefined;
1009
+ ResponseDateFormat?: string | undefined;
1010
+ IsPartitionable?: boolean | undefined;
1011
+ IsNullable?: boolean | undefined;
1012
+ IsQueryable?: boolean | undefined;
1013
+ IsOrderable?: boolean | undefined;
1014
+ FilterOverrides?: FilterOverrides | undefined;
1015
+ }
1016
+ export interface FilterStringConfiguration {
1017
+ QueryParameterName: string | undefined;
1018
+ QuoteStringValues?: boolean | undefined;
1019
+ QuoteCharacter?: string | undefined;
1020
+ }
1021
+ export interface FilterConfiguration {
1022
+ FilterMode: FilterMode | undefined;
1023
+ OperatorMappings?: Record<string, string> | undefined;
1024
+ DateTimeFormat?: string | undefined;
1025
+ StripQuotes?: boolean | undefined;
1026
+ BetweenConfiguration?: BetweenConfiguration | undefined;
1027
+ FilterStringConfiguration?: FilterStringConfiguration | undefined;
997
1028
  }
998
1029
  export interface ResponseExtractionMapping {
999
1030
  ContentPath?: string | undefined;
@@ -1025,6 +1056,7 @@ export interface ConnectorProperty {
1025
1056
  AllowedValues?: string[] | undefined;
1026
1057
  PropertyLocation?: PropertyLocation | undefined;
1027
1058
  PropertyType: PropertyType | undefined;
1059
+ Format?: string | undefined;
1028
1060
  }
1029
1061
  export interface ResponseConfiguration {
1030
1062
  ResultPath: string | undefined;
@@ -1036,6 +1068,7 @@ export interface SourceConfiguration {
1036
1068
  RequestParameters?: ConnectorProperty[] | undefined;
1037
1069
  ResponseConfiguration?: ResponseConfiguration | undefined;
1038
1070
  PaginationConfiguration?: PaginationConfiguration | undefined;
1071
+ FilterConfiguration?: FilterConfiguration | undefined;
1039
1072
  }
1040
1073
  export interface EntityConfiguration {
1041
1074
  SourceConfiguration?: SourceConfiguration | undefined;
@@ -1618,17 +1651,3 @@ export interface EncryptionAtRest {
1618
1651
  SseAwsKmsKeyId?: string | undefined;
1619
1652
  CatalogEncryptionServiceRole?: string | undefined;
1620
1653
  }
1621
- export interface DataCatalogEncryptionSettings {
1622
- EncryptionAtRest?: EncryptionAtRest | undefined;
1623
- ConnectionPasswordEncryption?: ConnectionPasswordEncryption | undefined;
1624
- }
1625
- export interface GetDataCatalogEncryptionSettingsResponse {
1626
- DataCatalogEncryptionSettings?: DataCatalogEncryptionSettings | undefined;
1627
- }
1628
- export interface GetDataflowGraphRequest {
1629
- PythonScript?: string | undefined;
1630
- }
1631
- export interface GetDataflowGraphResponse {
1632
- DagNodes?: CodeGenNode[] | undefined;
1633
- DagEdges?: CodeGenEdge[] | undefined;
1634
- }