aws-sdk-glue 1.93.0 → 1.94.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -39,6 +39,7 @@ module Aws::Glue
39
39
  # * {EntityNotFoundException}
40
40
  # * {GlueEncryptionException}
41
41
  # * {IdempotentParameterMismatchException}
42
+ # * {IllegalBlueprintStateException}
42
43
  # * {IllegalWorkflowStateException}
43
44
  # * {InternalServiceException}
44
45
  # * {InvalidInputException}
@@ -238,6 +239,21 @@ module Aws::Glue
238
239
  end
239
240
  end
240
241
 
242
+ class IllegalBlueprintStateException < ServiceError
243
+
244
+ # @param [Seahorse::Client::RequestContext] context
245
+ # @param [String] message
246
+ # @param [Aws::Glue::Types::IllegalBlueprintStateException] data
247
+ def initialize(context, message, data = Aws::EmptyStructure.new)
248
+ super(context, message, data)
249
+ end
250
+
251
+ # @return [String]
252
+ def message
253
+ @message || @data[:message]
254
+ end
255
+ end
256
+
241
257
  class IllegalWorkflowStateException < ServiceError
242
258
 
243
259
  # @param [Seahorse::Client::RequestContext] context
@@ -471,6 +471,55 @@ module Aws::Glue
471
471
  include Aws::Structure
472
472
  end
473
473
 
474
+ # @note When making an API call, you may pass BatchGetBlueprintsRequest
475
+ # data as a hash:
476
+ #
477
+ # {
478
+ # names: ["OrchestrationNameString"], # required
479
+ # include_blueprint: false,
480
+ # include_parameter_spec: false,
481
+ # }
482
+ #
483
+ # @!attribute [rw] names
484
+ # A list of blueprint names.
485
+ # @return [Array<String>]
486
+ #
487
+ # @!attribute [rw] include_blueprint
488
+ # Specifies whether or not to include the blueprint in the response.
489
+ # @return [Boolean]
490
+ #
491
+ # @!attribute [rw] include_parameter_spec
492
+ # Specifies whether or not to include the parameters, as a JSON
493
+ # string, for the blueprint in the response.
494
+ # @return [Boolean]
495
+ #
496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetBlueprintsRequest AWS API Documentation
497
+ #
498
+ class BatchGetBlueprintsRequest < Struct.new(
499
+ :names,
500
+ :include_blueprint,
501
+ :include_parameter_spec)
502
+ SENSITIVE = []
503
+ include Aws::Structure
504
+ end
505
+
506
+ # @!attribute [rw] blueprints
507
+ # Returns a list of blueprint as a `Blueprints` object.
508
+ # @return [Array<Types::Blueprint>]
509
+ #
510
+ # @!attribute [rw] missing_blueprints
511
+ # Returns a list of `BlueprintNames` that were not found.
512
+ # @return [Array<String>]
513
+ #
514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetBlueprintsResponse AWS API Documentation
515
+ #
516
+ class BatchGetBlueprintsResponse < Struct.new(
517
+ :blueprints,
518
+ :missing_blueprints)
519
+ SENSITIVE = []
520
+ include Aws::Structure
521
+ end
522
+
474
523
  # @note When making an API call, you may pass BatchGetCrawlersRequest
475
524
  # data as a hash:
476
525
  #
@@ -1069,6 +1118,173 @@ module Aws::Glue
1069
1118
  include Aws::Structure
1070
1119
  end
1071
1120
 
