@aws-sdk/client-glue 3.428.0 → 3.429.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.
@@ -44,7 +44,7 @@ export declare const AggFunction: {
44
44
  export type AggFunction = (typeof AggFunction)[keyof typeof AggFunction];
45
45
  export interface AggregateOperation {
46
46
  Column: string[] | undefined;
47
- AggFunc: AggFunction | string | undefined;
47
+ AggFunc: AggFunction | undefined;
48
48
  }
49
49
  export interface Aggregate {
50
50
  Name: string | undefined;
@@ -333,7 +333,7 @@ export interface Blueprint {
333
333
  ParameterSpec?: string;
334
334
  BlueprintLocation?: string;
335
335
  BlueprintServiceLocation?: string;
336
- Status?: BlueprintStatus | string;
336
+ Status?: BlueprintStatus;
337
337
  ErrorMessage?: string;
338
338
  LastActiveDefinition?: LastActiveDefinition;
339
339
  }
@@ -356,7 +356,7 @@ export declare const LastCrawlStatus: {
356
356
  export type LastCrawlStatus =
357
357
  (typeof LastCrawlStatus)[keyof typeof LastCrawlStatus];
358
358
  export interface LastCrawlInfo {
359
- Status?: LastCrawlStatus | string;
359
+ Status?: LastCrawlStatus;
360
360
  ErrorMessage?: string;
361
361
  LogGroup?: string;
362
362
  LogStream?: string;
@@ -370,7 +370,7 @@ export declare const CrawlerLineageSettings: {
370
370
  export type CrawlerLineageSettings =
371
371
  (typeof CrawlerLineageSettings)[keyof typeof CrawlerLineageSettings];
372
372
  export interface LineageConfiguration {
373
- CrawlerLineageSettings?: CrawlerLineageSettings | string;
373
+ CrawlerLineageSettings?: CrawlerLineageSettings;
374
374
  }
375
375
  export declare const RecrawlBehavior: {
376
376
  readonly CRAWL_EVENT_MODE: "CRAWL_EVENT_MODE";
@@ -380,7 +380,7 @@ export declare const RecrawlBehavior: {
380
380
  export type RecrawlBehavior =
381
381
  (typeof RecrawlBehavior)[keyof typeof RecrawlBehavior];
382
382
  export interface RecrawlPolicy {
383
- RecrawlBehavior?: RecrawlBehavior | string;
383
+ RecrawlBehavior?: RecrawlBehavior;
384
384
  }
385
385
  export declare const ScheduleState: {
386
386
  readonly NOT_SCHEDULED: "NOT_SCHEDULED";
@@ -390,7 +390,7 @@ export declare const ScheduleState: {
390
390
  export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
391
391
  export interface Schedule {
392
392
  ScheduleExpression?: string;
393
- State?: ScheduleState | string;
393
+ State?: ScheduleState;
394
394
  }
395
395
  export declare const DeleteBehavior: {
396
396
  readonly DELETE_FROM_DATABASE: "DELETE_FROM_DATABASE";
@@ -406,8 +406,8 @@ export declare const UpdateBehavior: {
406
406
  export type UpdateBehavior =
407
407
  (typeof UpdateBehavior)[keyof typeof UpdateBehavior];
408
408
  export interface SchemaChangePolicy {
409
- UpdateBehavior?: UpdateBehavior | string;
410
- DeleteBehavior?: DeleteBehavior | string;
409
+ UpdateBehavior?: UpdateBehavior;
410
+ DeleteBehavior?: DeleteBehavior;
411
411
  }
412
412
  export declare const CrawlerState: {
413
413
  readonly READY: "READY";
@@ -455,7 +455,7 @@ export interface JdbcTarget {
455
455
  ConnectionName?: string;
456
456
  Path?: string;
457
457
  Exclusions?: string[];
458
- EnableAdditionalMetadata?: (JdbcMetadataEntry | string)[];
458
+ EnableAdditionalMetadata?: JdbcMetadataEntry[];
459
459
  }
460
460
  export interface MongoDBTarget {
461
461
  ConnectionName?: string;
@@ -490,7 +490,7 @@ export interface Crawler {
490
490
  RecrawlPolicy?: RecrawlPolicy;
491
491
  SchemaChangePolicy?: SchemaChangePolicy;
492
492
  LineageConfiguration?: LineageConfiguration;
493
- State?: CrawlerState | string;
493
+ State?: CrawlerState;
494
494
  TablePrefix?: string;
495
495
  Schedule?: Schedule;
496
496
  CrawlElapsedTime?: number;
@@ -542,7 +542,7 @@ export interface DataQualityRuleResult {
542
542
  Name?: string;
543
543
  Description?: string;
544
544
  EvaluationMessage?: string;
545
- Result?: DataQualityRuleResultStatus | string;
545
+ Result?: DataQualityRuleResultStatus;
546
546
  EvaluatedMetrics?: Record<string, number>;
547
547
  }
548
548
  export interface DataQualityResult {
@@ -585,7 +585,7 @@ export interface DevEndpoint {
585
585
  ZeppelinRemoteSparkInterpreterPort?: number;
586
586
  PublicAddress?: string;
587
587
  Status?: string;
588
- WorkerType?: WorkerType | string;
588
+ WorkerType?: WorkerType;
589
589
  GlueVersion?: string;
590
590
  NumberOfWorkers?: number;
591
591
  NumberOfNodes?: number;
@@ -670,7 +670,7 @@ export interface KinesisStreamingSourceOptions {
670
670
  StreamName?: string;
671
671
  Classification?: string;
672
672
  Delimiter?: string;
673
- StartingPosition?: StartingPosition | string;
673
+ StartingPosition?: StartingPosition;
674
674
  MaxFetchTimeInMs?: number;
675
675
  MaxFetchRecordsPerShard?: number;
676
676
  MaxRecordPerRead?: number;
@@ -729,7 +729,7 @@ export interface DirectJDBCSource {
729
729
  Database: string | undefined;
730
730
  Table: string | undefined;
731
731
  ConnectionName: string | undefined;
732
- ConnectionType: JDBCConnectionType | string | undefined;
732
+ ConnectionType: JDBCConnectionType | undefined;
733
733
  RedshiftTmpDir?: string;
734
734
  }
735
735
  export interface DirectKafkaSource {
@@ -787,11 +787,11 @@ export declare const ParamType: {
787
787
  export type ParamType = (typeof ParamType)[keyof typeof ParamType];
788
788
  export interface TransformConfigParameter {
789
789
  Name: string | undefined;
790
- Type: ParamType | string | undefined;
790
+ Type: ParamType | undefined;
791
791
  ValidationRule?: string;
792
792
  ValidationMessage?: string;
793
793
  Value?: string[];
794
- ListType?: ParamType | string;
794
+ ListType?: ParamType;
795
795
  IsOptional?: boolean;
796
796
  }
797
797
  export interface DynamicTransform {
@@ -828,13 +828,13 @@ export declare const DQStopJobOnFailureTiming: {
828
828
  export type DQStopJobOnFailureTiming =
829
829
  (typeof DQStopJobOnFailureTiming)[keyof typeof DQStopJobOnFailureTiming];
830
830
  export interface DQStopJobOnFailureOptions {
831
- StopJobOnFailureTiming?: DQStopJobOnFailureTiming | string;
831
+ StopJobOnFailureTiming?: DQStopJobOnFailureTiming;
832
832
  }
833
833
  export interface EvaluateDataQuality {
834
834
  Name: string | undefined;
835
835
  Inputs: string[] | undefined;
836
836
  Ruleset: string | undefined;
837
- Output?: DQTransformOutput | string;
837
+ Output?: DQTransformOutput;
838
838
  PublishingOptions?: DQResultsPublishingOptions;
839
839
  StopJobOnFailureOptions?: DQStopJobOnFailureOptions;
840
840
  }
@@ -844,7 +844,7 @@ export interface EvaluateDataQualityMultiFrame {
844
844
  AdditionalDataSources?: Record<string, string>;
845
845
  Ruleset: string | undefined;
846
846
  PublishingOptions?: DQResultsPublishingOptions;
847
- AdditionalOptions?: Record<string, string>;
847
+ AdditionalOptions?: Record<AdditionalOptionKeys, string>;
848
848
  StopJobOnFailureOptions?: DQStopJobOnFailureOptions;
849
849
  }
850
850
  export interface FillMissingValues {
@@ -871,11 +871,11 @@ export declare const FilterValueType: {
871
871
  export type FilterValueType =
872
872
  (typeof FilterValueType)[keyof typeof FilterValueType];
873
873
  export interface FilterValue {
874
- Type: FilterValueType | string | undefined;
874
+ Type: FilterValueType | undefined;
875
875
  Value: string[] | undefined;
876
876
  }
877
877
  export interface FilterExpression {
878
- Operation: FilterOperation | string | undefined;
878
+ Operation: FilterOperation | undefined;
879
879
  Negated?: boolean;
880
880
  Values: FilterValue[] | undefined;
881
881
  }
@@ -888,7 +888,7 @@ export type FilterLogicalOperator =
888
888
  export interface Filter {
889
889
  Name: string | undefined;
890
890
  Inputs: string[] | undefined;
891
- LogicalOperator: FilterLogicalOperator | string | undefined;
891
+ LogicalOperator: FilterLogicalOperator | undefined;
892
892
  Filters: FilterExpression[] | undefined;
893
893
  }
894
894
  export interface S3SourceAdditionalOptions {
@@ -910,7 +910,7 @@ export type UpdateCatalogBehavior =
910
910
  (typeof UpdateCatalogBehavior)[keyof typeof UpdateCatalogBehavior];
911
911
  export interface CatalogSchemaChangePolicy {
912
912
  EnableUpdateCatalog?: boolean;
913
- UpdateBehavior?: UpdateCatalogBehavior | string;
913
+ UpdateBehavior?: UpdateCatalogBehavior;
914
914
  }
915
915
  export interface GovernedCatalogTarget {
916
916
  Name: string | undefined;
@@ -984,7 +984,7 @@ export interface JDBCConnectorOptions {
984
984
  NumPartitions?: number;
985
985
  JobBookmarkKeys?: string[];
986
986
  JobBookmarkKeysSortOrder?: string;
987
- DataTypeMapping?: Record<string, GlueRecordType | string>;
987
+ DataTypeMapping?: Record<JDBCDataType, GlueRecordType>;
988
988
  }
989
989
  export interface JDBCConnectorSource {
990
990
  Name: string | undefined;
@@ -1022,7 +1022,7 @@ export type JoinType = (typeof JoinType)[keyof typeof JoinType];
1022
1022
  export interface Join {
1023
1023
  Name: string | undefined;
1024
1024
  Inputs: string[] | undefined;
1025
- JoinType: JoinType | string | undefined;
1025
+ JoinType: JoinType | undefined;
1026
1026
  Columns: JoinColumn[] | undefined;
1027
1027
  }
1028
1028
  export interface Merge {
@@ -1074,7 +1074,7 @@ export type PiiType = (typeof PiiType)[keyof typeof PiiType];
1074
1074
  export interface PIIDetection {
1075
1075
  Name: string | undefined;
1076
1076
  Inputs: string[] | undefined;
1077
- PiiType: PiiType | string | undefined;
1077
+ PiiType: PiiType | undefined;
1078
1078
  EntityTypesToDetect: string[] | undefined;
1079
1079
  OutputColumnName?: string;
1080
1080
  SampleFraction?: number;
@@ -1192,7 +1192,7 @@ export type Separator = (typeof Separator)[keyof typeof Separator];
1192
1192
  export interface S3CsvSource {
1193
1193
  Name: string | undefined;
1194
1194
  Paths: string[] | undefined;
1195
- CompressionType?: CompressionType | string;
1195
+ CompressionType?: CompressionType;
1196
1196
  Exclusions?: string[];
1197
1197
  GroupSize?: string;
1198
1198
  GroupFiles?: string;
@@ -1200,9 +1200,9 @@ export interface S3CsvSource {
1200
1200
  MaxBand?: number;
1201
1201
  MaxFilesInBand?: number;
1202
1202
  AdditionalOptions?: S3DirectSourceAdditionalOptions;
1203
- Separator: Separator | string | undefined;
1203
+ Separator: Separator | undefined;
1204
1204
  Escaper?: string;
1205
- QuoteChar: QuoteChar | string | undefined;
1205
+ QuoteChar: QuoteChar | undefined;
1206
1206
  Multiline?: boolean;
1207
1207
  WithHeader?: boolean;
1208
1208
  WriteHeader?: boolean;
@@ -1237,7 +1237,7 @@ export declare const TargetFormat: {
1237
1237
  export type TargetFormat = (typeof TargetFormat)[keyof typeof TargetFormat];
1238
1238
  export interface DirectSchemaChangePolicy {
1239
1239
  EnableUpdateCatalog?: boolean;
1240
- UpdateBehavior?: UpdateCatalogBehavior | string;
1240
+ UpdateBehavior?: UpdateCatalogBehavior;
1241
1241
  Table?: string;
1242
1242
  Database?: string;
1243
1243
  }
@@ -1246,8 +1246,8 @@ export interface S3DeltaDirectTarget {
1246
1246
  Inputs: string[] | undefined;
1247
1247
  PartitionKeys?: string[][];
1248
1248
  Path: string | undefined;
1249
- Compression: DeltaTargetCompressionType | string | undefined;
1250
- Format: TargetFormat | string | undefined;
1249
+ Compression: DeltaTargetCompressionType | undefined;
1250
+ Format: TargetFormat | undefined;
1251
1251
  AdditionalOptions?: Record<string, string>;
1252
1252
  SchemaChangePolicy?: DirectSchemaChangePolicy;
1253
1253
  }
@@ -1264,7 +1264,7 @@ export interface S3DirectTarget {
1264
1264
  PartitionKeys?: string[][];
1265
1265
  Path: string | undefined;
1266
1266
  Compression?: string;
1267
- Format: TargetFormat | string | undefined;
1267
+ Format: TargetFormat | undefined;
1268
1268
  SchemaChangePolicy?: DirectSchemaChangePolicy;
1269
1269
  }
1270
1270
  export declare const ParquetCompressionType: {
@@ -1281,7 +1281,7 @@ export interface S3GlueParquetTarget {
1281
1281
  Inputs: string[] | undefined;
1282
1282
  PartitionKeys?: string[][];
1283
1283
  Path: string | undefined;
1284
- Compression?: ParquetCompressionType | string;
1284
+ Compression?: ParquetCompressionType;
1285
1285
  SchemaChangePolicy?: DirectSchemaChangePolicy;
1286
1286
  }
1287
1287
  export interface S3HudiCatalogTarget {
@@ -1305,9 +1305,9 @@ export interface S3HudiDirectTarget {
1305
1305
  Name: string | undefined;
1306
1306
  Inputs: string[] | undefined;
1307
1307
  Path: string | undefined;
1308
- Compression: HudiTargetCompressionType | string | undefined;
1308
+ Compression: HudiTargetCompressionType | undefined;
1309
1309
  PartitionKeys?: string[][];
1310
- Format: TargetFormat | string | undefined;
1310
+ Format: TargetFormat | undefined;
1311
1311
  AdditionalOptions: Record<string, string> | undefined;
1312
1312
  SchemaChangePolicy?: DirectSchemaChangePolicy;
1313
1313
  }
@@ -1321,7 +1321,7 @@ export interface S3HudiSource {
1321
1321
  export interface S3JsonSource {
1322
1322
  Name: string | undefined;
1323
1323
  Paths: string[] | undefined;
1324
- CompressionType?: CompressionType | string;
1324
+ CompressionType?: CompressionType;
1325
1325
  Exclusions?: string[];
1326
1326
  GroupSize?: string;
1327
1327
  GroupFiles?: string;
@@ -1336,7 +1336,7 @@ export interface S3JsonSource {
1336
1336
  export interface S3ParquetSource {
1337
1337
  Name: string | undefined;
1338
1338
  Paths: string[] | undefined;
1339
- CompressionType?: ParquetCompressionType | string;
1339
+ CompressionType?: ParquetCompressionType;
1340
1340
  Exclusions?: string[];
1341
1341
  GroupSize?: string;
1342
1342
  GroupFiles?: string;
@@ -1437,7 +1437,7 @@ export type UnionType = (typeof UnionType)[keyof typeof UnionType];
1437
1437
  export interface Union {
1438
1438
  Name: string | undefined;
1439
1439
  Inputs: string[] | undefined;
1440
- UnionType: UnionType | string | undefined;
1440
+ UnionType: UnionType | undefined;
1441
1441
  }
1442
1442
  export interface JobCommand {
1443
1443
  Name?: string;
@@ -1472,13 +1472,13 @@ export declare const SourceControlProvider: {
1472
1472
  export type SourceControlProvider =
1473
1473
  (typeof SourceControlProvider)[keyof typeof SourceControlProvider];
1474
1474
  export interface SourceControlDetails {
1475
- Provider?: SourceControlProvider | string;
1475
+ Provider?: SourceControlProvider;
1476
1476
  Repository?: string;
1477
1477
  Owner?: string;
1478
1478
  Branch?: string;
1479
1479
  Folder?: string;
1480
1480
  LastCommitId?: string;
1481
- AuthStrategy?: SourceControlAuthStrategy | string;
1481
+ AuthStrategy?: SourceControlAuthStrategy;
1482
1482
  AuthToken?: string;
1483
1483
  }
1484
1484
  export interface BatchGetPartitionRequest {
@@ -1514,7 +1514,7 @@ export type FederationSourceErrorCode =
1514
1514
  export declare class FederationSourceException extends __BaseException {
1515
1515
  readonly name: "FederationSourceException";
1516
1516
  readonly $fault: "client";
1517
- FederationSourceErrorCode?: FederationSourceErrorCode | string;
1517
+ FederationSourceErrorCode?: FederationSourceErrorCode;
1518
1518
  Message?: string;
1519
1519
  constructor(
1520
1520
  opts: __ExceptionOptionType<FederationSourceException, __BaseException>
@@ -1573,11 +1573,11 @@ export declare const JobRunState: {
1573
1573
  };
1574
1574
  export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
1575
1575
  export interface Condition {
1576
- LogicalOperator?: LogicalOperator | string;
1576
+ LogicalOperator?: LogicalOperator;
1577
1577
  JobName?: string;
1578
- State?: JobRunState | string;
1578
+ State?: JobRunState;
1579
1579
  CrawlerName?: string;
1580
- CrawlState?: CrawlState | string;
1580
+ CrawlState?: CrawlState;
1581
1581
  }
1582
1582
  export declare const Logical: {
1583
1583
  readonly AND: "AND";
@@ -1585,7 +1585,7 @@ export declare const Logical: {
1585
1585
  };
1586
1586
  export type Logical = (typeof Logical)[keyof typeof Logical];
1587
1587
  export interface Predicate {
1588
- Logical?: Logical | string;
1588
+ Logical?: Logical;
1589
1589
  Conditions?: Condition[];
1590
1590
  }
1591
1591
  export declare const TriggerState: {
@@ -1610,8 +1610,8 @@ export interface Trigger {
1610
1610
  Name?: string;
1611
1611
  WorkflowName?: string;
1612
1612
  Id?: string;
1613
- Type?: TriggerType | string;
1614
- State?: TriggerState | string;
1613
+ Type?: TriggerType;
1614
+ State?: TriggerState;
1615
1615
  Description?: string;
1616
1616
  Schedule?: string;
1617
1617
  Actions?: Action[];
@@ -1635,7 +1635,7 @@ export interface Edge {
1635
1635
  DestinationId?: string;
1636
1636
  }
1637
1637
  export interface Crawl {
1638
- State?: CrawlState | string;
1638
+ State?: CrawlState;
1639
1639
  StartedOn?: Date;
1640
1640
  CompletedOn?: Date;
1641
1641
  ErrorMessage?: string;
@@ -1658,7 +1658,7 @@ export interface JobRun {
1658
1658
  StartedOn?: Date;
1659
1659
  LastModifiedOn?: Date;
1660
1660
  CompletedOn?: Date;
1661
- JobRunState?: JobRunState | string;
1661
+ JobRunState?: JobRunState;
1662
1662
  Arguments?: Record<string, string>;
1663
1663
  ErrorMessage?: string;
1664
1664
  PredecessorRuns?: Predecessor[];
@@ -1666,14 +1666,14 @@ export interface JobRun {
1666
1666
  ExecutionTime?: number;
1667
1667
  Timeout?: number;
1668
1668
  MaxCapacity?: number;
1669
- WorkerType?: WorkerType | string;
1669
+ WorkerType?: WorkerType;
1670
1670
  NumberOfWorkers?: number;
1671
1671
  SecurityConfiguration?: string;
1672
1672
  LogGroupName?: string;
1673
1673
  NotificationProperty?: NotificationProperty;
1674
1674
  GlueVersion?: string;
1675
1675
  DPUSeconds?: number;
1676
- ExecutionClass?: ExecutionClass | string;
1676
+ ExecutionClass?: ExecutionClass;
1677
1677
  }
1678
1678
  export interface JobNodeDetails {
1679
1679
  JobRuns?: JobRun[];
@@ -1688,7 +1688,7 @@ export declare const NodeType: {
1688
1688
  };
1689
1689
  export type NodeType = (typeof NodeType)[keyof typeof NodeType];
1690
1690
  export interface Node {
1691
- Type?: NodeType | string;
1691
+ Type?: NodeType;
1692
1692
  Name?: string;
1693
1693
  UniqueId?: string;
1694
1694
  TriggerDetails?: TriggerNodeDetails;
@@ -1729,7 +1729,7 @@ export interface WorkflowRun {
1729
1729
  WorkflowRunProperties?: Record<string, string>;
1730
1730
  StartedOn?: Date;
1731
1731
  CompletedOn?: Date;
1732
- Status?: WorkflowRunStatus | string;
1732
+ Status?: WorkflowRunStatus;
1733
1733
  ErrorMessage?: string;
1734
1734
  Statistics?: WorkflowRunStatistics;
1735
1735
  Graph?: WorkflowGraph;
@@ -1810,7 +1810,7 @@ export type TaskStatusType =
1810
1810
  export interface CancelMLTaskRunResponse {
1811
1811
  TransformId?: string;
1812
1812
  TaskRunId?: string;
1813
- Status?: TaskStatusType | string;
1813
+ Status?: TaskStatusType;
1814
1814
  }
1815
1815
  export interface CancelStatementRequest {
1816
1816
  SessionId: string | undefined;
@@ -1833,7 +1833,7 @@ export declare const DataFormat: {
1833
1833
  };
1834
1834
  export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
1835
1835
  export interface CheckSchemaVersionValidityInput {
1836
- DataFormat: DataFormat | string | undefined;
1836
+ DataFormat: DataFormat | undefined;
1837
1837
  SchemaDefinition: string | undefined;
1838
1838
  }
1839
1839
  export interface CheckSchemaVersionValidityResponse {
@@ -1867,13 +1867,13 @@ export interface CreateCsvClassifierRequest {
1867
1867
  Name: string | undefined;
1868
1868
  Delimiter?: string;
1869
1869
  QuoteSymbol?: string;
1870
- ContainsHeader?: CsvHeaderOption | string;
1870
+ ContainsHeader?: CsvHeaderOption;
1871
1871
  Header?: string[];
1872
1872
  DisableValueTrimming?: boolean;
1873
1873
  AllowSingleColumn?: boolean;
1874
1874
  CustomDatatypeConfigured?: boolean;
1875
1875
  CustomDatatypes?: string[];
1876
- Serde?: CsvSerdeOption | string;
1876
+ Serde?: CsvSerdeOption;
1877
1877
  }
1878
1878
  export interface CreateGrokClassifierRequest {
1879
1879
  Classification: string | undefined;
@@ -1959,9 +1959,9 @@ export interface PhysicalConnectionRequirements {
1959
1959
  export interface ConnectionInput {
1960
1960
  Name: string | undefined;
1961
1961
  Description?: string;
1962
- ConnectionType: ConnectionType | string | undefined;
1962
+ ConnectionType: ConnectionType | undefined;
1963
1963
  MatchCriteria?: string[];
1964
- ConnectionProperties: Record<string, string> | undefined;
1964
+ ConnectionProperties: Record<ConnectionPropertyKey, string> | undefined;
1965
1965
  PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
1966
1966
  }
1967
1967
  export interface CreateConnectionRequest {
@@ -2036,7 +2036,7 @@ export interface DataLakePrincipal {
2036
2036
  }
2037
2037
  export interface PrincipalPermissions {
2038
2038
  Principal?: DataLakePrincipal;
2039
- Permissions?: (Permission | string)[];
2039
+ Permissions?: Permission[];
2040
2040
  }
2041
2041
  export interface FederatedDatabase {
2042
2042
  Identifier?: string;
@@ -2098,7 +2098,7 @@ export interface CreateDevEndpointRequest {
2098
2098
  PublicKey?: string;
2099
2099
  PublicKeys?: string[];
2100
2100
  NumberOfNodes?: number;
2101
- WorkerType?: WorkerType | string;
2101
+ WorkerType?: WorkerType;
2102
2102
  GlueVersion?: string;
2103
2103
  NumberOfWorkers?: number;
2104
2104
  ExtraPythonLibsS3Path?: string;
@@ -2116,7 +2116,7 @@ export interface CreateDevEndpointResponse {
2116
2116
  YarnEndpointAddress?: string;
2117
2117
  ZeppelinRemoteSparkInterpreterPort?: number;
2118
2118
  NumberOfNodes?: number;
2119
- WorkerType?: WorkerType | string;
2119
+ WorkerType?: WorkerType;
2120
2120
  GlueVersion?: string;
2121
2121
  NumberOfWorkers?: number;
2122
2122
  AvailabilityZone?: string;