aws-sdk-glue 1.135.0 → 1.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +313 -1918
- data/lib/aws-sdk-glue/client_api.rb +62 -0
- data/lib/aws-sdk-glue/types.rb +266 -4
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +2 -2
@@ -24,6 +24,11 @@ module Aws::Glue
|
|
24
24
|
AggregateOperation = Shapes::StructureShape.new(name: 'AggregateOperation')
|
25
25
|
AggregateOperations = Shapes::ListShape.new(name: 'AggregateOperations')
|
26
26
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
27
|
+
AmazonRedshiftAdvancedOption = Shapes::StructureShape.new(name: 'AmazonRedshiftAdvancedOption')
|
28
|
+
AmazonRedshiftAdvancedOptions = Shapes::ListShape.new(name: 'AmazonRedshiftAdvancedOptions')
|
29
|
+
AmazonRedshiftNodeData = Shapes::StructureShape.new(name: 'AmazonRedshiftNodeData')
|
30
|
+
AmazonRedshiftSource = Shapes::StructureShape.new(name: 'AmazonRedshiftSource')
|
31
|
+
AmazonRedshiftTarget = Shapes::StructureShape.new(name: 'AmazonRedshiftTarget')
|
27
32
|
ApplyMapping = Shapes::StructureShape.new(name: 'ApplyMapping')
|
28
33
|
AthenaConnectorSource = Shapes::StructureShape.new(name: 'AthenaConnectorSource')
|
29
34
|
AttemptCount = Shapes::IntegerShape.new(name: 'AttemptCount')
|
@@ -762,6 +767,8 @@ module Aws::Glue
|
|
762
767
|
NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
|
763
768
|
OneInput = Shapes::ListShape.new(name: 'OneInput')
|
764
769
|
OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
|
770
|
+
Option = Shapes::StructureShape.new(name: 'Option')
|
771
|
+
OptionList = Shapes::ListShape.new(name: 'OptionList')
|
765
772
|
OracleSQLCatalogSource = Shapes::StructureShape.new(name: 'OracleSQLCatalogSource')
|
766
773
|
OracleSQLCatalogTarget = Shapes::StructureShape.new(name: 'OracleSQLCatalogTarget')
|
767
774
|
OrchestrationArgumentsMap = Shapes::MapShape.new(name: 'OrchestrationArgumentsMap')
|
@@ -1168,6 +1175,49 @@ module Aws::Glue
|
|
1168
1175
|
AlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
1169
1176
|
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
1170
1177
|
|
1178
|
+
AmazonRedshiftAdvancedOption.add_member(:key, Shapes::ShapeRef.new(shape: GenericString, location_name: "Key"))
|
1179
|
+
AmazonRedshiftAdvancedOption.add_member(:value, Shapes::ShapeRef.new(shape: GenericString, location_name: "Value"))
|
1180
|
+
AmazonRedshiftAdvancedOption.struct_class = Types::AmazonRedshiftAdvancedOption
|
1181
|
+
|
1182
|
+
AmazonRedshiftAdvancedOptions.member = Shapes::ShapeRef.new(shape: AmazonRedshiftAdvancedOption)
|
1183
|
+
|
1184
|
+
AmazonRedshiftNodeData.add_member(:access_type, Shapes::ShapeRef.new(shape: GenericLimitedString, location_name: "AccessType"))
|
1185
|
+
AmazonRedshiftNodeData.add_member(:source_type, Shapes::ShapeRef.new(shape: GenericLimitedString, location_name: "SourceType"))
|
1186
|
+
AmazonRedshiftNodeData.add_member(:connection, Shapes::ShapeRef.new(shape: Option, location_name: "Connection"))
|
1187
|
+
AmazonRedshiftNodeData.add_member(:schema, Shapes::ShapeRef.new(shape: Option, location_name: "Schema"))
|
1188
|
+
AmazonRedshiftNodeData.add_member(:table, Shapes::ShapeRef.new(shape: Option, location_name: "Table"))
|
1189
|
+
AmazonRedshiftNodeData.add_member(:catalog_database, Shapes::ShapeRef.new(shape: Option, location_name: "CatalogDatabase"))
|
1190
|
+
AmazonRedshiftNodeData.add_member(:catalog_table, Shapes::ShapeRef.new(shape: Option, location_name: "CatalogTable"))
|
1191
|
+
AmazonRedshiftNodeData.add_member(:catalog_redshift_schema, Shapes::ShapeRef.new(shape: GenericString, location_name: "CatalogRedshiftSchema"))
|
1192
|
+
AmazonRedshiftNodeData.add_member(:catalog_redshift_table, Shapes::ShapeRef.new(shape: GenericString, location_name: "CatalogRedshiftTable"))
|
1193
|
+
AmazonRedshiftNodeData.add_member(:temp_dir, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "TempDir"))
|
1194
|
+
AmazonRedshiftNodeData.add_member(:iam_role, Shapes::ShapeRef.new(shape: Option, location_name: "IamRole"))
|
1195
|
+
AmazonRedshiftNodeData.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AmazonRedshiftAdvancedOptions, location_name: "AdvancedOptions"))
|
1196
|
+
AmazonRedshiftNodeData.add_member(:sample_query, Shapes::ShapeRef.new(shape: GenericString, location_name: "SampleQuery"))
|
1197
|
+
AmazonRedshiftNodeData.add_member(:pre_action, Shapes::ShapeRef.new(shape: GenericString, location_name: "PreAction"))
|
1198
|
+
AmazonRedshiftNodeData.add_member(:post_action, Shapes::ShapeRef.new(shape: GenericString, location_name: "PostAction"))
|
1199
|
+
AmazonRedshiftNodeData.add_member(:action, Shapes::ShapeRef.new(shape: GenericString, location_name: "Action"))
|
1200
|
+
AmazonRedshiftNodeData.add_member(:table_prefix, Shapes::ShapeRef.new(shape: GenericLimitedString, location_name: "TablePrefix"))
|
1201
|
+
AmazonRedshiftNodeData.add_member(:upsert, Shapes::ShapeRef.new(shape: BooleanValue, location_name: "Upsert"))
|
1202
|
+
AmazonRedshiftNodeData.add_member(:merge_action, Shapes::ShapeRef.new(shape: GenericLimitedString, location_name: "MergeAction"))
|
1203
|
+
AmazonRedshiftNodeData.add_member(:merge_when_matched, Shapes::ShapeRef.new(shape: GenericLimitedString, location_name: "MergeWhenMatched"))
|
1204
|
+
AmazonRedshiftNodeData.add_member(:merge_when_not_matched, Shapes::ShapeRef.new(shape: GenericLimitedString, location_name: "MergeWhenNotMatched"))
|
1205
|
+
AmazonRedshiftNodeData.add_member(:merge_clause, Shapes::ShapeRef.new(shape: GenericString, location_name: "MergeClause"))
|
1206
|
+
AmazonRedshiftNodeData.add_member(:crawler_connection, Shapes::ShapeRef.new(shape: GenericString, location_name: "CrawlerConnection"))
|
1207
|
+
AmazonRedshiftNodeData.add_member(:table_schema, Shapes::ShapeRef.new(shape: OptionList, location_name: "TableSchema"))
|
1208
|
+
AmazonRedshiftNodeData.add_member(:staging_table, Shapes::ShapeRef.new(shape: GenericString, location_name: "StagingTable"))
|
1209
|
+
AmazonRedshiftNodeData.add_member(:selected_columns, Shapes::ShapeRef.new(shape: OptionList, location_name: "SelectedColumns"))
|
1210
|
+
AmazonRedshiftNodeData.struct_class = Types::AmazonRedshiftNodeData
|
1211
|
+
|
1212
|
+
AmazonRedshiftSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, location_name: "Name"))
|
1213
|
+
AmazonRedshiftSource.add_member(:data, Shapes::ShapeRef.new(shape: AmazonRedshiftNodeData, location_name: "Data"))
|
1214
|
+
AmazonRedshiftSource.struct_class = Types::AmazonRedshiftSource
|
1215
|
+
|
1216
|
+
AmazonRedshiftTarget.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, location_name: "Name"))
|
1217
|
+
AmazonRedshiftTarget.add_member(:data, Shapes::ShapeRef.new(shape: AmazonRedshiftNodeData, location_name: "Data"))
|
1218
|
+
AmazonRedshiftTarget.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, location_name: "Inputs"))
|
1219
|
+
AmazonRedshiftTarget.struct_class = Types::AmazonRedshiftTarget
|
1220
|
+
|
1171
1221
|
ApplyMapping.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
1172
1222
|
ApplyMapping.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
1173
1223
|
ApplyMapping.add_member(:mapping, Shapes::ShapeRef.new(shape: Mappings, required: true, location_name: "Mapping"))
|
@@ -1590,6 +1640,8 @@ module Aws::Glue
|
|
1590
1640
|
CodeGenConfigurationNode.add_member(:s3_delta_source, Shapes::ShapeRef.new(shape: S3DeltaSource, location_name: "S3DeltaSource"))
|
1591
1641
|
CodeGenConfigurationNode.add_member(:s3_delta_catalog_target, Shapes::ShapeRef.new(shape: S3DeltaCatalogTarget, location_name: "S3DeltaCatalogTarget"))
|
1592
1642
|
CodeGenConfigurationNode.add_member(:s3_delta_direct_target, Shapes::ShapeRef.new(shape: S3DeltaDirectTarget, location_name: "S3DeltaDirectTarget"))
|
1643
|
+
CodeGenConfigurationNode.add_member(:amazon_redshift_source, Shapes::ShapeRef.new(shape: AmazonRedshiftSource, location_name: "AmazonRedshiftSource"))
|
1644
|
+
CodeGenConfigurationNode.add_member(:amazon_redshift_target, Shapes::ShapeRef.new(shape: AmazonRedshiftTarget, location_name: "AmazonRedshiftTarget"))
|
1593
1645
|
CodeGenConfigurationNode.struct_class = Types::CodeGenConfigurationNode
|
1594
1646
|
|
1595
1647
|
CodeGenConfigurationNodes.key = Shapes::ShapeRef.new(shape: NodeId)
|
@@ -1871,6 +1923,7 @@ module Aws::Glue
|
|
1871
1923
|
CreateCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1872
1924
|
CreateCustomEntityTypeRequest.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
|
1873
1925
|
CreateCustomEntityTypeRequest.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
1926
|
+
CreateCustomEntityTypeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
1874
1927
|
CreateCustomEntityTypeRequest.struct_class = Types::CreateCustomEntityTypeRequest
|
1875
1928
|
|
1876
1929
|
CreateCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
@@ -2591,6 +2644,7 @@ module Aws::Glue
|
|
2591
2644
|
DynamicTransform.add_member(:function_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "FunctionName"))
|
2592
2645
|
DynamicTransform.add_member(:path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Path"))
|
2593
2646
|
DynamicTransform.add_member(:version, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Version"))
|
2647
|
+
DynamicTransform.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
|
2594
2648
|
DynamicTransform.struct_class = Types::DynamicTransform
|
2595
2649
|
|
2596
2650
|
DynamoDBCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
@@ -3741,6 +3795,7 @@ module Aws::Glue
|
|
3741
3795
|
|
3742
3796
|
ListCustomEntityTypesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
3743
3797
|
ListCustomEntityTypesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
3798
|
+
ListCustomEntityTypesRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
3744
3799
|
ListCustomEntityTypesRequest.struct_class = Types::ListCustomEntityTypesRequest
|
3745
3800
|
|
3746
3801
|
ListCustomEntityTypesResponse.add_member(:custom_entity_types, Shapes::ShapeRef.new(shape: CustomEntityTypes, location_name: "CustomEntityTypes"))
|
@@ -4033,6 +4088,13 @@ module Aws::Glue
|
|
4033
4088
|
OperationTimeoutException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
4034
4089
|
OperationTimeoutException.struct_class = Types::OperationTimeoutException
|
4035
4090
|
|
4091
|
+
Option.add_member(:value, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Value"))
|
4092
|
+
Option.add_member(:label, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Label"))
|
4093
|
+
Option.add_member(:description, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Description"))
|
4094
|
+
Option.struct_class = Types::Option
|
4095
|
+
|
4096
|
+
OptionList.member = Shapes::ShapeRef.new(shape: Option)
|
4097
|
+
|
4036
4098
|
OracleSQLCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
4037
4099
|
OracleSQLCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
4038
4100
|
OracleSQLCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -155,6 +155,219 @@ module Aws::Glue
|
|
155
155
|
include Aws::Structure
|
156
156
|
end
|
157
157
|
|
158
|
+
# Specifies an Amazon Redshift data store.
|
159
|
+
#
|
160
|
+
# @!attribute [rw] key
|
161
|
+
# The key when specifying a key-value pair.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] value
|
165
|
+
# The value when specifying a key-value pair.
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AmazonRedshiftAdvancedOption AWS API Documentation
|
169
|
+
#
|
170
|
+
class AmazonRedshiftAdvancedOption < Struct.new(
|
171
|
+
:key,
|
172
|
+
:value)
|
173
|
+
SENSITIVE = []
|
174
|
+
include Aws::Structure
|
175
|
+
end
|
176
|
+
|
177
|
+
# Specifies an Amazon Redshift node.
|
178
|
+
#
|
179
|
+
# @!attribute [rw] access_type
|
180
|
+
# The access type for the Redshift connection. Can be a direct
|
181
|
+
# connection or catalog connections.
|
182
|
+
# @return [String]
|
183
|
+
#
|
184
|
+
# @!attribute [rw] source_type
|
185
|
+
# The source type to specify whether a specific table is the source or
|
186
|
+
# a custom query.
|
187
|
+
# @return [String]
|
188
|
+
#
|
189
|
+
# @!attribute [rw] connection
|
190
|
+
# The Glue connection to the Redshift cluster.
|
191
|
+
# @return [Types::Option]
|
192
|
+
#
|
193
|
+
# @!attribute [rw] schema
|
194
|
+
# The Redshift schema name when working with a direct connection.
|
195
|
+
# @return [Types::Option]
|
196
|
+
#
|
197
|
+
# @!attribute [rw] table
|
198
|
+
# The Redshift table name when working with a direct connection.
|
199
|
+
# @return [Types::Option]
|
200
|
+
#
|
201
|
+
# @!attribute [rw] catalog_database
|
202
|
+
# The name of the Glue Data Catalog database when working with a data
|
203
|
+
# catalog.
|
204
|
+
# @return [Types::Option]
|
205
|
+
#
|
206
|
+
# @!attribute [rw] catalog_table
|
207
|
+
# The Glue Data Catalog table name when working with a data catalog.
|
208
|
+
# @return [Types::Option]
|
209
|
+
#
|
210
|
+
# @!attribute [rw] catalog_redshift_schema
|
211
|
+
# The Redshift schema name when working with a data catalog.
|
212
|
+
# @return [String]
|
213
|
+
#
|
214
|
+
# @!attribute [rw] catalog_redshift_table
|
215
|
+
# The database table to read from.
|
216
|
+
# @return [String]
|
217
|
+
#
|
218
|
+
# @!attribute [rw] temp_dir
|
219
|
+
# The Amazon S3 path where temporary data can be staged when copying
|
220
|
+
# out of the database.
|
221
|
+
# @return [String]
|
222
|
+
#
|
223
|
+
# @!attribute [rw] iam_role
|
224
|
+
# Optional. The role name use when connection to S3. The IAM role ill
|
225
|
+
# default to the role on the job when left blank.
|
226
|
+
# @return [Types::Option]
|
227
|
+
#
|
228
|
+
# @!attribute [rw] advanced_options
|
229
|
+
# Optional values when connecting to the Redshift cluster.
|
230
|
+
# @return [Array<Types::AmazonRedshiftAdvancedOption>]
|
231
|
+
#
|
232
|
+
# @!attribute [rw] sample_query
|
233
|
+
# The SQL used to fetch the data from a Redshift sources when the
|
234
|
+
# SourceType is 'query'.
|
235
|
+
# @return [String]
|
236
|
+
#
|
237
|
+
# @!attribute [rw] pre_action
|
238
|
+
# The SQL used before a MERGE or APPEND with upsert is run.
|
239
|
+
# @return [String]
|
240
|
+
#
|
241
|
+
# @!attribute [rw] post_action
|
242
|
+
# The SQL used before a MERGE or APPEND with upsert is run.
|
243
|
+
# @return [String]
|
244
|
+
#
|
245
|
+
# @!attribute [rw] action
|
246
|
+
# Specifies how writing to a Redshift cluser will occur.
|
247
|
+
# @return [String]
|
248
|
+
#
|
249
|
+
# @!attribute [rw] table_prefix
|
250
|
+
# Specifies the prefix to a table.
|
251
|
+
# @return [String]
|
252
|
+
#
|
253
|
+
# @!attribute [rw] upsert
|
254
|
+
# The action used on Redshift sinks when doing an APPEND.
|
255
|
+
# @return [Boolean]
|
256
|
+
#
|
257
|
+
# @!attribute [rw] merge_action
|
258
|
+
# The action used when to detemine how a MERGE in a Redshift sink will
|
259
|
+
# be handled.
|
260
|
+
# @return [String]
|
261
|
+
#
|
262
|
+
# @!attribute [rw] merge_when_matched
|
263
|
+
# The action used when to detemine how a MERGE in a Redshift sink will
|
264
|
+
# be handled when an existing record matches a new record.
|
265
|
+
# @return [String]
|
266
|
+
#
|
267
|
+
# @!attribute [rw] merge_when_not_matched
|
268
|
+
# The action used when to detemine how a MERGE in a Redshift sink will
|
269
|
+
# be handled when an existing record doesn't match a new record.
|
270
|
+
# @return [String]
|
271
|
+
#
|
272
|
+
# @!attribute [rw] merge_clause
|
273
|
+
# The SQL used in a custom merge to deal with matching records.
|
274
|
+
# @return [String]
|
275
|
+
#
|
276
|
+
# @!attribute [rw] crawler_connection
|
277
|
+
# Specifies the name of the connection that is associated with the
|
278
|
+
# catalog table used.
|
279
|
+
# @return [String]
|
280
|
+
#
|
281
|
+
# @!attribute [rw] table_schema
|
282
|
+
# The array of schema output for a given node.
|
283
|
+
# @return [Array<Types::Option>]
|
284
|
+
#
|
285
|
+
# @!attribute [rw] staging_table
|
286
|
+
# The name of the temporary staging table that is used when doing a
|
287
|
+
# MERGE or APPEND with upsert.
|
288
|
+
# @return [String]
|
289
|
+
#
|
290
|
+
# @!attribute [rw] selected_columns
|
291
|
+
# The list of column names used to determine a matching record when
|
292
|
+
# doing a MERGE or APPEND with upsert.
|
293
|
+
# @return [Array<Types::Option>]
|
294
|
+
#
|
295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AmazonRedshiftNodeData AWS API Documentation
|
296
|
+
#
|
297
|
+
class AmazonRedshiftNodeData < Struct.new(
|
298
|
+
:access_type,
|
299
|
+
:source_type,
|
300
|
+
:connection,
|
301
|
+
:schema,
|
302
|
+
:table,
|
303
|
+
:catalog_database,
|
304
|
+
:catalog_table,
|
305
|
+
:catalog_redshift_schema,
|
306
|
+
:catalog_redshift_table,
|
307
|
+
:temp_dir,
|
308
|
+
:iam_role,
|
309
|
+
:advanced_options,
|
310
|
+
:sample_query,
|
311
|
+
:pre_action,
|
312
|
+
:post_action,
|
313
|
+
:action,
|
314
|
+
:table_prefix,
|
315
|
+
:upsert,
|
316
|
+
:merge_action,
|
317
|
+
:merge_when_matched,
|
318
|
+
:merge_when_not_matched,
|
319
|
+
:merge_clause,
|
320
|
+
:crawler_connection,
|
321
|
+
:table_schema,
|
322
|
+
:staging_table,
|
323
|
+
:selected_columns)
|
324
|
+
SENSITIVE = []
|
325
|
+
include Aws::Structure
|
326
|
+
end
|
327
|
+
|
328
|
+
# Specifies an Amazon Redshift source.
|
329
|
+
#
|
330
|
+
# @!attribute [rw] name
|
331
|
+
# The name of the Amazon Redshift source.
|
332
|
+
# @return [String]
|
333
|
+
#
|
334
|
+
# @!attribute [rw] data
|
335
|
+
# Specifies the data of the Amazon Reshift source node.
|
336
|
+
# @return [Types::AmazonRedshiftNodeData]
|
337
|
+
#
|
338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AmazonRedshiftSource AWS API Documentation
|
339
|
+
#
|
340
|
+
class AmazonRedshiftSource < Struct.new(
|
341
|
+
:name,
|
342
|
+
:data)
|
343
|
+
SENSITIVE = []
|
344
|
+
include Aws::Structure
|
345
|
+
end
|
346
|
+
|
347
|
+
# Specifies an Amazon Redshift target.
|
348
|
+
#
|
349
|
+
# @!attribute [rw] name
|
350
|
+
# The name of the Amazon Redshift target.
|
351
|
+
# @return [String]
|
352
|
+
#
|
353
|
+
# @!attribute [rw] data
|
354
|
+
# Specifies the data of the Amazon Reshift target node.
|
355
|
+
# @return [Types::AmazonRedshiftNodeData]
|
356
|
+
#
|
357
|
+
# @!attribute [rw] inputs
|
358
|
+
# The nodes that are inputs to the data target.
|
359
|
+
# @return [Array<String>]
|
360
|
+
#
|
361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AmazonRedshiftTarget AWS API Documentation
|
362
|
+
#
|
363
|
+
class AmazonRedshiftTarget < Struct.new(
|
364
|
+
:name,
|
365
|
+
:data,
|
366
|
+
:inputs)
|
367
|
+
SENSITIVE = []
|
368
|
+
include Aws::Structure
|
369
|
+
end
|
370
|
+
|
158
371
|
# Specifies a transform that maps data property keys in the data source
|
159
372
|
# to data property keys in the data target. You can rename keys, modify
|
160
373
|
# the data types for keys, and choose which keys to drop from the
|
@@ -1993,6 +2206,14 @@ module Aws::Glue
|
|
1993
2206
|
# S3.
|
1994
2207
|
# @return [Types::S3DeltaDirectTarget]
|
1995
2208
|
#
|
2209
|
+
# @!attribute [rw] amazon_redshift_source
|
2210
|
+
# Specifies a target that writes to a data source in Amazon Redshift.
|
2211
|
+
# @return [Types::AmazonRedshiftSource]
|
2212
|
+
#
|
2213
|
+
# @!attribute [rw] amazon_redshift_target
|
2214
|
+
# Specifies a target that writes to a data target in Amazon Redshift.
|
2215
|
+
# @return [Types::AmazonRedshiftTarget]
|
2216
|
+
#
|
1996
2217
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CodeGenConfigurationNode AWS API Documentation
|
1997
2218
|
#
|
1998
2219
|
class CodeGenConfigurationNode < Struct.new(
|
@@ -2058,7 +2279,9 @@ module Aws::Glue
|
|
2058
2279
|
:catalog_delta_source,
|
2059
2280
|
:s3_delta_source,
|
2060
2281
|
:s3_delta_catalog_target,
|
2061
|
-
:s3_delta_direct_target
|
2282
|
+
:s3_delta_direct_target,
|
2283
|
+
:amazon_redshift_source,
|
2284
|
+
:amazon_redshift_target)
|
2062
2285
|
SENSITIVE = []
|
2063
2286
|
include Aws::Structure
|
2064
2287
|
end
|
@@ -3571,12 +3794,17 @@ module Aws::Glue
|
|
3571
3794
|
# If no context words are passed only a regular expression is checked.
|
3572
3795
|
# @return [Array<String>]
|
3573
3796
|
#
|
3797
|
+
# @!attribute [rw] tags
|
3798
|
+
# A list of tags applied to the custom entity type.
|
3799
|
+
# @return [Hash<String,String>]
|
3800
|
+
#
|
3574
3801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityTypeRequest AWS API Documentation
|
3575
3802
|
#
|
3576
3803
|
class CreateCustomEntityTypeRequest < Struct.new(
|
3577
3804
|
:name,
|
3578
3805
|
:regex_string,
|
3579
|
-
:context_words
|
3806
|
+
:context_words,
|
3807
|
+
:tags)
|
3580
3808
|
SENSITIVE = []
|
3581
3809
|
include Aws::Structure
|
3582
3810
|
end
|
@@ -7287,6 +7515,10 @@ module Aws::Glue
|
|
7287
7515
|
# This field is not used and will be deprecated in future release.
|
7288
7516
|
# @return [String]
|
7289
7517
|
#
|
7518
|
+
# @!attribute [rw] output_schemas
|
7519
|
+
# Specifies the data schema for the dynamic transform.
|
7520
|
+
# @return [Array<Types::GlueSchema>]
|
7521
|
+
#
|
7290
7522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DynamicTransform AWS API Documentation
|
7291
7523
|
#
|
7292
7524
|
class DynamicTransform < Struct.new(
|
@@ -7296,7 +7528,8 @@ module Aws::Glue
|
|
7296
7528
|
:parameters,
|
7297
7529
|
:function_name,
|
7298
7530
|
:path,
|
7299
|
-
:version
|
7531
|
+
:version,
|
7532
|
+
:output_schemas)
|
7300
7533
|
SENSITIVE = []
|
7301
7534
|
include Aws::Structure
|
7302
7535
|
end
|
@@ -13292,11 +13525,16 @@ module Aws::Glue
|
|
13292
13525
|
# The maximum number of results to return.
|
13293
13526
|
# @return [Integer]
|
13294
13527
|
#
|
13528
|
+
# @!attribute [rw] tags
|
13529
|
+
# A list of key-value pair tags.
|
13530
|
+
# @return [Hash<String,String>]
|
13531
|
+
#
|
13295
13532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypesRequest AWS API Documentation
|
13296
13533
|
#
|
13297
13534
|
class ListCustomEntityTypesRequest < Struct.new(
|
13298
13535
|
:next_token,
|
13299
|
-
:max_results
|
13536
|
+
:max_results,
|
13537
|
+
:tags)
|
13300
13538
|
SENSITIVE = []
|
13301
13539
|
include Aws::Structure
|
13302
13540
|
end
|
@@ -14646,6 +14884,30 @@ module Aws::Glue
|
|
14646
14884
|
include Aws::Structure
|
14647
14885
|
end
|
14648
14886
|
|
14887
|
+
# Specifies an option value.
|
14888
|
+
#
|
14889
|
+
# @!attribute [rw] value
|
14890
|
+
# Specifies the value of the option.
|
14891
|
+
# @return [String]
|
14892
|
+
#
|
14893
|
+
# @!attribute [rw] label
|
14894
|
+
# Specifies the label of the option.
|
14895
|
+
# @return [String]
|
14896
|
+
#
|
14897
|
+
# @!attribute [rw] description
|
14898
|
+
# Specifies the description of the option.
|
14899
|
+
# @return [String]
|
14900
|
+
#
|
14901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Option AWS API Documentation
|
14902
|
+
#
|
14903
|
+
class Option < Struct.new(
|
14904
|
+
:value,
|
14905
|
+
:label,
|
14906
|
+
:description)
|
14907
|
+
SENSITIVE = []
|
14908
|
+
include Aws::Structure
|
14909
|
+
end
|
14910
|
+
|
14649
14911
|
# Specifies an Oracle data source in the Glue Data Catalog.
|
14650
14912
|
#
|
14651
14913
|
# @!attribute [rw] name
|
data/lib/aws-sdk-glue.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.137.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|