1121
+ # The details of a blueprint.
1122
+ #
1123
+ # @!attribute [rw] name
1124
+ # The name of the blueprint.
1125
+ # @return [String]
1126
+ #
1127
+ # @!attribute [rw] description
1128
+ # The description of the blueprint.
1129
+ # @return [String]
1130
+ #
1131
+ # @!attribute [rw] created_on
1132
+ # The date and time the blueprint was registered.
1133
+ # @return [Time]
1134
+ #
1135
+ # @!attribute [rw] last_modified_on
1136
+ # The date and time the blueprint was last modified.
1137
+ # @return [Time]
1138
+ #
1139
+ # @!attribute [rw] parameter_spec
1140
+ # A JSON string that indicates the list of parameter specifications
1141
+ # for the blueprint.
1142
+ # @return [String]
1143
+ #
1144
+ # @!attribute [rw] blueprint_location
1145
+ # Specifies the path in Amazon S3 where the blueprint is published.
1146
+ # @return [String]
1147
+ #
1148
+ # @!attribute [rw] blueprint_service_location
1149
+ # Specifies a path in Amazon S3 where the blueprint is copied when you
1150
+ # call `CreateBlueprint/UpdateBlueprint` to register the blueprint in
1151
+ # Glue.
1152
+ # @return [String]
1153
+ #
1154
+ # @!attribute [rw] status
1155
+ # The status of the blueprint registration.
1156
+ #
1157
+ # * Creating — The blueprint registration is in progress.
1158
+ #
1159
+ # * Active — The blueprint has been successfully registered.
1160
+ #
1161
+ # * Updating — An update to the blueprint registration is in progress.
1162
+ #
1163
+ # * Failed — The blueprint registration failed.
1164
+ # @return [String]
1165
+ #
1166
+ # @!attribute [rw] error_message
1167
+ # An error message.
1168
+ # @return [String]
1169
+ #
1170
+ # @!attribute [rw] last_active_definition
1171
+ # When there are multiple versions of a blueprint and the latest
1172
+ # version has some errors, this attribute indicates the last
1173
+ # successful blueprint definition that is available with the service.
1174
+ # @return [Types::LastActiveDefinition]
1175
+ #
1176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Blueprint AWS API Documentation
1177
+ #
1178
+ class Blueprint < Struct.new(
1179
+ :name,
1180
+ :description,
1181
+ :created_on,
1182
+ :last_modified_on,
1183
+ :parameter_spec,
1184
+ :blueprint_location,
1185
+ :blueprint_service_location,
1186
+ :status,
1187
+ :error_message,
1188
+ :last_active_definition)
1189
+ SENSITIVE = []
1190
+ include Aws::Structure
1191
+ end
1192
+
1193
+ # The details of a blueprint.
1194
+ #
1195
+ # @!attribute [rw] blueprint_name
1196
+ # The name of the blueprint.
1197
+ # @return [String]
1198
+ #
1199
+ # @!attribute [rw] run_id
1200
+ # The run ID for this blueprint.
1201
+ # @return [String]
1202
+ #
1203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BlueprintDetails AWS API Documentation
1204
+ #
1205
+ class BlueprintDetails < Struct.new(
1206
+ :blueprint_name,
1207
+ :run_id)
1208
+ SENSITIVE = []
1209
+ include Aws::Structure
1210
+ end
1211
+
1212
+ # The details of a blueprint run.
1213
+ #
1214
+ # @!attribute [rw] blueprint_name
1215
+ # The name of the blueprint.
1216
+ # @return [String]
1217
+ #
1218
+ # @!attribute [rw] run_id
1219
+ # The run ID for this blueprint run.
1220
+ # @return [String]
1221
+ #
1222
+ # @!attribute [rw] workflow_name
1223
+ # The name of a workflow that is created as a result of a successful
1224
+ # blueprint run. If a blueprint run has an error, there will not be a
1225
+ # workflow created.
1226
+ # @return [String]
1227
+ #
1228
+ # @!attribute [rw] state
1229
+ # The state of the blueprint run. Possible values are:
1230
+ #
1231
+ # * Running — The blueprint run is in progress.
1232
+ #
1233
+ # * Succeeded — The blueprint run completed successfully.
1234
+ #
1235
+ # * Failed — The blueprint run failed and rollback is complete.
1236
+ #
1237
+ # * Rolling Back — The blueprint run failed and rollback is in
1238
+ # progress.
1239
+ # @return [String]
1240
+ #
1241
+ # @!attribute [rw] started_on
1242
+ # The date and time that the blueprint run started.
1243
+ # @return [Time]
1244
+ #
1245
+ # @!attribute [rw] completed_on
1246
+ # The date and time that the blueprint run completed.
1247
+ # @return [Time]
1248
+ #
1249
+ # @!attribute [rw] error_message
1250
+ # Indicates any errors that are seen while running the blueprint.
1251
+ # @return [String]
1252
+ #
1253
+ # @!attribute [rw] rollback_error_message
1254
+ # If there are any errors while creating the entities of a workflow,
1255
+ # we try to roll back the created entities until that point and delete
1256
+ # them. This attribute indicates the errors seen while trying to
1257
+ # delete the entities that are created.
1258
+ # @return [String]
1259
+ #
1260
+ # @!attribute [rw] parameters
1261
+ # The blueprint parameters as a string. You will have to provide a
1262
+ # value for each key that is required from the parameter spec that is
1263
+ # defined in the `Blueprint$ParameterSpec`.
1264
+ # @return [String]
1265
+ #
1266
+ # @!attribute [rw] role_arn
1267
+ # The role ARN. This role will be assumed by the Glue service and will
1268
+ # be used to create the workflow and other entities of a workflow.
1269
+ # @return [String]
1270
+ #
1271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BlueprintRun AWS API Documentation
1272
+ #
1273
+ class BlueprintRun < Struct.new(
1274
+ :blueprint_name,
1275
+ :run_id,
1276
+ :workflow_name,
1277
+ :state,
1278
+ :started_on,
1279
+ :completed_on,
1280
+ :error_message,
1281
+ :rollback_error_message,
1282
+ :parameters,
1283
+ :role_arn)
1284
+ SENSITIVE = []
1285
+ include Aws::Structure
1286
+ end
1287
+
1072
1288
  # Defines column statistics supported for Boolean data columns.
