aws-sdk-glue 1.109.0 → 1.112.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +2968 -1
- data/lib/aws-sdk-glue/client_api.rb +844 -0
- data/lib/aws-sdk-glue/types.rb +9008 -2020
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +2 -2
@@ -17,8 +17,15 @@ module Aws::Glue
|
|
17
17
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
18
18
|
Action = Shapes::StructureShape.new(name: 'Action')
|
19
19
|
ActionList = Shapes::ListShape.new(name: 'ActionList')
|
20
|
+
AdditionalOptions = Shapes::MapShape.new(name: 'AdditionalOptions')
|
20
21
|
AdditionalPlanOptionsMap = Shapes::MapShape.new(name: 'AdditionalPlanOptionsMap')
|
22
|
+
AggFunction = Shapes::StringShape.new(name: 'AggFunction')
|
23
|
+
Aggregate = Shapes::StructureShape.new(name: 'Aggregate')
|
24
|
+
AggregateOperation = Shapes::StructureShape.new(name: 'AggregateOperation')
|
25
|
+
AggregateOperations = Shapes::ListShape.new(name: 'AggregateOperations')
|
21
26
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
27
|
+
ApplyMapping = Shapes::StructureShape.new(name: 'ApplyMapping')
|
28
|
+
AthenaConnectorSource = Shapes::StructureShape.new(name: 'AthenaConnectorSource')
|
22
29
|
AttemptCount = Shapes::IntegerShape.new(name: 'AttemptCount')
|
23
30
|
AuditColumnNamesList = Shapes::ListShape.new(name: 'AuditColumnNamesList')
|
24
31
|
AuditContext = Shapes::StructureShape.new(name: 'AuditContext')
|
@@ -27,6 +34,7 @@ module Aws::Glue
|
|
27
34
|
BackfillErrorCode = Shapes::StringShape.new(name: 'BackfillErrorCode')
|
28
35
|
BackfillErroredPartitionsList = Shapes::ListShape.new(name: 'BackfillErroredPartitionsList')
|
29
36
|
BackfillErrors = Shapes::ListShape.new(name: 'BackfillErrors')
|
37
|
+
BasicCatalogTarget = Shapes::StructureShape.new(name: 'BasicCatalogTarget')
|
30
38
|
BatchCreatePartitionRequest = Shapes::StructureShape.new(name: 'BatchCreatePartitionRequest')
|
31
39
|
BatchCreatePartitionResponse = Shapes::StructureShape.new(name: 'BatchCreatePartitionResponse')
|
32
40
|
BatchDeleteConnectionRequest = Shapes::StructureShape.new(name: 'BatchDeleteConnectionRequest')
|
@@ -45,6 +53,8 @@ module Aws::Glue
|
|
45
53
|
BatchGetBlueprintsResponse = Shapes::StructureShape.new(name: 'BatchGetBlueprintsResponse')
|
46
54
|
BatchGetCrawlersRequest = Shapes::StructureShape.new(name: 'BatchGetCrawlersRequest')
|
47
55
|
BatchGetCrawlersResponse = Shapes::StructureShape.new(name: 'BatchGetCrawlersResponse')
|
56
|
+
BatchGetCustomEntityTypesRequest = Shapes::StructureShape.new(name: 'BatchGetCustomEntityTypesRequest')
|
57
|
+
BatchGetCustomEntityTypesResponse = Shapes::StructureShape.new(name: 'BatchGetCustomEntityTypesResponse')
|
48
58
|
BatchGetDevEndpointsRequest = Shapes::StructureShape.new(name: 'BatchGetDevEndpointsRequest')
|
49
59
|
BatchGetDevEndpointsResponse = Shapes::StructureShape.new(name: 'BatchGetDevEndpointsResponse')
|
50
60
|
BatchGetJobsRequest = Shapes::StructureShape.new(name: 'BatchGetJobsRequest')
|
@@ -88,6 +98,12 @@ module Aws::Glue
|
|
88
98
|
BooleanNullable = Shapes::BooleanShape.new(name: 'BooleanNullable')
|
89
99
|
BooleanValue = Shapes::BooleanShape.new(name: 'BooleanValue')
|
90
100
|
BoundedPartitionValueList = Shapes::ListShape.new(name: 'BoundedPartitionValueList')
|
101
|
+
BoxedBoolean = Shapes::BooleanShape.new(name: 'BoxedBoolean')
|
102
|
+
BoxedDoubleFraction = Shapes::FloatShape.new(name: 'BoxedDoubleFraction')
|
103
|
+
BoxedLong = Shapes::IntegerShape.new(name: 'BoxedLong')
|
104
|
+
BoxedNonNegativeInt = Shapes::IntegerShape.new(name: 'BoxedNonNegativeInt')
|
105
|
+
BoxedNonNegativeLong = Shapes::IntegerShape.new(name: 'BoxedNonNegativeLong')
|
106
|
+
BoxedPositiveInt = Shapes::IntegerShape.new(name: 'BoxedPositiveInt')
|
91
107
|
CancelMLTaskRunRequest = Shapes::StructureShape.new(name: 'CancelMLTaskRunRequest')
|
92
108
|
CancelMLTaskRunResponse = Shapes::StructureShape.new(name: 'CancelMLTaskRunResponse')
|
93
109
|
CancelStatementRequest = Shapes::StructureShape.new(name: 'CancelStatementRequest')
|
@@ -98,6 +114,10 @@ module Aws::Glue
|
|
98
114
|
CatalogGetterPageSize = Shapes::IntegerShape.new(name: 'CatalogGetterPageSize')
|
99
115
|
CatalogIdString = Shapes::StringShape.new(name: 'CatalogIdString')
|
100
116
|
CatalogImportStatus = Shapes::StructureShape.new(name: 'CatalogImportStatus')
|
117
|
+
CatalogKafkaSource = Shapes::StructureShape.new(name: 'CatalogKafkaSource')
|
118
|
+
CatalogKinesisSource = Shapes::StructureShape.new(name: 'CatalogKinesisSource')
|
119
|
+
CatalogSchemaChangePolicy = Shapes::StructureShape.new(name: 'CatalogSchemaChangePolicy')
|
120
|
+
CatalogSource = Shapes::StructureShape.new(name: 'CatalogSource')
|
101
121
|
CatalogTablesList = Shapes::ListShape.new(name: 'CatalogTablesList')
|
102
122
|
CatalogTarget = Shapes::StructureShape.new(name: 'CatalogTarget')
|
103
123
|
CatalogTargetList = Shapes::ListShape.new(name: 'CatalogTargetList')
|
@@ -111,6 +131,8 @@ module Aws::Glue
|
|
111
131
|
CloudWatchEncryptionMode = Shapes::StringShape.new(name: 'CloudWatchEncryptionMode')
|
112
132
|
CodeGenArgName = Shapes::StringShape.new(name: 'CodeGenArgName')
|
113
133
|
CodeGenArgValue = Shapes::StringShape.new(name: 'CodeGenArgValue')
|
134
|
+
CodeGenConfigurationNode = Shapes::StructureShape.new(name: 'CodeGenConfigurationNode')
|
135
|
+
CodeGenConfigurationNodes = Shapes::MapShape.new(name: 'CodeGenConfigurationNodes')
|
114
136
|
CodeGenEdge = Shapes::StructureShape.new(name: 'CodeGenEdge')
|
115
137
|
CodeGenIdentifier = Shapes::StringShape.new(name: 'CodeGenIdentifier')
|
116
138
|
CodeGenNode = Shapes::StructureShape.new(name: 'CodeGenNode')
|
@@ -138,6 +160,7 @@ module Aws::Glue
|
|
138
160
|
CommentString = Shapes::StringShape.new(name: 'CommentString')
|
139
161
|
Comparator = Shapes::StringShape.new(name: 'Comparator')
|
140
162
|
Compatibility = Shapes::StringShape.new(name: 'Compatibility')
|
163
|
+
CompressionType = Shapes::StringShape.new(name: 'CompressionType')
|
141
164
|
ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
|
142
165
|
ConcurrentRunsExceededException = Shapes::StructureShape.new(name: 'ConcurrentRunsExceededException')
|
143
166
|
Condition = Shapes::StructureShape.new(name: 'Condition')
|
@@ -154,6 +177,7 @@ module Aws::Glue
|
|
154
177
|
ConnectionPropertyKey = Shapes::StringShape.new(name: 'ConnectionPropertyKey')
|
155
178
|
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
156
179
|
ConnectionsList = Shapes::StructureShape.new(name: 'ConnectionsList')
|
180
|
+
ContextWords = Shapes::ListShape.new(name: 'ContextWords')
|
157
181
|
Crawl = Shapes::StructureShape.new(name: 'Crawl')
|
158
182
|
CrawlList = Shapes::ListShape.new(name: 'CrawlList')
|
159
183
|
CrawlState = Shapes::StringShape.new(name: 'CrawlState')
|
@@ -180,6 +204,8 @@ module Aws::Glue
|
|
180
204
|
CreateCrawlerRequest = Shapes::StructureShape.new(name: 'CreateCrawlerRequest')
|
181
205
|
CreateCrawlerResponse = Shapes::StructureShape.new(name: 'CreateCrawlerResponse')
|
182
206
|
CreateCsvClassifierRequest = Shapes::StructureShape.new(name: 'CreateCsvClassifierRequest')
|
207
|
+
CreateCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'CreateCustomEntityTypeRequest')
|
208
|
+
CreateCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'CreateCustomEntityTypeResponse')
|
183
209
|
CreateDatabaseRequest = Shapes::StructureShape.new(name: 'CreateDatabaseRequest')
|
184
210
|
CreateDatabaseResponse = Shapes::StructureShape.new(name: 'CreateDatabaseResponse')
|
185
211
|
CreateDevEndpointRequest = Shapes::StructureShape.new(name: 'CreateDevEndpointRequest')
|
@@ -220,6 +246,10 @@ module Aws::Glue
|
|
220
246
|
CsvHeader = Shapes::ListShape.new(name: 'CsvHeader')
|
221
247
|
CsvHeaderOption = Shapes::StringShape.new(name: 'CsvHeaderOption')
|
222
248
|
CsvQuoteSymbol = Shapes::StringShape.new(name: 'CsvQuoteSymbol')
|
249
|
+
CustomCode = Shapes::StructureShape.new(name: 'CustomCode')
|
250
|
+
CustomEntityType = Shapes::StructureShape.new(name: 'CustomEntityType')
|
251
|
+
CustomEntityTypeNames = Shapes::ListShape.new(name: 'CustomEntityTypeNames')
|
252
|
+
CustomEntityTypes = Shapes::ListShape.new(name: 'CustomEntityTypes')
|
223
253
|
CustomPatterns = Shapes::StringShape.new(name: 'CustomPatterns')
|
224
254
|
DagEdges = Shapes::ListShape.new(name: 'DagEdges')
|
225
255
|
DagNodes = Shapes::ListShape.new(name: 'DagNodes')
|
@@ -232,6 +262,7 @@ module Aws::Glue
|
|
232
262
|
DatabaseInput = Shapes::StructureShape.new(name: 'DatabaseInput')
|
233
263
|
DatabaseList = Shapes::ListShape.new(name: 'DatabaseList')
|
234
264
|
DatabaseName = Shapes::StringShape.new(name: 'DatabaseName')
|
265
|
+
Datatype = Shapes::StructureShape.new(name: 'Datatype')
|
235
266
|
DateColumnStatisticsData = Shapes::StructureShape.new(name: 'DateColumnStatisticsData')
|
236
267
|
DecimalColumnStatisticsData = Shapes::StructureShape.new(name: 'DecimalColumnStatisticsData')
|
237
268
|
DecimalNumber = Shapes::StructureShape.new(name: 'DecimalNumber')
|
@@ -249,6 +280,8 @@ module Aws::Glue
|
|
249
280
|
DeleteConnectionResponse = Shapes::StructureShape.new(name: 'DeleteConnectionResponse')
|
250
281
|
DeleteCrawlerRequest = Shapes::StructureShape.new(name: 'DeleteCrawlerRequest')
|
251
282
|
DeleteCrawlerResponse = Shapes::StructureShape.new(name: 'DeleteCrawlerResponse')
|
283
|
+
DeleteCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'DeleteCustomEntityTypeRequest')
|
284
|
+
DeleteCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'DeleteCustomEntityTypeResponse')
|
252
285
|
DeleteDatabaseRequest = Shapes::StructureShape.new(name: 'DeleteDatabaseRequest')
|
253
286
|
DeleteDatabaseResponse = Shapes::StructureShape.new(name: 'DeleteDatabaseResponse')
|
254
287
|
DeleteDevEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDevEndpointRequest')
|
@@ -292,14 +325,25 @@ module Aws::Glue
|
|
292
325
|
DevEndpointList = Shapes::ListShape.new(name: 'DevEndpointList')
|
293
326
|
DevEndpointNameList = Shapes::ListShape.new(name: 'DevEndpointNameList')
|
294
327
|
DevEndpointNames = Shapes::ListShape.new(name: 'DevEndpointNames')
|
328
|
+
DirectKafkaSource = Shapes::StructureShape.new(name: 'DirectKafkaSource')
|
329
|
+
DirectKinesisSource = Shapes::StructureShape.new(name: 'DirectKinesisSource')
|
330
|
+
DirectSchemaChangePolicy = Shapes::StructureShape.new(name: 'DirectSchemaChangePolicy')
|
295
331
|
Double = Shapes::FloatShape.new(name: 'Double')
|
296
332
|
DoubleColumnStatisticsData = Shapes::StructureShape.new(name: 'DoubleColumnStatisticsData')
|
297
333
|
DoubleValue = Shapes::FloatShape.new(name: 'DoubleValue')
|
334
|
+
DropDuplicates = Shapes::StructureShape.new(name: 'DropDuplicates')
|
335
|
+
DropFields = Shapes::StructureShape.new(name: 'DropFields')
|
336
|
+
DropNullFields = Shapes::StructureShape.new(name: 'DropNullFields')
|
337
|
+
DynamoDBCatalogSource = Shapes::StructureShape.new(name: 'DynamoDBCatalogSource')
|
298
338
|
DynamoDBTarget = Shapes::StructureShape.new(name: 'DynamoDBTarget')
|
299
339
|
DynamoDBTargetList = Shapes::ListShape.new(name: 'DynamoDBTargetList')
|
300
340
|
Edge = Shapes::StructureShape.new(name: 'Edge')
|
301
341
|
EdgeList = Shapes::ListShape.new(name: 'EdgeList')
|
302
342
|
EnableHybridValues = Shapes::StringShape.new(name: 'EnableHybridValues')
|
343
|
+
EnclosedInStringProperties = Shapes::ListShape.new(name: 'EnclosedInStringProperties')
|
344
|
+
EnclosedInStringPropertiesMinOne = Shapes::ListShape.new(name: 'EnclosedInStringPropertiesMinOne')
|
345
|
+
EnclosedInStringProperty = Shapes::StringShape.new(name: 'EnclosedInStringProperty')
|
346
|
+
EnclosedInStringPropertyWithQuote = Shapes::StringShape.new(name: 'EnclosedInStringPropertyWithQuote')
|
303
347
|
EncryptionAtRest = Shapes::StructureShape.new(name: 'EncryptionAtRest')
|
304
348
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
305
349
|
EntityNotFoundException = Shapes::StructureShape.new(name: 'EntityNotFoundException')
|
@@ -316,14 +360,25 @@ module Aws::Glue
|
|
316
360
|
ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
|
317
361
|
ExistCondition = Shapes::StringShape.new(name: 'ExistCondition')
|
318
362
|
ExportLabelsTaskRunProperties = Shapes::StructureShape.new(name: 'ExportLabelsTaskRunProperties')
|
363
|
+
ExtendedString = Shapes::StringShape.new(name: 'ExtendedString')
|
319
364
|
FieldType = Shapes::StringShape.new(name: 'FieldType')
|
365
|
+
FillMissingValues = Shapes::StructureShape.new(name: 'FillMissingValues')
|
366
|
+
Filter = Shapes::StructureShape.new(name: 'Filter')
|
367
|
+
FilterExpression = Shapes::StructureShape.new(name: 'FilterExpression')
|
368
|
+
FilterExpressions = Shapes::ListShape.new(name: 'FilterExpressions')
|
369
|
+
FilterLogicalOperator = Shapes::StringShape.new(name: 'FilterLogicalOperator')
|
370
|
+
FilterOperation = Shapes::StringShape.new(name: 'FilterOperation')
|
320
371
|
FilterString = Shapes::StringShape.new(name: 'FilterString')
|
372
|
+
FilterValue = Shapes::StructureShape.new(name: 'FilterValue')
|
373
|
+
FilterValueType = Shapes::StringShape.new(name: 'FilterValueType')
|
374
|
+
FilterValues = Shapes::ListShape.new(name: 'FilterValues')
|
321
375
|
FindMatchesMetrics = Shapes::StructureShape.new(name: 'FindMatchesMetrics')
|
322
376
|
FindMatchesParameters = Shapes::StructureShape.new(name: 'FindMatchesParameters')
|
323
377
|
FindMatchesTaskRunProperties = Shapes::StructureShape.new(name: 'FindMatchesTaskRunProperties')
|
324
378
|
FormatString = Shapes::StringShape.new(name: 'FormatString')
|
325
379
|
Generic512CharString = Shapes::StringShape.new(name: 'Generic512CharString')
|
326
380
|
GenericBoundedDouble = Shapes::FloatShape.new(name: 'GenericBoundedDouble')
|
381
|
+
GenericLimitedString = Shapes::StringShape.new(name: 'GenericLimitedString')
|
327
382
|
GenericMap = Shapes::MapShape.new(name: 'GenericMap')
|
328
383
|
GenericString = Shapes::StringShape.new(name: 'GenericString')
|
329
384
|
GetBlueprintRequest = Shapes::StructureShape.new(name: 'GetBlueprintRequest')
|
@@ -354,6 +409,8 @@ module Aws::Glue
|
|
354
409
|
GetCrawlerResponse = Shapes::StructureShape.new(name: 'GetCrawlerResponse')
|
355
410
|
GetCrawlersRequest = Shapes::StructureShape.new(name: 'GetCrawlersRequest')
|
356
411
|
GetCrawlersResponse = Shapes::StructureShape.new(name: 'GetCrawlersResponse')
|
412
|
+
GetCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'GetCustomEntityTypeRequest')
|
413
|
+
GetCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'GetCustomEntityTypeResponse')
|
357
414
|
GetDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsRequest')
|
358
415
|
GetDataCatalogEncryptionSettingsResponse = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsResponse')
|
359
416
|
GetDatabaseRequest = Shapes::StructureShape.new(name: 'GetDatabaseRequest')
|
@@ -452,10 +509,19 @@ module Aws::Glue
|
|
452
509
|
GetWorkflowRunsResponse = Shapes::StructureShape.new(name: 'GetWorkflowRunsResponse')
|
453
510
|
GlueEncryptionException = Shapes::StructureShape.new(name: 'GlueEncryptionException')
|
454
511
|
GluePolicy = Shapes::StructureShape.new(name: 'GluePolicy')
|
512
|
+
GlueRecordType = Shapes::StringShape.new(name: 'GlueRecordType')
|
455
513
|
GlueResourceArn = Shapes::StringShape.new(name: 'GlueResourceArn')
|
514
|
+
GlueSchema = Shapes::StructureShape.new(name: 'GlueSchema')
|
515
|
+
GlueSchemas = Shapes::ListShape.new(name: 'GlueSchemas')
|
516
|
+
GlueStudioColumnNameString = Shapes::StringShape.new(name: 'GlueStudioColumnNameString')
|
517
|
+
GlueStudioPathList = Shapes::ListShape.new(name: 'GlueStudioPathList')
|
518
|
+
GlueStudioSchemaColumn = Shapes::StructureShape.new(name: 'GlueStudioSchemaColumn')
|
519
|
+
GlueStudioSchemaColumnList = Shapes::ListShape.new(name: 'GlueStudioSchemaColumnList')
|
456
520
|
GlueTable = Shapes::StructureShape.new(name: 'GlueTable')
|
457
521
|
GlueTables = Shapes::ListShape.new(name: 'GlueTables')
|
458
522
|
GlueVersionString = Shapes::StringShape.new(name: 'GlueVersionString')
|
523
|
+
GovernedCatalogSource = Shapes::StructureShape.new(name: 'GovernedCatalogSource')
|
524
|
+
GovernedCatalogTarget = Shapes::StructureShape.new(name: 'GovernedCatalogTarget')
|
459
525
|
GrokClassifier = Shapes::StructureShape.new(name: 'GrokClassifier')
|
460
526
|
GrokPattern = Shapes::StringShape.new(name: 'GrokPattern')
|
461
527
|
HashString = Shapes::StringShape.new(name: 'HashString')
|
@@ -474,6 +540,11 @@ module Aws::Glue
|
|
474
540
|
InvalidInputException = Shapes::StructureShape.new(name: 'InvalidInputException')
|
475
541
|
InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
|
476
542
|
IsVersionValid = Shapes::BooleanShape.new(name: 'IsVersionValid')
|
543
|
+
JDBCConnectorOptions = Shapes::StructureShape.new(name: 'JDBCConnectorOptions')
|
544
|
+
JDBCConnectorSource = Shapes::StructureShape.new(name: 'JDBCConnectorSource')
|
545
|
+
JDBCConnectorTarget = Shapes::StructureShape.new(name: 'JDBCConnectorTarget')
|
546
|
+
JDBCDataType = Shapes::StringShape.new(name: 'JDBCDataType')
|
547
|
+
JDBCDataTypeMapping = Shapes::MapShape.new(name: 'JDBCDataTypeMapping')
|
477
548
|
JdbcTarget = Shapes::StructureShape.new(name: 'JdbcTarget')
|
478
549
|
JdbcTargetList = Shapes::ListShape.new(name: 'JdbcTargetList')
|
479
550
|
Job = Shapes::StructureShape.new(name: 'Job')
|
@@ -489,13 +560,19 @@ module Aws::Glue
|
|
489
560
|
JobRunList = Shapes::ListShape.new(name: 'JobRunList')
|
490
561
|
JobRunState = Shapes::StringShape.new(name: 'JobRunState')
|
491
562
|
JobUpdate = Shapes::StructureShape.new(name: 'JobUpdate')
|
563
|
+
Join = Shapes::StructureShape.new(name: 'Join')
|
564
|
+
JoinColumn = Shapes::StructureShape.new(name: 'JoinColumn')
|
565
|
+
JoinColumns = Shapes::ListShape.new(name: 'JoinColumns')
|
566
|
+
JoinType = Shapes::StringShape.new(name: 'JoinType')
|
492
567
|
JsonClassifier = Shapes::StructureShape.new(name: 'JsonClassifier')
|
493
568
|
JsonPath = Shapes::StringShape.new(name: 'JsonPath')
|
494
569
|
JsonValue = Shapes::StringShape.new(name: 'JsonValue')
|
570
|
+
KafkaStreamingSourceOptions = Shapes::StructureShape.new(name: 'KafkaStreamingSourceOptions')
|
495
571
|
KeyList = Shapes::ListShape.new(name: 'KeyList')
|
496
572
|
KeySchemaElement = Shapes::StructureShape.new(name: 'KeySchemaElement')
|
497
573
|
KeySchemaElementList = Shapes::ListShape.new(name: 'KeySchemaElementList')
|
498
574
|
KeyString = Shapes::StringShape.new(name: 'KeyString')
|
575
|
+
KinesisStreamingSourceOptions = Shapes::StructureShape.new(name: 'KinesisStreamingSourceOptions')
|
499
576
|
KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
|
500
577
|
LabelCount = Shapes::IntegerShape.new(name: 'LabelCount')
|
501
578
|
LabelingSetGenerationTaskRunProperties = Shapes::StructureShape.new(name: 'LabelingSetGenerationTaskRunProperties')
|
@@ -505,11 +582,15 @@ module Aws::Glue
|
|
505
582
|
LastCrawlInfo = Shapes::StructureShape.new(name: 'LastCrawlInfo')
|
506
583
|
LastCrawlStatus = Shapes::StringShape.new(name: 'LastCrawlStatus')
|
507
584
|
LatestSchemaVersionBoolean = Shapes::BooleanShape.new(name: 'LatestSchemaVersionBoolean')
|
585
|
+
LimitedPathList = Shapes::ListShape.new(name: 'LimitedPathList')
|
586
|
+
LimitedStringList = Shapes::ListShape.new(name: 'LimitedStringList')
|
508
587
|
LineageConfiguration = Shapes::StructureShape.new(name: 'LineageConfiguration')
|
509
588
|
ListBlueprintsRequest = Shapes::StructureShape.new(name: 'ListBlueprintsRequest')
|
510
589
|
ListBlueprintsResponse = Shapes::StructureShape.new(name: 'ListBlueprintsResponse')
|
511
590
|
ListCrawlersRequest = Shapes::StructureShape.new(name: 'ListCrawlersRequest')
|
512
591
|
ListCrawlersResponse = Shapes::StructureShape.new(name: 'ListCrawlersResponse')
|
592
|
+
ListCustomEntityTypesRequest = Shapes::StructureShape.new(name: 'ListCustomEntityTypesRequest')
|
593
|
+
ListCustomEntityTypesResponse = Shapes::StructureShape.new(name: 'ListCustomEntityTypesResponse')
|
513
594
|
ListDevEndpointsRequest = Shapes::StructureShape.new(name: 'ListDevEndpointsRequest')
|
514
595
|
ListDevEndpointsResponse = Shapes::StructureShape.new(name: 'ListDevEndpointsResponse')
|
515
596
|
ListJobsRequest = Shapes::StructureShape.new(name: 'ListJobsRequest')
|
@@ -545,13 +626,18 @@ module Aws::Glue
|
|
545
626
|
MLTransformNotReadyException = Shapes::StructureShape.new(name: 'MLTransformNotReadyException')
|
546
627
|
MLUserDataEncryption = Shapes::StructureShape.new(name: 'MLUserDataEncryption')
|
547
628
|
MLUserDataEncryptionModeString = Shapes::StringShape.new(name: 'MLUserDataEncryptionModeString')
|
629
|
+
ManyInputs = Shapes::ListShape.new(name: 'ManyInputs')
|
548
630
|
MapValue = Shapes::MapShape.new(name: 'MapValue')
|
631
|
+
Mapping = Shapes::StructureShape.new(name: 'Mapping')
|
549
632
|
MappingEntry = Shapes::StructureShape.new(name: 'MappingEntry')
|
550
633
|
MappingList = Shapes::ListShape.new(name: 'MappingList')
|
634
|
+
Mappings = Shapes::ListShape.new(name: 'Mappings')
|
635
|
+
MaskValue = Shapes::StringShape.new(name: 'MaskValue')
|
551
636
|
MatchCriteria = Shapes::ListShape.new(name: 'MatchCriteria')
|
552
637
|
MaxConcurrentRuns = Shapes::IntegerShape.new(name: 'MaxConcurrentRuns')
|
553
638
|
MaxResultsNumber = Shapes::IntegerShape.new(name: 'MaxResultsNumber')
|
554
639
|
MaxRetries = Shapes::IntegerShape.new(name: 'MaxRetries')
|
640
|
+
Merge = Shapes::StructureShape.new(name: 'Merge')
|
555
641
|
MessagePrefix = Shapes::StringShape.new(name: 'MessagePrefix')
|
556
642
|
MessageString = Shapes::StringShape.new(name: 'MessageString')
|
557
643
|
MetadataInfo = Shapes::StructureShape.new(name: 'MetadataInfo')
|
@@ -560,25 +646,38 @@ module Aws::Glue
|
|
560
646
|
MetadataKeyValuePair = Shapes::StructureShape.new(name: 'MetadataKeyValuePair')
|
561
647
|
MetadataList = Shapes::ListShape.new(name: 'MetadataList')
|
562
648
|
MetadataValueString = Shapes::StringShape.new(name: 'MetadataValueString')
|
649
|
+
MicrosoftSQLServerCatalogSource = Shapes::StructureShape.new(name: 'MicrosoftSQLServerCatalogSource')
|
650
|
+
MicrosoftSQLServerCatalogTarget = Shapes::StructureShape.new(name: 'MicrosoftSQLServerCatalogTarget')
|
563
651
|
MillisecondsCount = Shapes::IntegerShape.new(name: 'MillisecondsCount')
|
564
652
|
MongoDBTarget = Shapes::StructureShape.new(name: 'MongoDBTarget')
|
565
653
|
MongoDBTargetList = Shapes::ListShape.new(name: 'MongoDBTargetList')
|
654
|
+
MySQLCatalogSource = Shapes::StructureShape.new(name: 'MySQLCatalogSource')
|
655
|
+
MySQLCatalogTarget = Shapes::StructureShape.new(name: 'MySQLCatalogTarget')
|
566
656
|
NameString = Shapes::StringShape.new(name: 'NameString')
|
567
657
|
NameStringList = Shapes::ListShape.new(name: 'NameStringList')
|
568
658
|
NoScheduleException = Shapes::StructureShape.new(name: 'NoScheduleException')
|
569
659
|
Node = Shapes::StructureShape.new(name: 'Node')
|
660
|
+
NodeId = Shapes::StringShape.new(name: 'NodeId')
|
570
661
|
NodeIdList = Shapes::ListShape.new(name: 'NodeIdList')
|
571
662
|
NodeList = Shapes::ListShape.new(name: 'NodeList')
|
663
|
+
NodeName = Shapes::StringShape.new(name: 'NodeName')
|
572
664
|
NodeType = Shapes::StringShape.new(name: 'NodeType')
|
573
665
|
NonNegativeDouble = Shapes::FloatShape.new(name: 'NonNegativeDouble')
|
666
|
+
NonNegativeInt = Shapes::IntegerShape.new(name: 'NonNegativeInt')
|
574
667
|
NonNegativeInteger = Shapes::IntegerShape.new(name: 'NonNegativeInteger')
|
575
668
|
NonNegativeLong = Shapes::IntegerShape.new(name: 'NonNegativeLong')
|
576
669
|
NotificationProperty = Shapes::StructureShape.new(name: 'NotificationProperty')
|
577
670
|
NotifyDelayAfter = Shapes::IntegerShape.new(name: 'NotifyDelayAfter')
|
671
|
+
NullCheckBoxList = Shapes::StructureShape.new(name: 'NullCheckBoxList')
|
672
|
+
NullValueField = Shapes::StructureShape.new(name: 'NullValueField')
|
673
|
+
NullValueFields = Shapes::ListShape.new(name: 'NullValueFields')
|
578
674
|
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
579
675
|
NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
|
580
676
|
NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
|
677
|
+
OneInput = Shapes::ListShape.new(name: 'OneInput')
|
581
678
|
OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
|
679
|
+
OracleSQLCatalogSource = Shapes::StructureShape.new(name: 'OracleSQLCatalogSource')
|
680
|
+
OracleSQLCatalogTarget = Shapes::StructureShape.new(name: 'OracleSQLCatalogTarget')
|
582
681
|
OrchestrationArgumentsMap = Shapes::MapShape.new(name: 'OrchestrationArgumentsMap')
|
583
682
|
OrchestrationArgumentsValue = Shapes::StringShape.new(name: 'OrchestrationArgumentsValue')
|
584
683
|
OrchestrationIAMRoleArn = Shapes::StringShape.new(name: 'OrchestrationIAMRoleArn')
|
@@ -592,10 +691,12 @@ module Aws::Glue
|
|
592
691
|
OrderList = Shapes::ListShape.new(name: 'OrderList')
|
593
692
|
OtherMetadataValueList = Shapes::ListShape.new(name: 'OtherMetadataValueList')
|
594
693
|
OtherMetadataValueListItem = Shapes::StructureShape.new(name: 'OtherMetadataValueListItem')
|
694
|
+
PIIDetection = Shapes::StructureShape.new(name: 'PIIDetection')
|
595
695
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
596
696
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
597
697
|
ParametersMap = Shapes::MapShape.new(name: 'ParametersMap')
|
598
698
|
ParametersMapValue = Shapes::StringShape.new(name: 'ParametersMapValue')
|
699
|
+
ParquetCompressionType = Shapes::StringShape.new(name: 'ParquetCompressionType')
|
599
700
|
Partition = Shapes::StructureShape.new(name: 'Partition')
|
600
701
|
PartitionError = Shapes::StructureShape.new(name: 'PartitionError')
|
601
702
|
PartitionErrors = Shapes::ListShape.new(name: 'PartitionErrors')
|
@@ -616,7 +717,12 @@ module Aws::Glue
|
|
616
717
|
PermissionTypeList = Shapes::ListShape.new(name: 'PermissionTypeList')
|
617
718
|
PermissionTypeMismatchException = Shapes::StructureShape.new(name: 'PermissionTypeMismatchException')
|
618
719
|
PhysicalConnectionRequirements = Shapes::StructureShape.new(name: 'PhysicalConnectionRequirements')
|
720
|
+
PiiType = Shapes::StringShape.new(name: 'PiiType')
|
619
721
|
PolicyJsonString = Shapes::StringShape.new(name: 'PolicyJsonString')
|
722
|
+
PollingTime = Shapes::IntegerShape.new(name: 'PollingTime')
|
723
|
+
PositiveLong = Shapes::IntegerShape.new(name: 'PositiveLong')
|
724
|
+
PostgreSQLCatalogSource = Shapes::StructureShape.new(name: 'PostgreSQLCatalogSource')
|
725
|
+
PostgreSQLCatalogTarget = Shapes::StructureShape.new(name: 'PostgreSQLCatalogTarget')
|
620
726
|
Predecessor = Shapes::StructureShape.new(name: 'Predecessor')
|
621
727
|
PredecessorList = Shapes::ListShape.new(name: 'PredecessorList')
|
622
728
|
Predicate = Shapes::StructureShape.new(name: 'Predicate')
|
@@ -624,6 +730,7 @@ module Aws::Glue
|
|
624
730
|
PrincipalPermissions = Shapes::StructureShape.new(name: 'PrincipalPermissions')
|
625
731
|
PrincipalPermissionsList = Shapes::ListShape.new(name: 'PrincipalPermissionsList')
|
626
732
|
PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
|
733
|
+
Prob = Shapes::FloatShape.new(name: 'Prob')
|
627
734
|
PropertyPredicate = Shapes::StructureShape.new(name: 'PropertyPredicate')
|
628
735
|
PublicKeysList = Shapes::ListShape.new(name: 'PublicKeysList')
|
629
736
|
PutDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'PutDataCatalogEncryptionSettingsRequest')
|
@@ -639,17 +746,22 @@ module Aws::Glue
|
|
639
746
|
QuerySchemaVersionMetadataInput = Shapes::StructureShape.new(name: 'QuerySchemaVersionMetadataInput')
|
640
747
|
QuerySchemaVersionMetadataMaxResults = Shapes::IntegerShape.new(name: 'QuerySchemaVersionMetadataMaxResults')
|
641
748
|
QuerySchemaVersionMetadataResponse = Shapes::StructureShape.new(name: 'QuerySchemaVersionMetadataResponse')
|
749
|
+
QuoteChar = Shapes::StringShape.new(name: 'QuoteChar')
|
642
750
|
RecordsCount = Shapes::IntegerShape.new(name: 'RecordsCount')
|
643
751
|
RecrawlBehavior = Shapes::StringShape.new(name: 'RecrawlBehavior')
|
644
752
|
RecrawlPolicy = Shapes::StructureShape.new(name: 'RecrawlPolicy')
|
753
|
+
RedshiftSource = Shapes::StructureShape.new(name: 'RedshiftSource')
|
754
|
+
RedshiftTarget = Shapes::StructureShape.new(name: 'RedshiftTarget')
|
645
755
|
RegisterSchemaVersionInput = Shapes::StructureShape.new(name: 'RegisterSchemaVersionInput')
|
646
756
|
RegisterSchemaVersionResponse = Shapes::StructureShape.new(name: 'RegisterSchemaVersionResponse')
|
647
757
|
RegistryId = Shapes::StructureShape.new(name: 'RegistryId')
|
648
758
|
RegistryListDefinition = Shapes::ListShape.new(name: 'RegistryListDefinition')
|
649
759
|
RegistryListItem = Shapes::StructureShape.new(name: 'RegistryListItem')
|
650
760
|
RegistryStatus = Shapes::StringShape.new(name: 'RegistryStatus')
|
761
|
+
RelationalCatalogSource = Shapes::StructureShape.new(name: 'RelationalCatalogSource')
|
651
762
|
RemoveSchemaVersionMetadataInput = Shapes::StructureShape.new(name: 'RemoveSchemaVersionMetadataInput')
|
652
763
|
RemoveSchemaVersionMetadataResponse = Shapes::StructureShape.new(name: 'RemoveSchemaVersionMetadataResponse')
|
764
|
+
RenameField = Shapes::StructureShape.new(name: 'RenameField')
|
653
765
|
ReplaceBoolean = Shapes::BooleanShape.new(name: 'ReplaceBoolean')
|
654
766
|
ResetJobBookmarkRequest = Shapes::StructureShape.new(name: 'ResetJobBookmarkRequest')
|
655
767
|
ResetJobBookmarkResponse = Shapes::StructureShape.new(name: 'ResetJobBookmarkResponse')
|
@@ -668,9 +780,18 @@ module Aws::Glue
|
|
668
780
|
RunId = Shapes::StringShape.new(name: 'RunId')
|
669
781
|
RunStatementRequest = Shapes::StructureShape.new(name: 'RunStatementRequest')
|
670
782
|
RunStatementResponse = Shapes::StructureShape.new(name: 'RunStatementResponse')
|
783
|
+
S3CatalogSource = Shapes::StructureShape.new(name: 'S3CatalogSource')
|
784
|
+
S3CatalogTarget = Shapes::StructureShape.new(name: 'S3CatalogTarget')
|
785
|
+
S3CsvSource = Shapes::StructureShape.new(name: 'S3CsvSource')
|
786
|
+
S3DirectSourceAdditionalOptions = Shapes::StructureShape.new(name: 'S3DirectSourceAdditionalOptions')
|
787
|
+
S3DirectTarget = Shapes::StructureShape.new(name: 'S3DirectTarget')
|
671
788
|
S3Encryption = Shapes::StructureShape.new(name: 'S3Encryption')
|
672
789
|
S3EncryptionList = Shapes::ListShape.new(name: 'S3EncryptionList')
|
673
790
|
S3EncryptionMode = Shapes::StringShape.new(name: 'S3EncryptionMode')
|
791
|
+
S3GlueParquetTarget = Shapes::StructureShape.new(name: 'S3GlueParquetTarget')
|
792
|
+
S3JsonSource = Shapes::StructureShape.new(name: 'S3JsonSource')
|
793
|
+
S3ParquetSource = Shapes::StructureShape.new(name: 'S3ParquetSource')
|
794
|
+
S3SourceAdditionalOptions = Shapes::StructureShape.new(name: 'S3SourceAdditionalOptions')
|
674
795
|
S3Target = Shapes::StructureShape.new(name: 'S3Target')
|
675
796
|
S3TargetList = Shapes::ListShape.new(name: 'S3TargetList')
|
676
797
|
ScalaCode = Shapes::StringShape.new(name: 'ScalaCode')
|
@@ -709,6 +830,9 @@ module Aws::Glue
|
|
709
830
|
SecurityConfigurationList = Shapes::ListShape.new(name: 'SecurityConfigurationList')
|
710
831
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
711
832
|
Segment = Shapes::StructureShape.new(name: 'Segment')
|
833
|
+
SelectFields = Shapes::StructureShape.new(name: 'SelectFields')
|
834
|
+
SelectFromCollection = Shapes::StructureShape.new(name: 'SelectFromCollection')
|
835
|
+
Separator = Shapes::StringShape.new(name: 'Separator')
|
712
836
|
SerDeInfo = Shapes::StructureShape.new(name: 'SerDeInfo')
|
713
837
|
Session = Shapes::StructureShape.new(name: 'Session')
|
714
838
|
SessionCommand = Shapes::StructureShape.new(name: 'SessionCommand')
|
@@ -720,6 +844,14 @@ module Aws::Glue
|
|
720
844
|
SortCriteria = Shapes::ListShape.new(name: 'SortCriteria')
|
721
845
|
SortCriterion = Shapes::StructureShape.new(name: 'SortCriterion')
|
722
846
|
SortDirectionType = Shapes::StringShape.new(name: 'SortDirectionType')
|
847
|
+
SparkConnectorSource = Shapes::StructureShape.new(name: 'SparkConnectorSource')
|
848
|
+
SparkConnectorTarget = Shapes::StructureShape.new(name: 'SparkConnectorTarget')
|
849
|
+
SparkSQL = Shapes::StructureShape.new(name: 'SparkSQL')
|
850
|
+
Spigot = Shapes::StructureShape.new(name: 'Spigot')
|
851
|
+
SplitFields = Shapes::StructureShape.new(name: 'SplitFields')
|
852
|
+
SqlAlias = Shapes::StructureShape.new(name: 'SqlAlias')
|
853
|
+
SqlAliases = Shapes::ListShape.new(name: 'SqlAliases')
|
854
|
+
SqlQuery = Shapes::StringShape.new(name: 'SqlQuery')
|
723
855
|
StartBlueprintRunRequest = Shapes::StructureShape.new(name: 'StartBlueprintRunRequest')
|
724
856
|
StartBlueprintRunResponse = Shapes::StructureShape.new(name: 'StartBlueprintRunResponse')
|
725
857
|
StartCrawlerRequest = Shapes::StructureShape.new(name: 'StartCrawlerRequest')
|
@@ -741,6 +873,7 @@ module Aws::Glue
|
|
741
873
|
StartWorkflowRunRequest = Shapes::StructureShape.new(name: 'StartWorkflowRunRequest')
|
742
874
|
StartWorkflowRunResponse = Shapes::StructureShape.new(name: 'StartWorkflowRunResponse')
|
743
875
|
StartingEventBatchCondition = Shapes::StructureShape.new(name: 'StartingEventBatchCondition')
|
876
|
+
StartingPosition = Shapes::StringShape.new(name: 'StartingPosition')
|
744
877
|
Statement = Shapes::StructureShape.new(name: 'Statement')
|
745
878
|
StatementList = Shapes::ListShape.new(name: 'StatementList')
|
746
879
|
StatementOutput = Shapes::StructureShape.new(name: 'StatementOutput')
|
@@ -757,6 +890,7 @@ module Aws::Glue
|
|
757
890
|
StopWorkflowRunRequest = Shapes::StructureShape.new(name: 'StopWorkflowRunRequest')
|
758
891
|
StopWorkflowRunResponse = Shapes::StructureShape.new(name: 'StopWorkflowRunResponse')
|
759
892
|
StorageDescriptor = Shapes::StructureShape.new(name: 'StorageDescriptor')
|
893
|
+
StreamingDataPreviewOptions = Shapes::StructureShape.new(name: 'StreamingDataPreviewOptions')
|
760
894
|
StringColumnStatisticsData = Shapes::StructureShape.new(name: 'StringColumnStatisticsData')
|
761
895
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
762
896
|
Table = Shapes::StructureShape.new(name: 'Table')
|
@@ -777,6 +911,7 @@ module Aws::Glue
|
|
777
911
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
778
912
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
779
913
|
TagsMap = Shapes::MapShape.new(name: 'TagsMap')
|
914
|
+
TargetFormat = Shapes::StringShape.new(name: 'TargetFormat')
|
780
915
|
TaskRun = Shapes::StructureShape.new(name: 'TaskRun')
|
781
916
|
TaskRunFilterCriteria = Shapes::StructureShape.new(name: 'TaskRunFilterCriteria')
|
782
917
|
TaskRunList = Shapes::ListShape.new(name: 'TaskRunList')
|
@@ -789,6 +924,7 @@ module Aws::Glue
|
|
789
924
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
790
925
|
TimestampValue = Shapes::TimestampShape.new(name: 'TimestampValue')
|
791
926
|
Token = Shapes::StringShape.new(name: 'Token')
|
927
|
+
Topk = Shapes::IntegerShape.new(name: 'Topk')
|
792
928
|
TotalSegmentsInteger = Shapes::IntegerShape.new(name: 'TotalSegmentsInteger')
|
793
929
|
TransactionIdString = Shapes::StringShape.new(name: 'TransactionIdString')
|
794
930
|
TransformEncryption = Shapes::StructureShape.new(name: 'TransformEncryption')
|
@@ -808,15 +944,19 @@ module Aws::Glue
|
|
808
944
|
TriggerState = Shapes::StringShape.new(name: 'TriggerState')
|
809
945
|
TriggerType = Shapes::StringShape.new(name: 'TriggerType')
|
810
946
|
TriggerUpdate = Shapes::StructureShape.new(name: 'TriggerUpdate')
|
947
|
+
TwoInputs = Shapes::ListShape.new(name: 'TwoInputs')
|
811
948
|
TypeString = Shapes::StringShape.new(name: 'TypeString')
|
812
949
|
URI = Shapes::StringShape.new(name: 'URI')
|
813
950
|
UnfilteredPartition = Shapes::StructureShape.new(name: 'UnfilteredPartition')
|
814
951
|
UnfilteredPartitionList = Shapes::ListShape.new(name: 'UnfilteredPartitionList')
|
952
|
+
Union = Shapes::StructureShape.new(name: 'Union')
|
953
|
+
UnionType = Shapes::StringShape.new(name: 'UnionType')
|
815
954
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
816
955
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
817
956
|
UpdateBehavior = Shapes::StringShape.new(name: 'UpdateBehavior')
|
818
957
|
UpdateBlueprintRequest = Shapes::StructureShape.new(name: 'UpdateBlueprintRequest')
|
819
958
|
UpdateBlueprintResponse = Shapes::StructureShape.new(name: 'UpdateBlueprintResponse')
|
959
|
+
UpdateCatalogBehavior = Shapes::StringShape.new(name: 'UpdateCatalogBehavior')
|
820
960
|
UpdateClassifierRequest = Shapes::StructureShape.new(name: 'UpdateClassifierRequest')
|
821
961
|
UpdateClassifierResponse = Shapes::StructureShape.new(name: 'UpdateClassifierResponse')
|
822
962
|
UpdateColumnStatisticsForPartitionRequest = Shapes::StructureShape.new(name: 'UpdateColumnStatisticsForPartitionRequest')
|
@@ -857,6 +997,7 @@ module Aws::Glue
|
|
857
997
|
UpdateWorkflowResponse = Shapes::StructureShape.new(name: 'UpdateWorkflowResponse')
|
858
998
|
UpdateXMLClassifierRequest = Shapes::StructureShape.new(name: 'UpdateXMLClassifierRequest')
|
859
999
|
UpdatedTimestamp = Shapes::StringShape.new(name: 'UpdatedTimestamp')
|
1000
|
+
UpsertRedshiftTargetOptions = Shapes::StructureShape.new(name: 'UpsertRedshiftTargetOptions')
|
860
1001
|
UriString = Shapes::StringShape.new(name: 'UriString')
|
861
1002
|
UserDefinedFunction = Shapes::StructureShape.new(name: 'UserDefinedFunction')
|
862
1003
|
UserDefinedFunctionInput = Shapes::StructureShape.new(name: 'UserDefinedFunctionInput')
|
@@ -895,12 +1036,41 @@ module Aws::Glue
|
|
895
1036
|
|
896
1037
|
ActionList.member = Shapes::ShapeRef.new(shape: Action)
|
897
1038
|
|
1039
|
+
AdditionalOptions.key = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
|
1040
|
+
AdditionalOptions.value = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
|
1041
|
+
|
898
1042
|
AdditionalPlanOptionsMap.key = Shapes::ShapeRef.new(shape: GenericString)
|
899
1043
|
AdditionalPlanOptionsMap.value = Shapes::ShapeRef.new(shape: GenericString)
|
900
1044
|
|
1045
|
+
Aggregate.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1046
|
+
Aggregate.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
1047
|
+
Aggregate.add_member(:groups, Shapes::ShapeRef.new(shape: GlueStudioPathList, required: true, location_name: "Groups"))
|
1048
|
+
Aggregate.add_member(:aggs, Shapes::ShapeRef.new(shape: AggregateOperations, required: true, location_name: "Aggs"))
|
1049
|
+
Aggregate.struct_class = Types::Aggregate
|
1050
|
+
|
1051
|
+
AggregateOperation.add_member(:column, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "Column"))
|
1052
|
+
AggregateOperation.add_member(:agg_func, Shapes::ShapeRef.new(shape: AggFunction, required: true, location_name: "AggFunc"))
|
1053
|
+
AggregateOperation.struct_class = Types::AggregateOperation
|
1054
|
+
|
1055
|
+
AggregateOperations.member = Shapes::ShapeRef.new(shape: AggregateOperation)
|
1056
|
+
|
901
1057
|
AlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
902
1058
|
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
903
1059
|
|
1060
|
+
ApplyMapping.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1061
|
+
ApplyMapping.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
1062
|
+
ApplyMapping.add_member(:mapping, Shapes::ShapeRef.new(shape: Mappings, required: true, location_name: "Mapping"))
|
1063
|
+
ApplyMapping.struct_class = Types::ApplyMapping
|
1064
|
+
|
1065
|
+
AthenaConnectorSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1066
|
+
AthenaConnectorSource.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionName"))
|
1067
|
+
AthenaConnectorSource.add_member(:connector_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectorName"))
|
1068
|
+
AthenaConnectorSource.add_member(:connection_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionType"))
|
1069
|
+
AthenaConnectorSource.add_member(:connection_table, Shapes::ShapeRef.new(shape: EnclosedInStringPropertyWithQuote, location_name: "ConnectionTable"))
|
1070
|
+
AthenaConnectorSource.add_member(:schema_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "SchemaName"))
|
1071
|
+
AthenaConnectorSource.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
1072
|
+
AthenaConnectorSource.struct_class = Types::AthenaConnectorSource
|
1073
|
+
|
904
1074
|
AuditColumnNamesList.member = Shapes::ShapeRef.new(shape: ColumnNameString)
|
905
1075
|
|
906
1076
|
AuditContext.add_member(:additional_audit_context, Shapes::ShapeRef.new(shape: AuditContextString, location_name: "AdditionalAuditContext"))
|
@@ -916,6 +1086,12 @@ module Aws::Glue
|
|
916
1086
|
|
917
1087
|
BackfillErrors.member = Shapes::ShapeRef.new(shape: BackfillError)
|
918
1088
|
|
1089
|
+
BasicCatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1090
|
+
BasicCatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
1091
|
+
BasicCatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
1092
|
+
BasicCatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
1093
|
+
BasicCatalogTarget.struct_class = Types::BasicCatalogTarget
|
1094
|
+
|
919
1095
|
BatchCreatePartitionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
920
1096
|
BatchCreatePartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
921
1097
|
BatchCreatePartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
@@ -984,6 +1160,13 @@ module Aws::Glue
|
|
984
1160
|
BatchGetCrawlersResponse.add_member(:crawlers_not_found, Shapes::ShapeRef.new(shape: CrawlerNameList, location_name: "CrawlersNotFound"))
|
985
1161
|
BatchGetCrawlersResponse.struct_class = Types::BatchGetCrawlersResponse
|
986
1162
|
|
1163
|
+
BatchGetCustomEntityTypesRequest.add_member(:names, Shapes::ShapeRef.new(shape: CustomEntityTypeNames, required: true, location_name: "Names"))
|
1164
|
+
BatchGetCustomEntityTypesRequest.struct_class = Types::BatchGetCustomEntityTypesRequest
|
1165
|
+
|
1166
|
+
BatchGetCustomEntityTypesResponse.add_member(:custom_entity_types, Shapes::ShapeRef.new(shape: CustomEntityTypes, location_name: "CustomEntityTypes"))
|
1167
|
+
BatchGetCustomEntityTypesResponse.add_member(:custom_entity_types_not_found, Shapes::ShapeRef.new(shape: CustomEntityTypeNames, location_name: "CustomEntityTypesNotFound"))
|
1168
|
+
BatchGetCustomEntityTypesResponse.struct_class = Types::BatchGetCustomEntityTypesResponse
|
1169
|
+
|
987
1170
|
BatchGetDevEndpointsRequest.add_member(:dev_endpoint_names, Shapes::ShapeRef.new(shape: DevEndpointNames, required: true, location_name: "DevEndpointNames"))
|
988
1171
|
BatchGetDevEndpointsRequest.struct_class = Types::BatchGetDevEndpointsRequest
|
989
1172
|
|
@@ -1142,6 +1325,33 @@ module Aws::Glue
|
|
1142
1325
|
CatalogImportStatus.add_member(:imported_by, Shapes::ShapeRef.new(shape: NameString, location_name: "ImportedBy"))
|
1143
1326
|
CatalogImportStatus.struct_class = Types::CatalogImportStatus
|
1144
1327
|
|
1328
|
+
CatalogKafkaSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1329
|
+
CatalogKafkaSource.add_member(:window_size, Shapes::ShapeRef.new(shape: BoxedPositiveInt, location_name: "WindowSize", metadata: {"box"=>true}))
|
1330
|
+
CatalogKafkaSource.add_member(:detect_schema, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "DetectSchema", metadata: {"box"=>true}))
|
1331
|
+
CatalogKafkaSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
1332
|
+
CatalogKafkaSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
1333
|
+
CatalogKafkaSource.add_member(:streaming_options, Shapes::ShapeRef.new(shape: KafkaStreamingSourceOptions, location_name: "StreamingOptions"))
|
1334
|
+
CatalogKafkaSource.add_member(:data_preview_options, Shapes::ShapeRef.new(shape: StreamingDataPreviewOptions, location_name: "DataPreviewOptions"))
|
1335
|
+
CatalogKafkaSource.struct_class = Types::CatalogKafkaSource
|
1336
|
+
|
1337
|
+
CatalogKinesisSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1338
|
+
CatalogKinesisSource.add_member(:window_size, Shapes::ShapeRef.new(shape: BoxedPositiveInt, location_name: "WindowSize"))
|
1339
|
+
CatalogKinesisSource.add_member(:detect_schema, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "DetectSchema", metadata: {"box"=>true}))
|
1340
|
+
CatalogKinesisSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
1341
|
+
CatalogKinesisSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
1342
|
+
CatalogKinesisSource.add_member(:streaming_options, Shapes::ShapeRef.new(shape: KinesisStreamingSourceOptions, location_name: "StreamingOptions"))
|
1343
|
+
CatalogKinesisSource.add_member(:data_preview_options, Shapes::ShapeRef.new(shape: StreamingDataPreviewOptions, location_name: "DataPreviewOptions"))
|
1344
|
+
CatalogKinesisSource.struct_class = Types::CatalogKinesisSource
|
1345
|
+
|
1346
|
+
CatalogSchemaChangePolicy.add_member(:enable_update_catalog, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnableUpdateCatalog"))
|
1347
|
+
CatalogSchemaChangePolicy.add_member(:update_behavior, Shapes::ShapeRef.new(shape: UpdateCatalogBehavior, location_name: "UpdateBehavior"))
|
1348
|
+
CatalogSchemaChangePolicy.struct_class = Types::CatalogSchemaChangePolicy
|
1349
|
+
|
1350
|
+
CatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1351
|
+
CatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
1352
|
+
CatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
1353
|
+
CatalogSource.struct_class = Types::CatalogSource
|
1354
|
+
|
1145
1355
|
CatalogTablesList.member = Shapes::ShapeRef.new(shape: NameString)
|
1146
1356
|
|
1147
1357
|
CatalogTarget.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
@@ -1173,6 +1383,61 @@ module Aws::Glue
|
|
1173
1383
|
CloudWatchEncryption.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
|
1174
1384
|
CloudWatchEncryption.struct_class = Types::CloudWatchEncryption
|
1175
1385
|
|
1386
|
+
CodeGenConfigurationNode.add_member(:athena_connector_source, Shapes::ShapeRef.new(shape: AthenaConnectorSource, location_name: "AthenaConnectorSource"))
|
1387
|
+
CodeGenConfigurationNode.add_member(:jdbc_connector_source, Shapes::ShapeRef.new(shape: JDBCConnectorSource, location_name: "JDBCConnectorSource"))
|
1388
|
+
CodeGenConfigurationNode.add_member(:spark_connector_source, Shapes::ShapeRef.new(shape: SparkConnectorSource, location_name: "SparkConnectorSource"))
|
1389
|
+
CodeGenConfigurationNode.add_member(:catalog_source, Shapes::ShapeRef.new(shape: CatalogSource, location_name: "CatalogSource"))
|
1390
|
+
CodeGenConfigurationNode.add_member(:redshift_source, Shapes::ShapeRef.new(shape: RedshiftSource, location_name: "RedshiftSource"))
|
1391
|
+
CodeGenConfigurationNode.add_member(:s3_catalog_source, Shapes::ShapeRef.new(shape: S3CatalogSource, location_name: "S3CatalogSource"))
|
1392
|
+
CodeGenConfigurationNode.add_member(:s3_csv_source, Shapes::ShapeRef.new(shape: S3CsvSource, location_name: "S3CsvSource"))
|
1393
|
+
CodeGenConfigurationNode.add_member(:s3_json_source, Shapes::ShapeRef.new(shape: S3JsonSource, location_name: "S3JsonSource"))
|
1394
|
+
CodeGenConfigurationNode.add_member(:s3_parquet_source, Shapes::ShapeRef.new(shape: S3ParquetSource, location_name: "S3ParquetSource"))
|
1395
|
+
CodeGenConfigurationNode.add_member(:relational_catalog_source, Shapes::ShapeRef.new(shape: RelationalCatalogSource, location_name: "RelationalCatalogSource"))
|
1396
|
+
CodeGenConfigurationNode.add_member(:dynamo_db_catalog_source, Shapes::ShapeRef.new(shape: DynamoDBCatalogSource, location_name: "DynamoDBCatalogSource"))
|
1397
|
+
CodeGenConfigurationNode.add_member(:jdbc_connector_target, Shapes::ShapeRef.new(shape: JDBCConnectorTarget, location_name: "JDBCConnectorTarget"))
|
1398
|
+
CodeGenConfigurationNode.add_member(:spark_connector_target, Shapes::ShapeRef.new(shape: SparkConnectorTarget, location_name: "SparkConnectorTarget"))
|
1399
|
+
CodeGenConfigurationNode.add_member(:catalog_target, Shapes::ShapeRef.new(shape: BasicCatalogTarget, location_name: "CatalogTarget"))
|
1400
|
+
CodeGenConfigurationNode.add_member(:redshift_target, Shapes::ShapeRef.new(shape: RedshiftTarget, location_name: "RedshiftTarget"))
|
1401
|
+
CodeGenConfigurationNode.add_member(:s3_catalog_target, Shapes::ShapeRef.new(shape: S3CatalogTarget, location_name: "S3CatalogTarget"))
|
1402
|
+
CodeGenConfigurationNode.add_member(:s3_glue_parquet_target, Shapes::ShapeRef.new(shape: S3GlueParquetTarget, location_name: "S3GlueParquetTarget"))
|
1403
|
+
CodeGenConfigurationNode.add_member(:s3_direct_target, Shapes::ShapeRef.new(shape: S3DirectTarget, location_name: "S3DirectTarget"))
|
1404
|
+
CodeGenConfigurationNode.add_member(:apply_mapping, Shapes::ShapeRef.new(shape: ApplyMapping, location_name: "ApplyMapping"))
|
1405
|
+
CodeGenConfigurationNode.add_member(:select_fields, Shapes::ShapeRef.new(shape: SelectFields, location_name: "SelectFields"))
|
1406
|
+
CodeGenConfigurationNode.add_member(:drop_fields, Shapes::ShapeRef.new(shape: DropFields, location_name: "DropFields"))
|
1407
|
+
CodeGenConfigurationNode.add_member(:rename_field, Shapes::ShapeRef.new(shape: RenameField, location_name: "RenameField"))
|
1408
|
+
CodeGenConfigurationNode.add_member(:spigot, Shapes::ShapeRef.new(shape: Spigot, location_name: "Spigot"))
|
1409
|
+
CodeGenConfigurationNode.add_member(:join, Shapes::ShapeRef.new(shape: Join, location_name: "Join"))
|
1410
|
+
CodeGenConfigurationNode.add_member(:split_fields, Shapes::ShapeRef.new(shape: SplitFields, location_name: "SplitFields"))
|
1411
|
+
CodeGenConfigurationNode.add_member(:select_from_collection, Shapes::ShapeRef.new(shape: SelectFromCollection, location_name: "SelectFromCollection"))
|
1412
|
+
CodeGenConfigurationNode.add_member(:fill_missing_values, Shapes::ShapeRef.new(shape: FillMissingValues, location_name: "FillMissingValues"))
|
1413
|
+
CodeGenConfigurationNode.add_member(:filter, Shapes::ShapeRef.new(shape: Filter, location_name: "Filter"))
|
1414
|
+
CodeGenConfigurationNode.add_member(:custom_code, Shapes::ShapeRef.new(shape: CustomCode, location_name: "CustomCode"))
|
1415
|
+
CodeGenConfigurationNode.add_member(:spark_sql, Shapes::ShapeRef.new(shape: SparkSQL, location_name: "SparkSQL"))
|
1416
|
+
CodeGenConfigurationNode.add_member(:direct_kinesis_source, Shapes::ShapeRef.new(shape: DirectKinesisSource, location_name: "DirectKinesisSource"))
|
1417
|
+
CodeGenConfigurationNode.add_member(:direct_kafka_source, Shapes::ShapeRef.new(shape: DirectKafkaSource, location_name: "DirectKafkaSource"))
|
1418
|
+
CodeGenConfigurationNode.add_member(:catalog_kinesis_source, Shapes::ShapeRef.new(shape: CatalogKinesisSource, location_name: "CatalogKinesisSource"))
|
1419
|
+
CodeGenConfigurationNode.add_member(:catalog_kafka_source, Shapes::ShapeRef.new(shape: CatalogKafkaSource, location_name: "CatalogKafkaSource"))
|
1420
|
+
CodeGenConfigurationNode.add_member(:drop_null_fields, Shapes::ShapeRef.new(shape: DropNullFields, location_name: "DropNullFields"))
|
1421
|
+
CodeGenConfigurationNode.add_member(:merge, Shapes::ShapeRef.new(shape: Merge, location_name: "Merge"))
|
1422
|
+
CodeGenConfigurationNode.add_member(:union, Shapes::ShapeRef.new(shape: Union, location_name: "Union"))
|
1423
|
+
CodeGenConfigurationNode.add_member(:pii_detection, Shapes::ShapeRef.new(shape: PIIDetection, location_name: "PIIDetection"))
|
1424
|
+
CodeGenConfigurationNode.add_member(:aggregate, Shapes::ShapeRef.new(shape: Aggregate, location_name: "Aggregate"))
|
1425
|
+
CodeGenConfigurationNode.add_member(:drop_duplicates, Shapes::ShapeRef.new(shape: DropDuplicates, location_name: "DropDuplicates"))
|
1426
|
+
CodeGenConfigurationNode.add_member(:governed_catalog_target, Shapes::ShapeRef.new(shape: GovernedCatalogTarget, location_name: "GovernedCatalogTarget"))
|
1427
|
+
CodeGenConfigurationNode.add_member(:governed_catalog_source, Shapes::ShapeRef.new(shape: GovernedCatalogSource, location_name: "GovernedCatalogSource"))
|
1428
|
+
CodeGenConfigurationNode.add_member(:microsoft_sql_server_catalog_source, Shapes::ShapeRef.new(shape: MicrosoftSQLServerCatalogSource, location_name: "MicrosoftSQLServerCatalogSource"))
|
1429
|
+
CodeGenConfigurationNode.add_member(:my_sql_catalog_source, Shapes::ShapeRef.new(shape: MySQLCatalogSource, location_name: "MySQLCatalogSource"))
|
1430
|
+
CodeGenConfigurationNode.add_member(:oracle_sql_catalog_source, Shapes::ShapeRef.new(shape: OracleSQLCatalogSource, location_name: "OracleSQLCatalogSource"))
|
1431
|
+
CodeGenConfigurationNode.add_member(:postgre_sql_catalog_source, Shapes::ShapeRef.new(shape: PostgreSQLCatalogSource, location_name: "PostgreSQLCatalogSource"))
|
1432
|
+
CodeGenConfigurationNode.add_member(:microsoft_sql_server_catalog_target, Shapes::ShapeRef.new(shape: MicrosoftSQLServerCatalogTarget, location_name: "MicrosoftSQLServerCatalogTarget"))
|
1433
|
+
CodeGenConfigurationNode.add_member(:my_sql_catalog_target, Shapes::ShapeRef.new(shape: MySQLCatalogTarget, location_name: "MySQLCatalogTarget"))
|
1434
|
+
CodeGenConfigurationNode.add_member(:oracle_sql_catalog_target, Shapes::ShapeRef.new(shape: OracleSQLCatalogTarget, location_name: "OracleSQLCatalogTarget"))
|
1435
|
+
CodeGenConfigurationNode.add_member(:postgre_sql_catalog_target, Shapes::ShapeRef.new(shape: PostgreSQLCatalogTarget, location_name: "PostgreSQLCatalogTarget"))
|
1436
|
+
CodeGenConfigurationNode.struct_class = Types::CodeGenConfigurationNode
|
1437
|
+
|
1438
|
+
CodeGenConfigurationNodes.key = Shapes::ShapeRef.new(shape: NodeId)
|
1439
|
+
CodeGenConfigurationNodes.value = Shapes::ShapeRef.new(shape: CodeGenConfigurationNode)
|
1440
|
+
|
1176
1441
|
CodeGenEdge.add_member(:source, Shapes::ShapeRef.new(shape: CodeGenIdentifier, required: true, location_name: "Source"))
|
1177
1442
|
CodeGenEdge.add_member(:target, Shapes::ShapeRef.new(shape: CodeGenIdentifier, required: true, location_name: "Target"))
|
1178
1443
|
CodeGenEdge.add_member(:target_parameter, Shapes::ShapeRef.new(shape: CodeGenArgName, location_name: "TargetParameter"))
|
@@ -1301,6 +1566,8 @@ module Aws::Glue
|
|
1301
1566
|
ConnectionsList.add_member(:connections, Shapes::ShapeRef.new(shape: OrchestrationStringList, location_name: "Connections"))
|
1302
1567
|
ConnectionsList.struct_class = Types::ConnectionsList
|
1303
1568
|
|
1569
|
+
ContextWords.member = Shapes::ShapeRef.new(shape: NameString)
|
1570
|
+
|
1304
1571
|
Crawl.add_member(:state, Shapes::ShapeRef.new(shape: CrawlState, location_name: "State"))
|
1305
1572
|
Crawl.add_member(:started_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "StartedOn"))
|
1306
1573
|
Crawl.add_member(:completed_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "CompletedOn"))
|
@@ -1421,6 +1688,14 @@ module Aws::Glue
|
|
1421
1688
|
CreateCsvClassifierRequest.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
|
1422
1689
|
CreateCsvClassifierRequest.struct_class = Types::CreateCsvClassifierRequest
|
1423
1690
|
|
1691
|
+
CreateCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1692
|
+
CreateCustomEntityTypeRequest.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
|
1693
|
+
CreateCustomEntityTypeRequest.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
1694
|
+
CreateCustomEntityTypeRequest.struct_class = Types::CreateCustomEntityTypeRequest
|
1695
|
+
|
1696
|
+
CreateCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
1697
|
+
CreateCustomEntityTypeResponse.struct_class = Types::CreateCustomEntityTypeResponse
|
1698
|
+
|
1424
1699
|
CreateDatabaseRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
1425
1700
|
CreateDatabaseRequest.add_member(:database_input, Shapes::ShapeRef.new(shape: DatabaseInput, required: true, location_name: "DatabaseInput"))
|
1426
1701
|
CreateDatabaseRequest.struct_class = Types::CreateDatabaseRequest
|
@@ -1490,6 +1765,7 @@ module Aws::Glue
|
|
1490
1765
|
CreateJobRequest.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
|
1491
1766
|
CreateJobRequest.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "NumberOfWorkers"))
|
1492
1767
|
CreateJobRequest.add_member(:worker_type, Shapes::ShapeRef.new(shape: WorkerType, location_name: "WorkerType"))
|
1768
|
+
CreateJobRequest.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
|
1493
1769
|
CreateJobRequest.struct_class = Types::CreateJobRequest
|
1494
1770
|
|
1495
1771
|
CreateJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
@@ -1666,6 +1942,22 @@ module Aws::Glue
|
|
1666
1942
|
|
1667
1943
|
CsvHeader.member = Shapes::ShapeRef.new(shape: NameString)
|
1668
1944
|
|
1945
|
+
CustomCode.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1946
|
+
CustomCode.add_member(:inputs, Shapes::ShapeRef.new(shape: ManyInputs, required: true, location_name: "Inputs"))
|
1947
|
+
CustomCode.add_member(:code, Shapes::ShapeRef.new(shape: ExtendedString, required: true, location_name: "Code"))
|
1948
|
+
CustomCode.add_member(:class_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ClassName"))
|
1949
|
+
CustomCode.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
1950
|
+
CustomCode.struct_class = Types::CustomCode
|
1951
|
+
|
1952
|
+
CustomEntityType.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1953
|
+
CustomEntityType.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
|
1954
|
+
CustomEntityType.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
1955
|
+
CustomEntityType.struct_class = Types::CustomEntityType
|
1956
|
+
|
1957
|
+
CustomEntityTypeNames.member = Shapes::ShapeRef.new(shape: NameString)
|
1958
|
+
|
1959
|
+
CustomEntityTypes.member = Shapes::ShapeRef.new(shape: CustomEntityType)
|
1960
|
+
|
1669
1961
|
DagEdges.member = Shapes::ShapeRef.new(shape: CodeGenEdge)
|
1670
1962
|
|
1671
1963
|
DagNodes.member = Shapes::ShapeRef.new(shape: CodeGenNode)
|
@@ -1701,6 +1993,10 @@ module Aws::Glue
|
|
1701
1993
|
|
1702
1994
|
DatabaseList.member = Shapes::ShapeRef.new(shape: Database)
|
1703
1995
|
|
1996
|
+
Datatype.add_member(:id, Shapes::ShapeRef.new(shape: GenericLimitedString, required: true, location_name: "Id"))
|
1997
|
+
Datatype.add_member(:label, Shapes::ShapeRef.new(shape: GenericLimitedString, required: true, location_name: "Label"))
|
1998
|
+
Datatype.struct_class = Types::Datatype
|
1999
|
+
|
1704
2000
|
DateColumnStatisticsData.add_member(:minimum_value, Shapes::ShapeRef.new(shape: Timestamp, location_name: "MinimumValue"))
|
1705
2001
|
DateColumnStatisticsData.add_member(:maximum_value, Shapes::ShapeRef.new(shape: Timestamp, location_name: "MaximumValue"))
|
1706
2002
|
DateColumnStatisticsData.add_member(:number_of_nulls, Shapes::ShapeRef.new(shape: NonNegativeLong, required: true, location_name: "NumberOfNulls"))
|
@@ -1758,6 +2054,12 @@ module Aws::Glue
|
|
1758
2054
|
|
1759
2055
|
DeleteCrawlerResponse.struct_class = Types::DeleteCrawlerResponse
|
1760
2056
|
|
2057
|
+
DeleteCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2058
|
+
DeleteCustomEntityTypeRequest.struct_class = Types::DeleteCustomEntityTypeRequest
|
2059
|
+
|
2060
|
+
DeleteCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
2061
|
+
DeleteCustomEntityTypeResponse.struct_class = Types::DeleteCustomEntityTypeResponse
|
2062
|
+
|
1761
2063
|
DeleteDatabaseRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
1762
2064
|
DeleteDatabaseRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1763
2065
|
DeleteDatabaseRequest.struct_class = Types::DeleteDatabaseRequest
|
@@ -1917,12 +2219,53 @@ module Aws::Glue
|
|
1917
2219
|
|
1918
2220
|
DevEndpointNames.member = Shapes::ShapeRef.new(shape: GenericString)
|
1919
2221
|
|
2222
|
+
DirectKafkaSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2223
|
+
DirectKafkaSource.add_member(:streaming_options, Shapes::ShapeRef.new(shape: KafkaStreamingSourceOptions, location_name: "StreamingOptions"))
|
2224
|
+
DirectKafkaSource.add_member(:window_size, Shapes::ShapeRef.new(shape: BoxedPositiveInt, location_name: "WindowSize", metadata: {"box"=>true}))
|
2225
|
+
DirectKafkaSource.add_member(:detect_schema, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "DetectSchema", metadata: {"box"=>true}))
|
2226
|
+
DirectKafkaSource.add_member(:data_preview_options, Shapes::ShapeRef.new(shape: StreamingDataPreviewOptions, location_name: "DataPreviewOptions"))
|
2227
|
+
DirectKafkaSource.struct_class = Types::DirectKafkaSource
|
2228
|
+
|
2229
|
+
DirectKinesisSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2230
|
+
DirectKinesisSource.add_member(:window_size, Shapes::ShapeRef.new(shape: BoxedPositiveInt, location_name: "WindowSize", metadata: {"box"=>true}))
|
2231
|
+
DirectKinesisSource.add_member(:detect_schema, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "DetectSchema", metadata: {"box"=>true}))
|
2232
|
+
DirectKinesisSource.add_member(:streaming_options, Shapes::ShapeRef.new(shape: KinesisStreamingSourceOptions, location_name: "StreamingOptions"))
|
2233
|
+
DirectKinesisSource.add_member(:data_preview_options, Shapes::ShapeRef.new(shape: StreamingDataPreviewOptions, location_name: "DataPreviewOptions"))
|
2234
|
+
DirectKinesisSource.struct_class = Types::DirectKinesisSource
|
2235
|
+
|
2236
|
+
DirectSchemaChangePolicy.add_member(:enable_update_catalog, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnableUpdateCatalog"))
|
2237
|
+
DirectSchemaChangePolicy.add_member(:update_behavior, Shapes::ShapeRef.new(shape: UpdateCatalogBehavior, location_name: "UpdateBehavior"))
|
2238
|
+
DirectSchemaChangePolicy.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Table"))
|
2239
|
+
DirectSchemaChangePolicy.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Database"))
|
2240
|
+
DirectSchemaChangePolicy.struct_class = Types::DirectSchemaChangePolicy
|
2241
|
+
|
1920
2242
|
DoubleColumnStatisticsData.add_member(:minimum_value, Shapes::ShapeRef.new(shape: Double, location_name: "MinimumValue"))
|
1921
2243
|
DoubleColumnStatisticsData.add_member(:maximum_value, Shapes::ShapeRef.new(shape: Double, location_name: "MaximumValue"))
|
1922
2244
|
DoubleColumnStatisticsData.add_member(:number_of_nulls, Shapes::ShapeRef.new(shape: NonNegativeLong, required: true, location_name: "NumberOfNulls"))
|
1923
2245
|
DoubleColumnStatisticsData.add_member(:number_of_distinct_values, Shapes::ShapeRef.new(shape: NonNegativeLong, required: true, location_name: "NumberOfDistinctValues"))
|
1924
2246
|
DoubleColumnStatisticsData.struct_class = Types::DoubleColumnStatisticsData
|
1925
2247
|
|
2248
|
+
DropDuplicates.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2249
|
+
DropDuplicates.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
2250
|
+
DropDuplicates.add_member(:columns, Shapes::ShapeRef.new(shape: LimitedPathList, location_name: "Columns"))
|
2251
|
+
DropDuplicates.struct_class = Types::DropDuplicates
|
2252
|
+
|
2253
|
+
DropFields.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2254
|
+
DropFields.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
2255
|
+
DropFields.add_member(:paths, Shapes::ShapeRef.new(shape: GlueStudioPathList, required: true, location_name: "Paths"))
|
2256
|
+
DropFields.struct_class = Types::DropFields
|
2257
|
+
|
2258
|
+
DropNullFields.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2259
|
+
DropNullFields.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
2260
|
+
DropNullFields.add_member(:null_check_box_list, Shapes::ShapeRef.new(shape: NullCheckBoxList, location_name: "NullCheckBoxList"))
|
2261
|
+
DropNullFields.add_member(:null_text_list, Shapes::ShapeRef.new(shape: NullValueFields, location_name: "NullTextList"))
|
2262
|
+
DropNullFields.struct_class = Types::DropNullFields
|
2263
|
+
|
2264
|
+
DynamoDBCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2265
|
+
DynamoDBCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
2266
|
+
DynamoDBCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
2267
|
+
DynamoDBCatalogSource.struct_class = Types::DynamoDBCatalogSource
|
2268
|
+
|
1926
2269
|
DynamoDBTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
1927
2270
|
DynamoDBTarget.add_member(:scan_all, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "scanAll"))
|
1928
2271
|
DynamoDBTarget.add_member(:scan_rate, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "scanRate"))
|
@@ -1936,6 +2279,10 @@ module Aws::Glue
|
|
1936
2279
|
|
1937
2280
|
EdgeList.member = Shapes::ShapeRef.new(shape: Edge)
|
1938
2281
|
|
2282
|
+
EnclosedInStringProperties.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
|
2283
|
+
|
2284
|
+
EnclosedInStringPropertiesMinOne.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperty)
|
2285
|
+
|
1939
2286
|
EncryptionAtRest.add_member(:catalog_encryption_mode, Shapes::ShapeRef.new(shape: CatalogEncryptionMode, required: true, location_name: "CatalogEncryptionMode"))
|
1940
2287
|
EncryptionAtRest.add_member(:sse_aws_kms_key_id, Shapes::ShapeRef.new(shape: NameString, location_name: "SseAwsKmsKeyId"))
|
1941
2288
|
EncryptionAtRest.struct_class = Types::EncryptionAtRest
|
@@ -1973,6 +2320,31 @@ module Aws::Glue
|
|
1973
2320
|
ExportLabelsTaskRunProperties.add_member(:output_s3_path, Shapes::ShapeRef.new(shape: UriString, location_name: "OutputS3Path"))
|
1974
2321
|
ExportLabelsTaskRunProperties.struct_class = Types::ExportLabelsTaskRunProperties
|
1975
2322
|
|
2323
|
+
FillMissingValues.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2324
|
+
FillMissingValues.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
2325
|
+
FillMissingValues.add_member(:imputed_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ImputedPath"))
|
2326
|
+
FillMissingValues.add_member(:filled_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "FilledPath"))
|
2327
|
+
FillMissingValues.struct_class = Types::FillMissingValues
|
2328
|
+
|
2329
|
+
Filter.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2330
|
+
Filter.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
2331
|
+
Filter.add_member(:logical_operator, Shapes::ShapeRef.new(shape: FilterLogicalOperator, required: true, location_name: "LogicalOperator"))
|
2332
|
+
Filter.add_member(:filters, Shapes::ShapeRef.new(shape: FilterExpressions, required: true, location_name: "Filters"))
|
2333
|
+
Filter.struct_class = Types::Filter
|
2334
|
+
|
2335
|
+
FilterExpression.add_member(:operation, Shapes::ShapeRef.new(shape: FilterOperation, required: true, location_name: "Operation"))
|
2336
|
+
FilterExpression.add_member(:negated, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Negated"))
|
2337
|
+
FilterExpression.add_member(:values, Shapes::ShapeRef.new(shape: FilterValues, required: true, location_name: "Values"))
|
2338
|
+
FilterExpression.struct_class = Types::FilterExpression
|
2339
|
+
|
2340
|
+
FilterExpressions.member = Shapes::ShapeRef.new(shape: FilterExpression)
|
2341
|
+
|
2342
|
+
FilterValue.add_member(:type, Shapes::ShapeRef.new(shape: FilterValueType, required: true, location_name: "Type"))
|
2343
|
+
FilterValue.add_member(:value, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "Value"))
|
2344
|
+
FilterValue.struct_class = Types::FilterValue
|
2345
|
+
|
2346
|
+
FilterValues.member = Shapes::ShapeRef.new(shape: FilterValue)
|
2347
|
+
|
1976
2348
|
FindMatchesMetrics.add_member(:area_under_pr_curve, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "AreaUnderPRCurve"))
|
1977
2349
|
FindMatchesMetrics.add_member(:precision, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "Precision"))
|
1978
2350
|
FindMatchesMetrics.add_member(:recall, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "Recall"))
|
@@ -2108,6 +2480,14 @@ module Aws::Glue
|
|
2108
2480
|
GetCrawlersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
2109
2481
|
GetCrawlersResponse.struct_class = Types::GetCrawlersResponse
|
2110
2482
|
|
2483
|
+
GetCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2484
|
+
GetCustomEntityTypeRequest.struct_class = Types::GetCustomEntityTypeRequest
|
2485
|
+
|
2486
|
+
GetCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
2487
|
+
GetCustomEntityTypeResponse.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, location_name: "RegexString"))
|
2488
|
+
GetCustomEntityTypeResponse.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
2489
|
+
GetCustomEntityTypeResponse.struct_class = Types::GetCustomEntityTypeResponse
|
2490
|
+
|
2111
2491
|
GetDataCatalogEncryptionSettingsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
2112
2492
|
GetDataCatalogEncryptionSettingsRequest.struct_class = Types::GetDataCatalogEncryptionSettingsRequest
|
2113
2493
|
|
@@ -2584,6 +2964,19 @@ module Aws::Glue
|
|
2584
2964
|
GluePolicy.add_member(:update_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdateTime"))
|
2585
2965
|
GluePolicy.struct_class = Types::GluePolicy
|
2586
2966
|
|
2967
|
+
GlueSchema.add_member(:columns, Shapes::ShapeRef.new(shape: GlueStudioSchemaColumnList, location_name: "Columns"))
|
2968
|
+
GlueSchema.struct_class = Types::GlueSchema
|
2969
|
+
|
2970
|
+
GlueSchemas.member = Shapes::ShapeRef.new(shape: GlueSchema)
|
2971
|
+
|
2972
|
+
GlueStudioPathList.member = Shapes::ShapeRef.new(shape: EnclosedInStringProperties)
|
2973
|
+
|
2974
|
+
GlueStudioSchemaColumn.add_member(:name, Shapes::ShapeRef.new(shape: GlueStudioColumnNameString, required: true, location_name: "Name"))
|
2975
|
+
GlueStudioSchemaColumn.add_member(:type, Shapes::ShapeRef.new(shape: ColumnTypeString, location_name: "Type"))
|
2976
|
+
GlueStudioSchemaColumn.struct_class = Types::GlueStudioSchemaColumn
|
2977
|
+
|
2978
|
+
GlueStudioSchemaColumnList.member = Shapes::ShapeRef.new(shape: GlueStudioSchemaColumn)
|
2979
|
+
|
2587
2980
|
GlueTable.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
|
2588
2981
|
GlueTable.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
|
2589
2982
|
GlueTable.add_member(:catalog_id, Shapes::ShapeRef.new(shape: NameString, location_name: "CatalogId"))
|
@@ -2592,6 +2985,21 @@ module Aws::Glue
|
|
2592
2985
|
|
2593
2986
|
GlueTables.member = Shapes::ShapeRef.new(shape: GlueTable)
|
2594
2987
|
|
2988
|
+
GovernedCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2989
|
+
GovernedCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
2990
|
+
GovernedCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
2991
|
+
GovernedCatalogSource.add_member(:partition_predicate, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "PartitionPredicate"))
|
2992
|
+
GovernedCatalogSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: S3SourceAdditionalOptions, location_name: "AdditionalOptions"))
|
2993
|
+
GovernedCatalogSource.struct_class = Types::GovernedCatalogSource
|
2994
|
+
|
2995
|
+
GovernedCatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
2996
|
+
GovernedCatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
2997
|
+
GovernedCatalogTarget.add_member(:partition_keys, Shapes::ShapeRef.new(shape: GlueStudioPathList, location_name: "PartitionKeys"))
|
2998
|
+
GovernedCatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
2999
|
+
GovernedCatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3000
|
+
GovernedCatalogTarget.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: CatalogSchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
3001
|
+
GovernedCatalogTarget.struct_class = Types::GovernedCatalogTarget
|
3002
|
+
|
2595
3003
|
GrokClassifier.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2596
3004
|
GrokClassifier.add_member(:classification, Shapes::ShapeRef.new(shape: Classification, required: true, location_name: "Classification"))
|
2597
3005
|
GrokClassifier.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
@@ -2631,6 +3039,39 @@ module Aws::Glue
|
|
2631
3039
|
InvalidStateException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
2632
3040
|
InvalidStateException.struct_class = Types::InvalidStateException
|
2633
3041
|
|
3042
|
+
JDBCConnectorOptions.add_member(:filter_predicate, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "FilterPredicate"))
|
3043
|
+
JDBCConnectorOptions.add_member(:partition_column, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "PartitionColumn"))
|
3044
|
+
JDBCConnectorOptions.add_member(:lower_bound, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "LowerBound"))
|
3045
|
+
JDBCConnectorOptions.add_member(:upper_bound, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "UpperBound"))
|
3046
|
+
JDBCConnectorOptions.add_member(:num_partitions, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "NumPartitions"))
|
3047
|
+
JDBCConnectorOptions.add_member(:job_bookmark_keys, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "JobBookmarkKeys"))
|
3048
|
+
JDBCConnectorOptions.add_member(:job_bookmark_keys_sort_order, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "JobBookmarkKeysSortOrder"))
|
3049
|
+
JDBCConnectorOptions.add_member(:data_type_mapping, Shapes::ShapeRef.new(shape: JDBCDataTypeMapping, location_name: "DataTypeMapping"))
|
3050
|
+
JDBCConnectorOptions.struct_class = Types::JDBCConnectorOptions
|
3051
|
+
|
3052
|
+
JDBCConnectorSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3053
|
+
JDBCConnectorSource.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionName"))
|
3054
|
+
JDBCConnectorSource.add_member(:connector_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectorName"))
|
3055
|
+
JDBCConnectorSource.add_member(:connection_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionType"))
|
3056
|
+
JDBCConnectorSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: JDBCConnectorOptions, location_name: "AdditionalOptions"))
|
3057
|
+
JDBCConnectorSource.add_member(:connection_table, Shapes::ShapeRef.new(shape: EnclosedInStringPropertyWithQuote, location_name: "ConnectionTable"))
|
3058
|
+
JDBCConnectorSource.add_member(:query, Shapes::ShapeRef.new(shape: SqlQuery, location_name: "Query"))
|
3059
|
+
JDBCConnectorSource.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
3060
|
+
JDBCConnectorSource.struct_class = Types::JDBCConnectorSource
|
3061
|
+
|
3062
|
+
JDBCConnectorTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3063
|
+
JDBCConnectorTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3064
|
+
JDBCConnectorTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionName"))
|
3065
|
+
JDBCConnectorTarget.add_member(:connection_table, Shapes::ShapeRef.new(shape: EnclosedInStringPropertyWithQuote, required: true, location_name: "ConnectionTable"))
|
3066
|
+
JDBCConnectorTarget.add_member(:connector_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectorName"))
|
3067
|
+
JDBCConnectorTarget.add_member(:connection_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionType"))
|
3068
|
+
JDBCConnectorTarget.add_member(:additional_options, Shapes::ShapeRef.new(shape: AdditionalOptions, location_name: "AdditionalOptions"))
|
3069
|
+
JDBCConnectorTarget.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
3070
|
+
JDBCConnectorTarget.struct_class = Types::JDBCConnectorTarget
|
3071
|
+
|
3072
|
+
JDBCDataTypeMapping.key = Shapes::ShapeRef.new(shape: JDBCDataType)
|
3073
|
+
JDBCDataTypeMapping.value = Shapes::ShapeRef.new(shape: GlueRecordType)
|
3074
|
+
|
2634
3075
|
JdbcTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
2635
3076
|
JdbcTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
2636
3077
|
JdbcTarget.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
|
@@ -2658,6 +3099,7 @@ module Aws::Glue
|
|
2658
3099
|
Job.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
2659
3100
|
Job.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
2660
3101
|
Job.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
|
3102
|
+
Job.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
|
2661
3103
|
Job.struct_class = Types::Job
|
2662
3104
|
|
2663
3105
|
JobBookmarkEntry.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
|
@@ -2729,8 +3171,21 @@ module Aws::Glue
|
|
2729
3171
|
JobUpdate.add_member(:security_configuration, Shapes::ShapeRef.new(shape: NameString, location_name: "SecurityConfiguration"))
|
2730
3172
|
JobUpdate.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
|
2731
3173
|
JobUpdate.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
|
3174
|
+
JobUpdate.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
|
2732
3175
|
JobUpdate.struct_class = Types::JobUpdate
|
2733
3176
|
|
3177
|
+
Join.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3178
|
+
Join.add_member(:inputs, Shapes::ShapeRef.new(shape: TwoInputs, required: true, location_name: "Inputs"))
|
3179
|
+
Join.add_member(:join_type, Shapes::ShapeRef.new(shape: JoinType, required: true, location_name: "JoinType"))
|
3180
|
+
Join.add_member(:columns, Shapes::ShapeRef.new(shape: JoinColumns, required: true, location_name: "Columns"))
|
3181
|
+
Join.struct_class = Types::Join
|
3182
|
+
|
3183
|
+
JoinColumn.add_member(:from, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "From"))
|
3184
|
+
JoinColumn.add_member(:keys, Shapes::ShapeRef.new(shape: GlueStudioPathList, required: true, location_name: "Keys"))
|
3185
|
+
JoinColumn.struct_class = Types::JoinColumn
|
3186
|
+
|
3187
|
+
JoinColumns.member = Shapes::ShapeRef.new(shape: JoinColumn)
|
3188
|
+
|
2734
3189
|
JsonClassifier.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2735
3190
|
JsonClassifier.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
2736
3191
|
JsonClassifier.add_member(:last_updated, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdated"))
|
@@ -2738,6 +3193,23 @@ module Aws::Glue
|
|
2738
3193
|
JsonClassifier.add_member(:json_path, Shapes::ShapeRef.new(shape: JsonPath, required: true, location_name: "JsonPath"))
|
2739
3194
|
JsonClassifier.struct_class = Types::JsonClassifier
|
2740
3195
|
|
3196
|
+
KafkaStreamingSourceOptions.add_member(:bootstrap_servers, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "BootstrapServers"))
|
3197
|
+
KafkaStreamingSourceOptions.add_member(:security_protocol, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "SecurityProtocol"))
|
3198
|
+
KafkaStreamingSourceOptions.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ConnectionName"))
|
3199
|
+
KafkaStreamingSourceOptions.add_member(:topic_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "TopicName"))
|
3200
|
+
KafkaStreamingSourceOptions.add_member(:assign, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Assign"))
|
3201
|
+
KafkaStreamingSourceOptions.add_member(:subscribe_pattern, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "SubscribePattern"))
|
3202
|
+
KafkaStreamingSourceOptions.add_member(:classification, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Classification"))
|
3203
|
+
KafkaStreamingSourceOptions.add_member(:delimiter, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Delimiter"))
|
3204
|
+
KafkaStreamingSourceOptions.add_member(:starting_offsets, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "StartingOffsets"))
|
3205
|
+
KafkaStreamingSourceOptions.add_member(:ending_offsets, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "EndingOffsets"))
|
3206
|
+
KafkaStreamingSourceOptions.add_member(:poll_timeout_ms, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "PollTimeoutMs"))
|
3207
|
+
KafkaStreamingSourceOptions.add_member(:num_retries, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "NumRetries"))
|
3208
|
+
KafkaStreamingSourceOptions.add_member(:retry_interval_ms, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "RetryIntervalMs"))
|
3209
|
+
KafkaStreamingSourceOptions.add_member(:max_offsets_per_trigger, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "MaxOffsetsPerTrigger"))
|
3210
|
+
KafkaStreamingSourceOptions.add_member(:min_partitions, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MinPartitions"))
|
3211
|
+
KafkaStreamingSourceOptions.struct_class = Types::KafkaStreamingSourceOptions
|
3212
|
+
|
2741
3213
|
KeyList.member = Shapes::ShapeRef.new(shape: NameString)
|
2742
3214
|
|
2743
3215
|
KeySchemaElement.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
@@ -2746,6 +3218,26 @@ module Aws::Glue
|
|
2746
3218
|
|
2747
3219
|
KeySchemaElementList.member = Shapes::ShapeRef.new(shape: KeySchemaElement)
|
2748
3220
|
|
3221
|
+
KinesisStreamingSourceOptions.add_member(:endpoint_url, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "EndpointUrl"))
|
3222
|
+
KinesisStreamingSourceOptions.add_member(:stream_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "StreamName"))
|
3223
|
+
KinesisStreamingSourceOptions.add_member(:classification, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Classification"))
|
3224
|
+
KinesisStreamingSourceOptions.add_member(:delimiter, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Delimiter"))
|
3225
|
+
KinesisStreamingSourceOptions.add_member(:starting_position, Shapes::ShapeRef.new(shape: StartingPosition, location_name: "StartingPosition"))
|
3226
|
+
KinesisStreamingSourceOptions.add_member(:max_fetch_time_in_ms, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "MaxFetchTimeInMs"))
|
3227
|
+
KinesisStreamingSourceOptions.add_member(:max_fetch_records_per_shard, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "MaxFetchRecordsPerShard"))
|
3228
|
+
KinesisStreamingSourceOptions.add_member(:max_record_per_read, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "MaxRecordPerRead"))
|
3229
|
+
KinesisStreamingSourceOptions.add_member(:add_idle_time_between_reads, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "AddIdleTimeBetweenReads"))
|
3230
|
+
KinesisStreamingSourceOptions.add_member(:idle_time_between_reads_in_ms, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "IdleTimeBetweenReadsInMs"))
|
3231
|
+
KinesisStreamingSourceOptions.add_member(:describe_shard_interval, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "DescribeShardInterval"))
|
3232
|
+
KinesisStreamingSourceOptions.add_member(:num_retries, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "NumRetries"))
|
3233
|
+
KinesisStreamingSourceOptions.add_member(:retry_interval_ms, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "RetryIntervalMs"))
|
3234
|
+
KinesisStreamingSourceOptions.add_member(:max_retry_interval_ms, Shapes::ShapeRef.new(shape: BoxedNonNegativeLong, location_name: "MaxRetryIntervalMs"))
|
3235
|
+
KinesisStreamingSourceOptions.add_member(:avoid_empty_batches, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "AvoidEmptyBatches"))
|
3236
|
+
KinesisStreamingSourceOptions.add_member(:stream_arn, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "StreamArn"))
|
3237
|
+
KinesisStreamingSourceOptions.add_member(:role_arn, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "RoleArn"))
|
3238
|
+
KinesisStreamingSourceOptions.add_member(:role_session_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "RoleSessionName"))
|
3239
|
+
KinesisStreamingSourceOptions.struct_class = Types::KinesisStreamingSourceOptions
|
3240
|
+
|
2749
3241
|
LabelingSetGenerationTaskRunProperties.add_member(:output_s3_path, Shapes::ShapeRef.new(shape: UriString, location_name: "OutputS3Path"))
|
2750
3242
|
LabelingSetGenerationTaskRunProperties.struct_class = Types::LabelingSetGenerationTaskRunProperties
|
2751
3243
|
|
@@ -2768,6 +3260,10 @@ module Aws::Glue
|
|
2768
3260
|
LastCrawlInfo.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
|
2769
3261
|
LastCrawlInfo.struct_class = Types::LastCrawlInfo
|
2770
3262
|
|
3263
|
+
LimitedPathList.member = Shapes::ShapeRef.new(shape: LimitedStringList)
|
3264
|
+
|
3265
|
+
LimitedStringList.member = Shapes::ShapeRef.new(shape: GenericLimitedString)
|
3266
|
+
|
2771
3267
|
LineageConfiguration.add_member(:crawler_lineage_settings, Shapes::ShapeRef.new(shape: CrawlerLineageSettings, location_name: "CrawlerLineageSettings"))
|
2772
3268
|
LineageConfiguration.struct_class = Types::LineageConfiguration
|
2773
3269
|
|
@@ -2789,6 +3285,14 @@ module Aws::Glue
|
|
2789
3285
|
ListCrawlersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
2790
3286
|
ListCrawlersResponse.struct_class = Types::ListCrawlersResponse
|
2791
3287
|
|
3288
|
+
ListCustomEntityTypesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
3289
|
+
ListCustomEntityTypesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
3290
|
+
ListCustomEntityTypesRequest.struct_class = Types::ListCustomEntityTypesRequest
|
3291
|
+
|
3292
|
+
ListCustomEntityTypesResponse.add_member(:custom_entity_types, Shapes::ShapeRef.new(shape: CustomEntityTypes, location_name: "CustomEntityTypes"))
|
3293
|
+
ListCustomEntityTypesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
3294
|
+
ListCustomEntityTypesResponse.struct_class = Types::ListCustomEntityTypesResponse
|
3295
|
+
|
2792
3296
|
ListDevEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: GenericString, location_name: "NextToken"))
|
2793
3297
|
ListDevEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
2794
3298
|
ListDevEndpointsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
@@ -2926,9 +3430,19 @@ module Aws::Glue
|
|
2926
3430
|
MLUserDataEncryption.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NameString, location_name: "KmsKeyId"))
|
2927
3431
|
MLUserDataEncryption.struct_class = Types::MLUserDataEncryption
|
2928
3432
|
|
3433
|
+
ManyInputs.member = Shapes::ShapeRef.new(shape: NodeId)
|
3434
|
+
|
2929
3435
|
MapValue.key = Shapes::ShapeRef.new(shape: GenericString)
|
2930
3436
|
MapValue.value = Shapes::ShapeRef.new(shape: GenericString)
|
2931
3437
|
|
3438
|
+
Mapping.add_member(:to_key, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ToKey"))
|
3439
|
+
Mapping.add_member(:from_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "FromPath"))
|
3440
|
+
Mapping.add_member(:from_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "FromType"))
|
3441
|
+
Mapping.add_member(:to_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ToType"))
|
3442
|
+
Mapping.add_member(:dropped, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Dropped"))
|
3443
|
+
Mapping.add_member(:children, Shapes::ShapeRef.new(shape: Mappings, location_name: "Children"))
|
3444
|
+
Mapping.struct_class = Types::Mapping
|
3445
|
+
|
2932
3446
|
MappingEntry.add_member(:source_table, Shapes::ShapeRef.new(shape: TableName, location_name: "SourceTable"))
|
2933
3447
|
MappingEntry.add_member(:source_path, Shapes::ShapeRef.new(shape: SchemaPathString, location_name: "SourcePath"))
|
2934
3448
|
MappingEntry.add_member(:source_type, Shapes::ShapeRef.new(shape: FieldType, location_name: "SourceType"))
|
@@ -2939,8 +3453,16 @@ module Aws::Glue
|
|
2939
3453
|
|
2940
3454
|
MappingList.member = Shapes::ShapeRef.new(shape: MappingEntry)
|
2941
3455
|
|
3456
|
+
Mappings.member = Shapes::ShapeRef.new(shape: Mapping)
|
3457
|
+
|
2942
3458
|
MatchCriteria.member = Shapes::ShapeRef.new(shape: NameString)
|
2943
3459
|
|
3460
|
+
Merge.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3461
|
+
Merge.add_member(:inputs, Shapes::ShapeRef.new(shape: TwoInputs, required: true, location_name: "Inputs"))
|
3462
|
+
Merge.add_member(:source, Shapes::ShapeRef.new(shape: NodeId, required: true, location_name: "Source"))
|
3463
|
+
Merge.add_member(:primary_keys, Shapes::ShapeRef.new(shape: GlueStudioPathList, required: true, location_name: "PrimaryKeys"))
|
3464
|
+
Merge.struct_class = Types::Merge
|
3465
|
+
|
2944
3466
|
MetadataInfo.add_member(:metadata_value, Shapes::ShapeRef.new(shape: MetadataValueString, location_name: "MetadataValue"))
|
2945
3467
|
MetadataInfo.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTimestamp, location_name: "CreatedTime"))
|
2946
3468
|
MetadataInfo.add_member(:other_metadata_value_list, Shapes::ShapeRef.new(shape: OtherMetadataValueList, location_name: "OtherMetadataValueList"))
|
@@ -2955,6 +3477,17 @@ module Aws::Glue
|
|
2955
3477
|
|
2956
3478
|
MetadataList.member = Shapes::ShapeRef.new(shape: MetadataKeyValuePair)
|
2957
3479
|
|
3480
|
+
MicrosoftSQLServerCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3481
|
+
MicrosoftSQLServerCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3482
|
+
MicrosoftSQLServerCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3483
|
+
MicrosoftSQLServerCatalogSource.struct_class = Types::MicrosoftSQLServerCatalogSource
|
3484
|
+
|
3485
|
+
MicrosoftSQLServerCatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3486
|
+
MicrosoftSQLServerCatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3487
|
+
MicrosoftSQLServerCatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3488
|
+
MicrosoftSQLServerCatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3489
|
+
MicrosoftSQLServerCatalogTarget.struct_class = Types::MicrosoftSQLServerCatalogTarget
|
3490
|
+
|
2958
3491
|
MongoDBTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
2959
3492
|
MongoDBTarget.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
2960
3493
|
MongoDBTarget.add_member(:scan_all, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "ScanAll"))
|
@@ -2962,6 +3495,17 @@ module Aws::Glue
|
|
2962
3495
|
|
2963
3496
|
MongoDBTargetList.member = Shapes::ShapeRef.new(shape: MongoDBTarget)
|
2964
3497
|
|
3498
|
+
MySQLCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3499
|
+
MySQLCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3500
|
+
MySQLCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3501
|
+
MySQLCatalogSource.struct_class = Types::MySQLCatalogSource
|
3502
|
+
|
3503
|
+
MySQLCatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3504
|
+
MySQLCatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3505
|
+
MySQLCatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3506
|
+
MySQLCatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3507
|
+
MySQLCatalogTarget.struct_class = Types::MySQLCatalogTarget
|
3508
|
+
|
2965
3509
|
NameStringList.member = Shapes::ShapeRef.new(shape: NameString)
|
2966
3510
|
|
2967
3511
|
NoScheduleException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
@@ -2982,9 +3526,33 @@ module Aws::Glue
|
|
2982
3526
|
NotificationProperty.add_member(:notify_delay_after, Shapes::ShapeRef.new(shape: NotifyDelayAfter, location_name: "NotifyDelayAfter"))
|
2983
3527
|
NotificationProperty.struct_class = Types::NotificationProperty
|
2984
3528
|
|
3529
|
+
NullCheckBoxList.add_member(:is_empty, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "IsEmpty"))
|
3530
|
+
NullCheckBoxList.add_member(:is_null_string, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "IsNullString"))
|
3531
|
+
NullCheckBoxList.add_member(:is_neg_one, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "IsNegOne"))
|
3532
|
+
NullCheckBoxList.struct_class = Types::NullCheckBoxList
|
3533
|
+
|
3534
|
+
NullValueField.add_member(:value, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Value"))
|
3535
|
+
NullValueField.add_member(:datatype, Shapes::ShapeRef.new(shape: Datatype, required: true, location_name: "Datatype"))
|
3536
|
+
NullValueField.struct_class = Types::NullValueField
|
3537
|
+
|
3538
|
+
NullValueFields.member = Shapes::ShapeRef.new(shape: NullValueField)
|
3539
|
+
|
3540
|
+
OneInput.member = Shapes::ShapeRef.new(shape: NodeId)
|
3541
|
+
|
2985
3542
|
OperationTimeoutException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
2986
3543
|
OperationTimeoutException.struct_class = Types::OperationTimeoutException
|
2987
3544
|
|
3545
|
+
OracleSQLCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3546
|
+
OracleSQLCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3547
|
+
OracleSQLCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3548
|
+
OracleSQLCatalogSource.struct_class = Types::OracleSQLCatalogSource
|
3549
|
+
|
3550
|
+
OracleSQLCatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3551
|
+
OracleSQLCatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3552
|
+
OracleSQLCatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3553
|
+
OracleSQLCatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3554
|
+
OracleSQLCatalogTarget.struct_class = Types::OracleSQLCatalogTarget
|
3555
|
+
|
2988
3556
|
OrchestrationArgumentsMap.key = Shapes::ShapeRef.new(shape: OrchestrationNameString)
|
2989
3557
|
OrchestrationArgumentsMap.value = Shapes::ShapeRef.new(shape: OrchestrationArgumentsValue)
|
2990
3558
|
|
@@ -3002,6 +3570,16 @@ module Aws::Glue
|
|
3002
3570
|
OtherMetadataValueListItem.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTimestamp, location_name: "CreatedTime"))
|
3003
3571
|
OtherMetadataValueListItem.struct_class = Types::OtherMetadataValueListItem
|
3004
3572
|
|
3573
|
+
PIIDetection.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3574
|
+
PIIDetection.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3575
|
+
PIIDetection.add_member(:pii_type, Shapes::ShapeRef.new(shape: PiiType, required: true, location_name: "PiiType"))
|
3576
|
+
PIIDetection.add_member(:entity_types_to_detect, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "EntityTypesToDetect"))
|
3577
|
+
PIIDetection.add_member(:output_column_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "OutputColumnName"))
|
3578
|
+
PIIDetection.add_member(:sample_fraction, Shapes::ShapeRef.new(shape: BoxedDoubleFraction, location_name: "SampleFraction"))
|
3579
|
+
PIIDetection.add_member(:threshold_fraction, Shapes::ShapeRef.new(shape: BoxedDoubleFraction, location_name: "ThresholdFraction"))
|
3580
|
+
PIIDetection.add_member(:mask_value, Shapes::ShapeRef.new(shape: MaskValue, location_name: "MaskValue"))
|
3581
|
+
PIIDetection.struct_class = Types::PIIDetection
|
3582
|
+
|
3005
3583
|
ParametersMap.key = Shapes::ShapeRef.new(shape: KeyString)
|
3006
3584
|
ParametersMap.value = Shapes::ShapeRef.new(shape: ParametersMapValue)
|
3007
3585
|
|
@@ -3064,6 +3642,17 @@ module Aws::Glue
|
|
3064
3642
|
PhysicalConnectionRequirements.add_member(:availability_zone, Shapes::ShapeRef.new(shape: NameString, location_name: "AvailabilityZone"))
|
3065
3643
|
PhysicalConnectionRequirements.struct_class = Types::PhysicalConnectionRequirements
|
3066
3644
|
|
3645
|
+
PostgreSQLCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3646
|
+
PostgreSQLCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3647
|
+
PostgreSQLCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3648
|
+
PostgreSQLCatalogSource.struct_class = Types::PostgreSQLCatalogSource
|
3649
|
+
|
3650
|
+
PostgreSQLCatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3651
|
+
PostgreSQLCatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3652
|
+
PostgreSQLCatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3653
|
+
PostgreSQLCatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3654
|
+
PostgreSQLCatalogTarget.struct_class = Types::PostgreSQLCatalogTarget
|
3655
|
+
|
3067
3656
|
Predecessor.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
|
3068
3657
|
Predecessor.add_member(:run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "RunId"))
|
3069
3658
|
Predecessor.struct_class = Types::Predecessor
|
@@ -3142,6 +3731,22 @@ module Aws::Glue
|
|
3142
3731
|
RecrawlPolicy.add_member(:recrawl_behavior, Shapes::ShapeRef.new(shape: RecrawlBehavior, location_name: "RecrawlBehavior"))
|
3143
3732
|
RecrawlPolicy.struct_class = Types::RecrawlPolicy
|
3144
3733
|
|
3734
|
+
RedshiftSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3735
|
+
RedshiftSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3736
|
+
RedshiftSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3737
|
+
RedshiftSource.add_member(:redshift_tmp_dir, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "RedshiftTmpDir"))
|
3738
|
+
RedshiftSource.add_member(:tmp_dir_iam_role, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "TmpDirIAMRole"))
|
3739
|
+
RedshiftSource.struct_class = Types::RedshiftSource
|
3740
|
+
|
3741
|
+
RedshiftTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3742
|
+
RedshiftTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3743
|
+
RedshiftTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3744
|
+
RedshiftTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3745
|
+
RedshiftTarget.add_member(:redshift_tmp_dir, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "RedshiftTmpDir"))
|
3746
|
+
RedshiftTarget.add_member(:tmp_dir_iam_role, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "TmpDirIAMRole"))
|
3747
|
+
RedshiftTarget.add_member(:upsert_redshift_options, Shapes::ShapeRef.new(shape: UpsertRedshiftTargetOptions, location_name: "UpsertRedshiftOptions"))
|
3748
|
+
RedshiftTarget.struct_class = Types::RedshiftTarget
|
3749
|
+
|
3145
3750
|
RegisterSchemaVersionInput.add_member(:schema_id, Shapes::ShapeRef.new(shape: SchemaId, required: true, location_name: "SchemaId"))
|
3146
3751
|
RegisterSchemaVersionInput.add_member(:schema_definition, Shapes::ShapeRef.new(shape: SchemaDefinitionString, required: true, location_name: "SchemaDefinition"))
|
3147
3752
|
RegisterSchemaVersionInput.struct_class = Types::RegisterSchemaVersionInput
|
@@ -3165,6 +3770,11 @@ module Aws::Glue
|
|
3165
3770
|
RegistryListItem.add_member(:updated_time, Shapes::ShapeRef.new(shape: UpdatedTimestamp, location_name: "UpdatedTime"))
|
3166
3771
|
RegistryListItem.struct_class = Types::RegistryListItem
|
3167
3772
|
|
3773
|
+
RelationalCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3774
|
+
RelationalCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3775
|
+
RelationalCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3776
|
+
RelationalCatalogSource.struct_class = Types::RelationalCatalogSource
|
3777
|
+
|
3168
3778
|
RemoveSchemaVersionMetadataInput.add_member(:schema_id, Shapes::ShapeRef.new(shape: SchemaId, location_name: "SchemaId"))
|
3169
3779
|
RemoveSchemaVersionMetadataInput.add_member(:schema_version_number, Shapes::ShapeRef.new(shape: SchemaVersionNumber, location_name: "SchemaVersionNumber"))
|
3170
3780
|
RemoveSchemaVersionMetadataInput.add_member(:schema_version_id, Shapes::ShapeRef.new(shape: SchemaVersionIdString, location_name: "SchemaVersionId"))
|
@@ -3181,6 +3791,12 @@ module Aws::Glue
|
|
3181
3791
|
RemoveSchemaVersionMetadataResponse.add_member(:metadata_value, Shapes::ShapeRef.new(shape: MetadataValueString, location_name: "MetadataValue"))
|
3182
3792
|
RemoveSchemaVersionMetadataResponse.struct_class = Types::RemoveSchemaVersionMetadataResponse
|
3183
3793
|
|
3794
|
+
RenameField.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3795
|
+
RenameField.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3796
|
+
RenameField.add_member(:source_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "SourcePath"))
|
3797
|
+
RenameField.add_member(:target_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "TargetPath"))
|
3798
|
+
RenameField.struct_class = Types::RenameField
|
3799
|
+
|
3184
3800
|
ResetJobBookmarkRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, required: true, location_name: "JobName"))
|
3185
3801
|
ResetJobBookmarkRequest.add_member(:run_id, Shapes::ShapeRef.new(shape: RunId, location_name: "RunId"))
|
3186
3802
|
ResetJobBookmarkRequest.struct_class = Types::ResetJobBookmarkRequest
|
@@ -3217,12 +3833,103 @@ module Aws::Glue
|
|
3217
3833
|
RunStatementResponse.add_member(:id, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "Id"))
|
3218
3834
|
RunStatementResponse.struct_class = Types::RunStatementResponse
|
3219
3835
|
|
3836
|
+
S3CatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3837
|
+
S3CatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3838
|
+
S3CatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3839
|
+
S3CatalogSource.add_member(:partition_predicate, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "PartitionPredicate"))
|
3840
|
+
S3CatalogSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: S3SourceAdditionalOptions, location_name: "AdditionalOptions"))
|
3841
|
+
S3CatalogSource.struct_class = Types::S3CatalogSource
|
3842
|
+
|
3843
|
+
S3CatalogTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3844
|
+
S3CatalogTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3845
|
+
S3CatalogTarget.add_member(:partition_keys, Shapes::ShapeRef.new(shape: GlueStudioPathList, location_name: "PartitionKeys"))
|
3846
|
+
S3CatalogTarget.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
3847
|
+
S3CatalogTarget.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
3848
|
+
S3CatalogTarget.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: CatalogSchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
3849
|
+
S3CatalogTarget.struct_class = Types::S3CatalogTarget
|
3850
|
+
|
3851
|
+
S3CsvSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3852
|
+
S3CsvSource.add_member(:paths, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "Paths"))
|
3853
|
+
S3CsvSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
|
3854
|
+
S3CsvSource.add_member(:exclusions, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "Exclusions"))
|
3855
|
+
S3CsvSource.add_member(:group_size, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "GroupSize"))
|
3856
|
+
S3CsvSource.add_member(:group_files, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "GroupFiles"))
|
3857
|
+
S3CsvSource.add_member(:recurse, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Recurse"))
|
3858
|
+
S3CsvSource.add_member(:max_band, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MaxBand"))
|
3859
|
+
S3CsvSource.add_member(:max_files_in_band, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MaxFilesInBand"))
|
3860
|
+
S3CsvSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: S3DirectSourceAdditionalOptions, location_name: "AdditionalOptions"))
|
3861
|
+
S3CsvSource.add_member(:separator, Shapes::ShapeRef.new(shape: Separator, required: true, location_name: "Separator"))
|
3862
|
+
S3CsvSource.add_member(:escaper, Shapes::ShapeRef.new(shape: EnclosedInStringPropertyWithQuote, location_name: "Escaper"))
|
3863
|
+
S3CsvSource.add_member(:quote_char, Shapes::ShapeRef.new(shape: QuoteChar, required: true, location_name: "QuoteChar"))
|
3864
|
+
S3CsvSource.add_member(:multiline, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Multiline"))
|
3865
|
+
S3CsvSource.add_member(:with_header, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "WithHeader"))
|
3866
|
+
S3CsvSource.add_member(:write_header, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "WriteHeader"))
|
3867
|
+
S3CsvSource.add_member(:skip_first, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "SkipFirst"))
|
3868
|
+
S3CsvSource.add_member(:optimize_performance, Shapes::ShapeRef.new(shape: BooleanValue, location_name: "OptimizePerformance"))
|
3869
|
+
S3CsvSource.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
3870
|
+
S3CsvSource.struct_class = Types::S3CsvSource
|
3871
|
+
|
3872
|
+
S3DirectSourceAdditionalOptions.add_member(:bounded_size, Shapes::ShapeRef.new(shape: BoxedLong, location_name: "BoundedSize"))
|
3873
|
+
S3DirectSourceAdditionalOptions.add_member(:bounded_files, Shapes::ShapeRef.new(shape: BoxedLong, location_name: "BoundedFiles"))
|
3874
|
+
S3DirectSourceAdditionalOptions.add_member(:enable_sample_path, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "EnableSamplePath"))
|
3875
|
+
S3DirectSourceAdditionalOptions.add_member(:sample_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "SamplePath"))
|
3876
|
+
S3DirectSourceAdditionalOptions.struct_class = Types::S3DirectSourceAdditionalOptions
|
3877
|
+
|
3878
|
+
S3DirectTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3879
|
+
S3DirectTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3880
|
+
S3DirectTarget.add_member(:partition_keys, Shapes::ShapeRef.new(shape: GlueStudioPathList, location_name: "PartitionKeys"))
|
3881
|
+
S3DirectTarget.add_member(:path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Path"))
|
3882
|
+
S3DirectTarget.add_member(:compression, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Compression"))
|
3883
|
+
S3DirectTarget.add_member(:format, Shapes::ShapeRef.new(shape: TargetFormat, required: true, location_name: "Format"))
|
3884
|
+
S3DirectTarget.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: DirectSchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
3885
|
+
S3DirectTarget.struct_class = Types::S3DirectTarget
|
3886
|
+
|
3220
3887
|
S3Encryption.add_member(:s3_encryption_mode, Shapes::ShapeRef.new(shape: S3EncryptionMode, location_name: "S3EncryptionMode"))
|
3221
3888
|
S3Encryption.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
|
3222
3889
|
S3Encryption.struct_class = Types::S3Encryption
|
3223
3890
|
|
3224
3891
|
S3EncryptionList.member = Shapes::ShapeRef.new(shape: S3Encryption)
|
3225
3892
|
|
3893
|
+
S3GlueParquetTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3894
|
+
S3GlueParquetTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
3895
|
+
S3GlueParquetTarget.add_member(:partition_keys, Shapes::ShapeRef.new(shape: GlueStudioPathList, location_name: "PartitionKeys"))
|
3896
|
+
S3GlueParquetTarget.add_member(:path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Path"))
|
3897
|
+
S3GlueParquetTarget.add_member(:compression, Shapes::ShapeRef.new(shape: ParquetCompressionType, location_name: "Compression"))
|
3898
|
+
S3GlueParquetTarget.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: DirectSchemaChangePolicy, location_name: "SchemaChangePolicy"))
|
3899
|
+
S3GlueParquetTarget.struct_class = Types::S3GlueParquetTarget
|
3900
|
+
|
3901
|
+
S3JsonSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3902
|
+
S3JsonSource.add_member(:paths, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "Paths"))
|
3903
|
+
S3JsonSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
|
3904
|
+
S3JsonSource.add_member(:exclusions, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "Exclusions"))
|
3905
|
+
S3JsonSource.add_member(:group_size, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "GroupSize"))
|
3906
|
+
S3JsonSource.add_member(:group_files, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "GroupFiles"))
|
3907
|
+
S3JsonSource.add_member(:recurse, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Recurse"))
|
3908
|
+
S3JsonSource.add_member(:max_band, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MaxBand"))
|
3909
|
+
S3JsonSource.add_member(:max_files_in_band, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MaxFilesInBand"))
|
3910
|
+
S3JsonSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: S3DirectSourceAdditionalOptions, location_name: "AdditionalOptions"))
|
3911
|
+
S3JsonSource.add_member(:json_path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "JsonPath"))
|
3912
|
+
S3JsonSource.add_member(:multiline, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Multiline"))
|
3913
|
+
S3JsonSource.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
3914
|
+
S3JsonSource.struct_class = Types::S3JsonSource
|
3915
|
+
|
3916
|
+
S3ParquetSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
3917
|
+
S3ParquetSource.add_member(:paths, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "Paths"))
|
3918
|
+
S3ParquetSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: ParquetCompressionType, location_name: "CompressionType"))
|
3919
|
+
S3ParquetSource.add_member(:exclusions, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "Exclusions"))
|
3920
|
+
S3ParquetSource.add_member(:group_size, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "GroupSize"))
|
3921
|
+
S3ParquetSource.add_member(:group_files, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "GroupFiles"))
|
3922
|
+
S3ParquetSource.add_member(:recurse, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Recurse"))
|
3923
|
+
S3ParquetSource.add_member(:max_band, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MaxBand"))
|
3924
|
+
S3ParquetSource.add_member(:max_files_in_band, Shapes::ShapeRef.new(shape: BoxedNonNegativeInt, location_name: "MaxFilesInBand"))
|
3925
|
+
S3ParquetSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: S3DirectSourceAdditionalOptions, location_name: "AdditionalOptions"))
|
3926
|
+
S3ParquetSource.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
3927
|
+
S3ParquetSource.struct_class = Types::S3ParquetSource
|
3928
|
+
|
3929
|
+
S3SourceAdditionalOptions.add_member(:bounded_size, Shapes::ShapeRef.new(shape: BoxedLong, location_name: "BoundedSize"))
|
3930
|
+
S3SourceAdditionalOptions.add_member(:bounded_files, Shapes::ShapeRef.new(shape: BoxedLong, location_name: "BoundedFiles"))
|
3931
|
+
S3SourceAdditionalOptions.struct_class = Types::S3SourceAdditionalOptions
|
3932
|
+
|
3226
3933
|
S3Target.add_member(:path, Shapes::ShapeRef.new(shape: Path, location_name: "Path"))
|
3227
3934
|
S3Target.add_member(:exclusions, Shapes::ShapeRef.new(shape: PathList, location_name: "Exclusions"))
|
3228
3935
|
S3Target.add_member(:connection_name, Shapes::ShapeRef.new(shape: ConnectionName, location_name: "ConnectionName"))
|
@@ -3322,6 +4029,16 @@ module Aws::Glue
|
|
3322
4029
|
Segment.add_member(:total_segments, Shapes::ShapeRef.new(shape: TotalSegmentsInteger, required: true, location_name: "TotalSegments"))
|
3323
4030
|
Segment.struct_class = Types::Segment
|
3324
4031
|
|
4032
|
+
SelectFields.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4033
|
+
SelectFields.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
4034
|
+
SelectFields.add_member(:paths, Shapes::ShapeRef.new(shape: GlueStudioPathList, required: true, location_name: "Paths"))
|
4035
|
+
SelectFields.struct_class = Types::SelectFields
|
4036
|
+
|
4037
|
+
SelectFromCollection.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4038
|
+
SelectFromCollection.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
4039
|
+
SelectFromCollection.add_member(:index, Shapes::ShapeRef.new(shape: NonNegativeInt, required: true, location_name: "Index"))
|
4040
|
+
SelectFromCollection.struct_class = Types::SelectFromCollection
|
4041
|
+
|
3325
4042
|
SerDeInfo.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
3326
4043
|
SerDeInfo.add_member(:serialization_library, Shapes::ShapeRef.new(shape: NameString, location_name: "SerializationLibrary"))
|
3327
4044
|
SerDeInfo.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersMap, location_name: "Parameters"))
|
@@ -3361,6 +4078,48 @@ module Aws::Glue
|
|
3361
4078
|
SortCriterion.add_member(:sort, Shapes::ShapeRef.new(shape: Sort, location_name: "Sort"))
|
3362
4079
|
SortCriterion.struct_class = Types::SortCriterion
|
3363
4080
|
|
4081
|
+
SparkConnectorSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4082
|
+
SparkConnectorSource.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionName"))
|
4083
|
+
SparkConnectorSource.add_member(:connector_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectorName"))
|
4084
|
+
SparkConnectorSource.add_member(:connection_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionType"))
|
4085
|
+
SparkConnectorSource.add_member(:additional_options, Shapes::ShapeRef.new(shape: AdditionalOptions, location_name: "AdditionalOptions"))
|
4086
|
+
SparkConnectorSource.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
4087
|
+
SparkConnectorSource.struct_class = Types::SparkConnectorSource
|
4088
|
+
|
4089
|
+
SparkConnectorTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4090
|
+
SparkConnectorTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
4091
|
+
SparkConnectorTarget.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionName"))
|
4092
|
+
SparkConnectorTarget.add_member(:connector_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectorName"))
|
4093
|
+
SparkConnectorTarget.add_member(:connection_type, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionType"))
|
4094
|
+
SparkConnectorTarget.add_member(:additional_options, Shapes::ShapeRef.new(shape: AdditionalOptions, location_name: "AdditionalOptions"))
|
4095
|
+
SparkConnectorTarget.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
4096
|
+
SparkConnectorTarget.struct_class = Types::SparkConnectorTarget
|
4097
|
+
|
4098
|
+
SparkSQL.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4099
|
+
SparkSQL.add_member(:inputs, Shapes::ShapeRef.new(shape: ManyInputs, required: true, location_name: "Inputs"))
|
4100
|
+
SparkSQL.add_member(:sql_query, Shapes::ShapeRef.new(shape: SqlQuery, required: true, location_name: "SqlQuery"))
|
4101
|
+
SparkSQL.add_member(:sql_aliases, Shapes::ShapeRef.new(shape: SqlAliases, required: true, location_name: "SqlAliases"))
|
4102
|
+
SparkSQL.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
4103
|
+
SparkSQL.struct_class = Types::SparkSQL
|
4104
|
+
|
4105
|
+
Spigot.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4106
|
+
Spigot.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
4107
|
+
Spigot.add_member(:path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Path"))
|
4108
|
+
Spigot.add_member(:topk, Shapes::ShapeRef.new(shape: Topk, location_name: "Topk"))
|
4109
|
+
Spigot.add_member(:prob, Shapes::ShapeRef.new(shape: Prob, location_name: "Prob"))
|
4110
|
+
Spigot.struct_class = Types::Spigot
|
4111
|
+
|
4112
|
+
SplitFields.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4113
|
+
SplitFields.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
4114
|
+
SplitFields.add_member(:paths, Shapes::ShapeRef.new(shape: GlueStudioPathList, required: true, location_name: "Paths"))
|
4115
|
+
SplitFields.struct_class = Types::SplitFields
|
4116
|
+
|
4117
|
+
SqlAlias.add_member(:from, Shapes::ShapeRef.new(shape: NodeId, required: true, location_name: "From"))
|
4118
|
+
SqlAlias.add_member(:alias, Shapes::ShapeRef.new(shape: EnclosedInStringPropertyWithQuote, required: true, location_name: "Alias"))
|
4119
|
+
SqlAlias.struct_class = Types::SqlAlias
|
4120
|
+
|
4121
|
+
SqlAliases.member = Shapes::ShapeRef.new(shape: SqlAlias)
|
4122
|
+
|
3364
4123
|
StartBlueprintRunRequest.add_member(:blueprint_name, Shapes::ShapeRef.new(shape: OrchestrationNameString, required: true, location_name: "BlueprintName"))
|
3365
4124
|
StartBlueprintRunRequest.add_member(:parameters, Shapes::ShapeRef.new(shape: BlueprintParameters, location_name: "Parameters"))
|
3366
4125
|
StartBlueprintRunRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: OrchestrationIAMRoleArn, required: true, location_name: "RoleArn"))
|
@@ -3506,6 +4265,10 @@ module Aws::Glue
|
|
3506
4265
|
StorageDescriptor.add_member(:schema_reference, Shapes::ShapeRef.new(shape: SchemaReference, location_name: "SchemaReference"))
|
3507
4266
|
StorageDescriptor.struct_class = Types::StorageDescriptor
|
3508
4267
|
|
4268
|
+
StreamingDataPreviewOptions.add_member(:polling_time, Shapes::ShapeRef.new(shape: PollingTime, location_name: "PollingTime"))
|
4269
|
+
StreamingDataPreviewOptions.add_member(:record_polling_limit, Shapes::ShapeRef.new(shape: PositiveLong, location_name: "RecordPollingLimit"))
|
4270
|
+
StreamingDataPreviewOptions.struct_class = Types::StreamingDataPreviewOptions
|
4271
|
+
|
3509
4272
|
StringColumnStatisticsData.add_member(:maximum_length, Shapes::ShapeRef.new(shape: NonNegativeLong, required: true, location_name: "MaximumLength"))
|
3510
4273
|
StringColumnStatisticsData.add_member(:average_length, Shapes::ShapeRef.new(shape: NonNegativeDouble, required: true, location_name: "AverageLength"))
|
3511
4274
|
StringColumnStatisticsData.add_member(:number_of_nulls, Shapes::ShapeRef.new(shape: NonNegativeLong, required: true, location_name: "NumberOfNulls"))
|
@@ -3673,6 +4436,8 @@ module Aws::Glue
|
|
3673
4436
|
TriggerUpdate.add_member(:event_batching_condition, Shapes::ShapeRef.new(shape: EventBatchingCondition, location_name: "EventBatchingCondition"))
|
3674
4437
|
TriggerUpdate.struct_class = Types::TriggerUpdate
|
3675
4438
|
|
4439
|
+
TwoInputs.member = Shapes::ShapeRef.new(shape: NodeId)
|
4440
|
+
|
3676
4441
|
UnfilteredPartition.add_member(:partition, Shapes::ShapeRef.new(shape: Partition, location_name: "Partition"))
|
3677
4442
|
UnfilteredPartition.add_member(:authorized_columns, Shapes::ShapeRef.new(shape: NameStringList, location_name: "AuthorizedColumns"))
|
3678
4443
|
UnfilteredPartition.add_member(:is_registered_with_lake_formation, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRegisteredWithLakeFormation"))
|
@@ -3680,6 +4445,11 @@ module Aws::Glue
|
|
3680
4445
|
|
3681
4446
|
UnfilteredPartitionList.member = Shapes::ShapeRef.new(shape: UnfilteredPartition)
|
3682
4447
|
|
4448
|
+
Union.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4449
|
+
Union.add_member(:inputs, Shapes::ShapeRef.new(shape: TwoInputs, required: true, location_name: "Inputs"))
|
4450
|
+
Union.add_member(:union_type, Shapes::ShapeRef.new(shape: UnionType, required: true, location_name: "UnionType"))
|
4451
|
+
Union.struct_class = Types::Union
|
4452
|
+
|
3683
4453
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: GlueResourceArn, required: true, location_name: "ResourceArn"))
|
3684
4454
|
UntagResourceRequest.add_member(:tags_to_remove, Shapes::ShapeRef.new(shape: TagKeysList, required: true, location_name: "TagsToRemove"))
|
3685
4455
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -3882,6 +4652,11 @@ module Aws::Glue
|
|
3882
4652
|
UpdateXMLClassifierRequest.add_member(:row_tag, Shapes::ShapeRef.new(shape: RowTag, location_name: "RowTag"))
|
3883
4653
|
UpdateXMLClassifierRequest.struct_class = Types::UpdateXMLClassifierRequest
|
3884
4654
|
|
4655
|
+
UpsertRedshiftTargetOptions.add_member(:table_location, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "TableLocation"))
|
4656
|
+
UpsertRedshiftTargetOptions.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ConnectionName"))
|
4657
|
+
UpsertRedshiftTargetOptions.add_member(:upsert_keys, Shapes::ShapeRef.new(shape: EnclosedInStringPropertiesMinOne, location_name: "UpsertKeys"))
|
4658
|
+
UpsertRedshiftTargetOptions.struct_class = Types::UpsertRedshiftTargetOptions
|
4659
|
+
|
3885
4660
|
UserDefinedFunction.add_member(:function_name, Shapes::ShapeRef.new(shape: NameString, location_name: "FunctionName"))
|
3886
4661
|
UserDefinedFunction.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
|
3887
4662
|
UserDefinedFunction.add_member(:class_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ClassName"))
|
@@ -4064,6 +4839,17 @@ module Aws::Glue
|
|
4064
4839
|
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4065
4840
|
end)
|
4066
4841
|
|
4842
|
+
api.add_operation(:batch_get_custom_entity_types, Seahorse::Model::Operation.new.tap do |o|
|
4843
|
+
o.name = "BatchGetCustomEntityTypes"
|
4844
|
+
o.http_method = "POST"
|
4845
|
+
o.http_request_uri = "/"
|
4846
|
+
o.input = Shapes::ShapeRef.new(shape: BatchGetCustomEntityTypesRequest)
|
4847
|
+
o.output = Shapes::ShapeRef.new(shape: BatchGetCustomEntityTypesResponse)
|
4848
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
4849
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4850
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4851
|
+
end)
|
4852
|
+
|
4067
4853
|
api.add_operation(:batch_get_dev_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
4068
4854
|
o.name = "BatchGetDevEndpoints"
|
4069
4855
|
o.http_method = "POST"
|
@@ -4233,6 +5019,21 @@ module Aws::Glue
|
|
4233
5019
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
4234
5020
|
end)
|
4235
5021
|
|
5022
|
+
api.add_operation(:create_custom_entity_type, Seahorse::Model::Operation.new.tap do |o|
|
5023
|
+
o.name = "CreateCustomEntityType"
|
5024
|
+
o.http_method = "POST"
|
5025
|
+
o.http_request_uri = "/"
|
5026
|
+
o.input = Shapes::ShapeRef.new(shape: CreateCustomEntityTypeRequest)
|
5027
|
+
o.output = Shapes::ShapeRef.new(shape: CreateCustomEntityTypeResponse)
|
5028
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5029
|
+
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
5030
|
+
o.errors << Shapes::ShapeRef.new(shape: IdempotentParameterMismatchException)
|
5031
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5032
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
5033
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
5034
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
5035
|
+
end)
|
5036
|
+
|
4236
5037
|
api.add_operation(:create_database, Seahorse::Model::Operation.new.tap do |o|
|
4237
5038
|
o.name = "CreateDatabase"
|
4238
5039
|
o.http_method = "POST"
|
@@ -4524,6 +5325,19 @@ module Aws::Glue
|
|
4524
5325
|
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4525
5326
|
end)
|
4526
5327
|
|
5328
|
+
api.add_operation(:delete_custom_entity_type, Seahorse::Model::Operation.new.tap do |o|
|
5329
|
+
o.name = "DeleteCustomEntityType"
|
5330
|
+
o.http_method = "POST"
|
5331
|
+
o.http_request_uri = "/"
|
5332
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteCustomEntityTypeRequest)
|
5333
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteCustomEntityTypeResponse)
|
5334
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
5335
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5336
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5337
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
5338
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
5339
|
+
end)
|
5340
|
+
|
4527
5341
|
api.add_operation(:delete_database, Seahorse::Model::Operation.new.tap do |o|
|
4528
5342
|
o.name = "DeleteDatabase"
|
4529
5343
|
o.http_method = "POST"
|
@@ -4907,6 +5721,19 @@ module Aws::Glue
|
|
4907
5721
|
)
|
4908
5722
|
end)
|
4909
5723
|
|
5724
|
+
api.add_operation(:get_custom_entity_type, Seahorse::Model::Operation.new.tap do |o|
|
5725
|
+
o.name = "GetCustomEntityType"
|
5726
|
+
o.http_method = "POST"
|
5727
|
+
o.http_request_uri = "/"
|
5728
|
+
o.input = Shapes::ShapeRef.new(shape: GetCustomEntityTypeRequest)
|
5729
|
+
o.output = Shapes::ShapeRef.new(shape: GetCustomEntityTypeResponse)
|
5730
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
5731
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5732
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5733
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
5734
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
5735
|
+
end)
|
5736
|
+
|
4910
5737
|
api.add_operation(:get_data_catalog_encryption_settings, Seahorse::Model::Operation.new.tap do |o|
|
4911
5738
|
o.name = "GetDataCatalogEncryptionSettings"
|
4912
5739
|
o.http_method = "POST"
|
@@ -5628,6 +6455,23 @@ module Aws::Glue
|
|
5628
6455
|
)
|
5629
6456
|
end)
|
5630
6457
|
|
6458
|
+
api.add_operation(:list_custom_entity_types, Seahorse::Model::Operation.new.tap do |o|
|
6459
|
+
o.name = "ListCustomEntityTypes"
|
6460
|
+
o.http_method = "POST"
|
6461
|
+
o.http_request_uri = "/"
|
6462
|
+
o.input = Shapes::ShapeRef.new(shape: ListCustomEntityTypesRequest)
|
6463
|
+
o.output = Shapes::ShapeRef.new(shape: ListCustomEntityTypesResponse)
|
6464
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
6465
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
6466
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
6467
|
+
o[:pager] = Aws::Pager.new(
|
6468
|
+
limit_key: "max_results",
|
6469
|
+
tokens: {
|
6470
|
+
"next_token" => "next_token"
|
6471
|
+
}
|
6472
|
+
)
|
6473
|
+
end)
|
6474
|
+
|
5631
6475
|
api.add_operation(:list_dev_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
5632
6476
|
o.name = "ListDevEndpoints"
|
5633
6477
|
o.http_method = "POST"
|