1073
1289
  #
1074
1290
  # @note When making an API call, you may pass BooleanColumnStatisticsData
@@ -2553,6 +2769,57 @@ module Aws::Glue
2553
2769
  include Aws::Structure
2554
2770
  end
2555
2771
 
2772
+ # @note When making an API call, you may pass CreateBlueprintRequest
2773
+ # data as a hash:
2774
+ #
2775
+ # {
2776
+ # name: "OrchestrationNameString", # required
2777
+ # description: "Generic512CharString",
2778
+ # blueprint_location: "OrchestrationS3Location", # required
2779
+ # tags: {
2780
+ # "TagKey" => "TagValue",
2781
+ # },
2782
+ # }
2783
+ #
2784
+ # @!attribute [rw] name
2785
+ # The name of the blueprint.
2786
+ # @return [String]
2787
+ #
2788
+ # @!attribute [rw] description
2789
+ # A description of the blueprint.
2790
+ # @return [String]
2791
+ #
2792
+ # @!attribute [rw] blueprint_location
2793
+ # Specifies a path in Amazon S3 where the blueprint is published.
2794
+ # @return [String]
2795
+ #
2796
+ # @!attribute [rw] tags
2797
+ # The tags to be applied to this blueprint.
2798
+ # @return [Hash<String,String>]
2799
+ #
2800
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateBlueprintRequest AWS API Documentation
2801
+ #
2802
+ class CreateBlueprintRequest < Struct.new(
2803
+ :name,
2804
+ :description,
2805
+ :blueprint_location,
2806
+ :tags)
2807
+ SENSITIVE = []
2808
+ include Aws::Structure
2809
+ end
2810
+
2811
+ # @!attribute [rw] name
2812
+ # Returns the name of the blueprint that was registered.
2813
+ # @return [String]
2814
+ #
2815
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateBlueprintResponse AWS API Documentation
2816
+ #
2817
+ class CreateBlueprintResponse < Struct.new(
2818
+ :name)
2819
+ SENSITIVE = []
2820
+ include Aws::Structure
2821
+ end
2822
+
2556
2823
  # @note When making an API call, you may pass CreateClassifierRequest
2557
2824
  # data as a hash:
2558
2825
  #
@@ -5122,6 +5389,37 @@ module Aws::Glue
5122
5389
  include Aws::Structure
5123
5390
  end
5124
5391
 
5392
+ # @note When making an API call, you may pass DeleteBlueprintRequest
5393
+ # data as a hash:
5394
+ #
5395
+ # {
5396
+ # name: "NameString", # required
5397
+ # }
5398
+ #
5399
+ # @!attribute [rw] name
5400
+ # The name of the blueprint to delete.
5401
+ # @return [String]
5402
+ #
5403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteBlueprintRequest AWS API Documentation
5404
+ #
5405
+ class DeleteBlueprintRequest < Struct.new(
5406
+ :name)
5407
+ SENSITIVE = []
5408
+ include Aws::Structure
5409
+ end
5410
+
5411
+ # @!attribute [rw] name
5412
+ # Returns the name of the blueprint that was deleted.
5413
+ # @return [String]
5414
+ #
5415
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteBlueprintResponse AWS API Documentation
5416
+ #
5417
+ class DeleteBlueprintResponse < Struct.new(
5418
+ :name)
5419
+ SENSITIVE = []
5420
+ include Aws::Structure
5421
+ end
5422
+
5125
5423
  # @note When making an API call, you may pass DeleteClassifierRequest
5126
5424
  # data as a hash:
5127
5425
  #
@@ -6634,6 +6932,134 @@ module Aws::Glue
6634
6932
  include Aws::Structure
6635
6933
  end
6636
6934
 
6935
+ # @note When making an API call, you may pass GetBlueprintRequest
6936
+ # data as a hash:
6937
+ #
6938
+ # {
6939
+ # name: "NameString", # required
6940
+ # include_blueprint: false,
6941
+ # include_parameter_spec: false,
6942
+ # }
6943
+ #
6944
+ # @!attribute [rw] name
6945
+ # The name of the blueprint.
6946
+ # @return [String]
6947
+ #
6948
+ # @!attribute [rw] include_blueprint
6949
+ # Specifies whether or not to include the blueprint in the response.
6950
+ # @return [Boolean]
6951
+ #
6952
+ # @!attribute [rw] include_parameter_spec
6953
+ # Specifies whether or not to include the parameter specification.
6954
+ # @return [Boolean]
6955
+ #
6956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRequest AWS API Documentation
6957
+ #
6958
+ class GetBlueprintRequest < Struct.new(
6959
+ :name,
6960
+ :include_blueprint,
6961
+ :include_parameter_spec)
6962
+ SENSITIVE = []
6963
+ include Aws::Structure
6964
+ end
6965
+
6966
+ # @!attribute [rw] blueprint
6967
+ # Returns a `Blueprint` object.
6968
+ # @return [Types::Blueprint]
6969
+ #
6970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintResponse AWS API Documentation
6971
+ #
6972
+ class GetBlueprintResponse < Struct.new(
6973
+ :blueprint)
6974
+ SENSITIVE = []
6975
+ include Aws::Structure
6976
+ end
6977
+
6978
+ # @note When making an API call, you may pass GetBlueprintRunRequest
6979
+ # data as a hash:
6980
+ #
6981
+ # {
6982
+ # blueprint_name: "OrchestrationNameString", # required
6983
+ # run_id: "IdString", # required
6984
+ # }
6985
+ #
6986
+ # @!attribute [rw] blueprint_name
6987
+ # The name of the blueprint.
6988
+ # @return [String]
6989
+ #
6990
+ # @!attribute [rw] run_id
6991
+ # The run ID for the blueprint run you want to retrieve.
6992
+ # @return [String]
6993
+ #
6994
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunRequest AWS API Documentation
6995
+ #
6996
+ class GetBlueprintRunRequest < Struct.new(
6997
+ :blueprint_name,
6998
+ :run_id)
6999
+ SENSITIVE = []
7000
+ include Aws::Structure
7001
+ end
7002
+
7003
+ # @!attribute [rw] blueprint_run
7004
+ # Returns a `BlueprintRun` object.
7005
+ # @return [Types::BlueprintRun]
7006
+ #
7007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunResponse AWS API Documentation
7008
+ #
7009
+ class GetBlueprintRunResponse < Struct.new(
7010
+ :blueprint_run)
7011
+ SENSITIVE = []
7012
+ include Aws::Structure
7013
+ end
7014
+
7015
+ # @note When making an API call, you may pass GetBlueprintRunsRequest
7016
+ # data as a hash:
7017
+ #
7018
+ # {
7019
+ # blueprint_name: "NameString", # required
7020
+ # next_token: "GenericString",
7021
+ # max_results: 1,
7022
+ # }
7023
+ #
7024
+ # @!attribute [rw] blueprint_name
7025
+ # The name of the blueprint.
7026
+ # @return [String]
7027
+ #
7028
+ # @!attribute [rw] next_token
7029
+ # A continuation token, if this is a continuation request.
7030
+ # @return [String]
7031
+ #
7032
+ # @!attribute [rw] max_results
7033
+ # The maximum size of a list to return.
7034
+ # @return [Integer]
7035
+ #
7036
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunsRequest AWS API Documentation
7037
+ #
7038
+ class GetBlueprintRunsRequest < Struct.new(
7039
+ :blueprint_name,
7040
+ :next_token,
7041
+ :max_results)
7042
+ SENSITIVE = []
7043
+ include Aws::Structure
7044
+ end
7045
+
7046
+ # @!attribute [rw] blueprint_runs
7047
+ # Returns a list of `BlueprintRun` objects.
7048
+ # @return [Array<Types::BlueprintRun>]
7049
+ #
7050
+ # @!attribute [rw] next_token
7051
+ # A continuation token, if not all blueprint runs have been returned.
7052
+ # @return [String]
7053
+ #
7054
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunsResponse AWS API Documentation
7055
+ #
7056
+ class GetBlueprintRunsResponse < Struct.new(
7057
+ :blueprint_runs,
7058
+ :next_token)
7059
+ SENSITIVE = []
7060
+ include Aws::Structure
7061
+ end
7062
+
6637
7063
  # @note When making an API call, you may pass GetCatalogImportStatusRequest
6638
7064
  # data as a hash:
6639
7065
  #
@@ -9784,6 +10210,17 @@ module Aws::Glue
9784
10210
  include Aws::Structure
9785
10211
  end
9786
10212
 
10213
+ # @!attribute [rw] message
10214
+ # @return [String]
10215
+ #
10216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IllegalBlueprintStateException AWS API Documentation
10217
+ #
10218
+ class IllegalBlueprintStateException < Struct.new(
10219
+ :message)
10220
+ SENSITIVE = []
10221
+ include Aws::Structure
10222
+ end
10223
+
9787
10224
  # The workflow is in an invalid state to perform a requested operation.
9788
10225
  #
9789
10226
  # @!attribute [rw] message
@@ -10737,6 +11174,44 @@ module Aws::Glue
10737
11174
  include Aws::Structure
10738
11175
  end
10739
11176
 
11177
+ # When there are multiple versions of a blueprint and the latest version
11178
+ # has some errors, this attribute indicates the last successful
11179
+ # blueprint definition that is available with the service.
11180
+ #
11181
+ # @!attribute [rw] description
11182
+ # The description of the blueprint.
11183
+ # @return [String]
11184
+ #
11185
+ # @!attribute [rw] last_modified_on
11186
+ # The date and time the blueprint was last modified.
11187
+ # @return [Time]
11188
+ #
11189
+ # @!attribute [rw] parameter_spec
11190
+ # A JSON string specifying the parameters for the blueprint.
11191
+ # @return [String]
11192
+ #
11193
+ # @!attribute [rw] blueprint_location
11194
+ # Specifies a path in Amazon S3 where the blueprint is published by
11195
+ # the Glue developer.
11196
+ # @return [String]
11197
+ #
11198
+ # @!attribute [rw] blueprint_service_location
11199
+ # Specifies a path in Amazon S3 where the blueprint is copied when you
11200
+ # create or update the blueprint.
11201
+ # @return [String]
11202
+ #
11203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/LastActiveDefinition AWS API Documentation
11204
+ #
11205
+ class LastActiveDefinition < Struct.new(
11206
+ :description,
11207
+ :last_modified_on,
11208
+ :parameter_spec,
11209
+ :blueprint_location,
11210
+ :blueprint_service_location)
11211
+ SENSITIVE = []
11212
+ include Aws::Structure
11213
+ end
11214
+
10740
11215
  # Status and error information about the most recent crawl.
10741
11216
  #
10742
11217
  # @!attribute [rw] status
@@ -10802,6 +11277,56 @@ module Aws::Glue
10802
11277
  include Aws::Structure
10803
11278
  end
10804
11279
 
11280
+ # @note When making an API call, you may pass ListBlueprintsRequest
11281
+ # data as a hash:
11282
+ #
11283
+ # {
11284
+ # next_token: "GenericString",
11285
+ # max_results: 1,
11286
+ # tags: {
11287
+ # "TagKey" => "TagValue",
11288
+ # },
11289
+ # }
11290
+ #
11291
+ # @!attribute [rw] next_token
11292
+ # A continuation token, if this is a continuation request.
11293
+ # @return [String]
11294
+ #
11295
+ # @!attribute [rw] max_results
11296
+ # The maximum size of a list to return.
11297
+ # @return [Integer]
11298
+ #
11299
+ # @!attribute [rw] tags
11300
+ # Filters the list by an Amazon Web Services resource tag.
11301
+ # @return [Hash<String,String>]
11302
+ #
11303
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListBlueprintsRequest AWS API Documentation
11304
+ #
11305
+ class ListBlueprintsRequest < Struct.new(
11306
+ :next_token,
11307
+ :max_results,
11308
+ :tags)
11309
+ SENSITIVE = []
11310
+ include Aws::Structure
11311
+ end
11312
+
11313
+ # @!attribute [rw] blueprints
11314
+ # List of names of blueprints in the account.
11315
+ # @return [Array<String>]
11316
+ #
11317
+ # @!attribute [rw] next_token
11318
+ # A continuation token, if not all blueprint names have been returned.
11319
+ # @return [String]
11320
+ #
11321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListBlueprintsResponse AWS API Documentation
11322
+ #
11323
+ class ListBlueprintsResponse < Struct.new(
11324
+ :blueprints,
11325
+ :next_token)
11326
+ SENSITIVE = []
11327
+ include Aws::Structure
11328
+ end
11329
+
10805
11330
  # @note When making an API call, you may pass ListCrawlersRequest
10806
11331
  # data as a hash:
10807
11332
  #
@@ -13732,6 +14257,49 @@ module Aws::Glue
13732
14257
  include Aws::Structure
13733
14258
  end
13734
14259
 
14260
+ # @note When making an API call, you may pass StartBlueprintRunRequest
14261
+ # data as a hash:
14262
+ #
14263
+ # {
14264
+ # blueprint_name: "OrchestrationNameString", # required
14265
+ # parameters: "BlueprintParameters",
14266
+ # role_arn: "OrchestrationIAMRoleArn", # required
14267
+ # }
14268
+ #
14269
+ # @!attribute [rw] blueprint_name
14270
+ # The name of the blueprint.
14271
+ # @return [String]
14272
+ #
14273
+ # @!attribute [rw] parameters
14274
+ # Specifies the parameters as a `BlueprintParameters` object.
14275
+ # @return [String]
14276
+ #
14277
+ # @!attribute [rw] role_arn
14278
+ # Specifies the IAM role used to create the workflow.
14279
+ # @return [String]
14280
+ #
14281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartBlueprintRunRequest AWS API Documentation
14282
+ #
14283
+ class StartBlueprintRunRequest < Struct.new(
14284
+ :blueprint_name,
14285
+ :parameters,
14286
+ :role_arn)
14287
+ SENSITIVE = []
14288
+ include Aws::Structure
14289
+ end
14290
+
14291
+ # @!attribute [rw] run_id
14292
+ # The run ID for this blueprint run.
14293
+ # @return [String]
14294
+ #
14295
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartBlueprintRunResponse AWS API Documentation
14296
+ #
14297
+ class StartBlueprintRunResponse < Struct.new(
14298
+ :run_id)
14299
+ SENSITIVE = []
14300
+ include Aws::Structure
14301
+ end
14302
+
13735
14303
  # @note When making an API call, you may pass StartCrawlerRequest
13736
14304
  # data as a hash:
13737
14305
  #
@@ -15439,6 +16007,49 @@ module Aws::Glue
15439
16007
  #
15440
16008
  class UntagResourceResponse < Aws::EmptyStructure; end
15441
16009
 
16010
+ # @note When making an API call, you may pass UpdateBlueprintRequest
16011
+ # data as a hash:
16012
+ #
16013
+ # {
16014
+ # name: "OrchestrationNameString", # required
16015
+ # description: "Generic512CharString",
16016
+ # blueprint_location: "OrchestrationS3Location", # required
16017
+ # }
16018
+ #
16019
+ # @!attribute [rw] name
16020
+ # The name of the blueprint.
16021
+ # @return [String]
16022
+ #
16023
+ # @!attribute [rw] description
16024
+ # A description of the blueprint.
16025
+ # @return [String]
16026
+ #
16027
+ # @!attribute [rw] blueprint_location
16028
+ # Specifies a path in Amazon S3 where the blueprint is published.
16029
+ # @return [String]
16030
+ #
16031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateBlueprintRequest AWS API Documentation
16032
+ #
16033
+ class UpdateBlueprintRequest < Struct.new(
16034
+ :name,
16035
+ :description,
16036
+ :blueprint_location)
16037
+ SENSITIVE = []
16038
+ include Aws::Structure
16039
+ end
16040
+
16041
+ # @!attribute [rw] name
16042
+ # Returns the name of the blueprint that was updated.
16043
+ # @return [String]
16044
+ #
16045
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateBlueprintResponse AWS API Documentation
16046
+ #
16047
+ class UpdateBlueprintResponse < Struct.new(
16048
+ :name)
16049
+ SENSITIVE = []
16050
+ include Aws::Structure
16051
+ end
16052
+
15442
16053
  # @note When making an API call, you may pass UpdateClassifierRequest
15443
16054
  # data as a hash:
15444
16055
  #
@@ -17194,6 +17805,11 @@ module Aws::Glue
17194
17805
  # concurrent workflow runs.
17195
17806
  # @return [Integer]
17196
17807
  #
17808
+ # @!attribute [rw] blueprint_details
17809
+ # This structure indicates the details of the blueprint that this
17810
+ # particular workflow is created from.
17811
+ # @return [Types::BlueprintDetails]
17812
+ #
17197
17813
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Workflow AWS API Documentation
17198
17814
  #
17199
17815
  class Workflow < Struct.new(
@@ -17204,7 +17820,8 @@ module Aws::Glue
17204
17820
  :last_modified_on,
17205
17821
  :last_run,
17206
17822
  :graph,
17207
- :max_concurrent_runs)
17823
+ :max_concurrent_runs,
17824
+ :blueprint_details)
17208
17825
  SENSITIVE = []
17209
17826
  include Aws::Structure
17210
17827
  end