aws-sdk-glue 1.92.0 → 1.96.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -2100,8 +2316,9 @@ module Aws::Glue
2100
2316
  # within an Amazon Virtual Private Cloud environment (Amazon VPC).
2101
2317
  #
2102
2318
  # * `MARKETPLACE` - Uses configuration settings contained in a
2103
- # connector purchased from Marketplace to read from and write to
2104
- # data stores that are not natively supported by Glue.
2319
+ # connector purchased from Amazon Web Services Marketplace to read
2320
+ # from and write to data stores that are not natively supported by
2321
+ # Glue.
2105
2322
  #
2106
2323
  # * `CUSTOM` - Uses configuration settings contained in a custom
2107
2324
  # connector to read from and write to data stores that are not
@@ -2552,6 +2769,57 @@ module Aws::Glue
2552
2769
  include Aws::Structure
2553
2770
  end
2554
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
+
2555
2823
  # @note When making an API call, you may pass CreateClassifierRequest
2556
2824
  # data as a hash:
2557
2825
  #
@@ -2632,6 +2900,9 @@ module Aws::Glue
2632
2900
  # availability_zone: "NameString",
2633
2901
  # },
2634
2902
  # },
2903
+ # tags: {
2904
+ # "TagKey" => "TagValue",
2905
+ # },
2635
2906
  # }
2636
2907
  #
2637
2908
  # @!attribute [rw] catalog_id
@@ -2644,11 +2915,16 @@ module Aws::Glue
2644
2915
  # A `ConnectionInput` object defining the connection to create.
2645
2916
  # @return [Types::ConnectionInput]
2646
2917
  #
2918
+ # @!attribute [rw] tags
2919
+ # The tags you assign to the connection.
2920
+ # @return [Hash<String,String>]
2921
+ #
2647
2922
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnectionRequest AWS API Documentation
2648
2923
  #
2649
2924
  class CreateConnectionRequest < Struct.new(
2650
2925
  :catalog_id,
2651
- :connection_input)
2926
+ :connection_input,
2927
+ :tags)
2652
2928
  SENSITIVE = []
2653
2929
  include Aws::Structure
2654
2930
  end
@@ -5121,6 +5397,37 @@ module Aws::Glue
5121
5397
  include Aws::Structure
5122
5398
  end
5123
5399
 
5400
+ # @note When making an API call, you may pass DeleteBlueprintRequest
5401
+ # data as a hash:
5402
+ #
5403
+ # {
5404
+ # name: "NameString", # required
5405
+ # }
5406
+ #
5407
+ # @!attribute [rw] name
5408
+ # The name of the blueprint to delete.
5409
+ # @return [String]
5410
+ #
5411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteBlueprintRequest AWS API Documentation
5412
+ #
5413
+ class DeleteBlueprintRequest < Struct.new(
5414
+ :name)
5415
+ SENSITIVE = []
5416
+ include Aws::Structure
5417
+ end
5418
+
5419
+ # @!attribute [rw] name
5420
+ # Returns the name of the blueprint that was deleted.
5421
+ # @return [String]
5422
+ #
5423
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteBlueprintResponse AWS API Documentation
5424
+ #
5425
+ class DeleteBlueprintResponse < Struct.new(
5426
+ :name)
5427
+ SENSITIVE = []
5428
+ include Aws::Structure
5429
+ end
5430
+
5124
5431
  # @note When making an API call, you may pass DeleteClassifierRequest
5125
5432
  # data as a hash:
5126
5433
  #
@@ -6633,6 +6940,134 @@ module Aws::Glue
6633
6940
  include Aws::Structure
6634
6941
  end
6635
6942
 
6943
+ # @note When making an API call, you may pass GetBlueprintRequest
6944
+ # data as a hash:
6945
+ #
6946
+ # {
6947
+ # name: "NameString", # required
6948
+ # include_blueprint: false,
6949
+ # include_parameter_spec: false,
6950
+ # }
6951
+ #
6952
+ # @!attribute [rw] name
6953
+ # The name of the blueprint.
6954
+ # @return [String]
6955
+ #
6956
+ # @!attribute [rw] include_blueprint
6957
+ # Specifies whether or not to include the blueprint in the response.
6958
+ # @return [Boolean]
6959
+ #
6960
+ # @!attribute [rw] include_parameter_spec
6961
+ # Specifies whether or not to include the parameter specification.
6962
+ # @return [Boolean]
6963
+ #
6964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRequest AWS API Documentation
6965
+ #
6966
+ class GetBlueprintRequest < Struct.new(
6967
+ :name,
6968
+ :include_blueprint,
6969
+ :include_parameter_spec)
6970
+ SENSITIVE = []
6971
+ include Aws::Structure
6972
+ end
6973
+
6974
+ # @!attribute [rw] blueprint
6975
+ # Returns a `Blueprint` object.
6976
+ # @return [Types::Blueprint]
6977
+ #
6978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintResponse AWS API Documentation
6979
+ #
6980
+ class GetBlueprintResponse < Struct.new(
6981
+ :blueprint)
6982
+ SENSITIVE = []
6983
+ include Aws::Structure
6984
+ end
6985
+
6986
+ # @note When making an API call, you may pass GetBlueprintRunRequest
6987
+ # data as a hash:
6988
+ #
6989
+ # {
6990
+ # blueprint_name: "OrchestrationNameString", # required
6991
+ # run_id: "IdString", # required
6992
+ # }
6993
+ #
6994
+ # @!attribute [rw] blueprint_name
6995
+ # The name of the blueprint.
6996
+ # @return [String]
6997
+ #
6998
+ # @!attribute [rw] run_id
6999
+ # The run ID for the blueprint run you want to retrieve.
7000
+ # @return [String]
7001
+ #
7002
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunRequest AWS API Documentation
7003
+ #
7004
+ class GetBlueprintRunRequest < Struct.new(
7005
+ :blueprint_name,
7006
+ :run_id)
7007
+ SENSITIVE = []
7008
+ include Aws::Structure
7009
+ end
7010
+
7011
+ # @!attribute [rw] blueprint_run
7012
+ # Returns a `BlueprintRun` object.
7013
+ # @return [Types::BlueprintRun]
7014
+ #
7015
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunResponse AWS API Documentation
7016
+ #
7017
+ class GetBlueprintRunResponse < Struct.new(
7018
+ :blueprint_run)
7019
+ SENSITIVE = []
7020
+ include Aws::Structure
7021
+ end
7022
+
7023
+ # @note When making an API call, you may pass GetBlueprintRunsRequest
7024
+ # data as a hash:
7025
+ #
7026
+ # {
7027
+ # blueprint_name: "NameString", # required
7028
+ # next_token: "GenericString",
7029
+ # max_results: 1,
7030
+ # }
7031
+ #
7032
+ # @!attribute [rw] blueprint_name
7033
+ # The name of the blueprint.
7034
+ # @return [String]
7035
+ #
7036
+ # @!attribute [rw] next_token
7037
+ # A continuation token, if this is a continuation request.
7038
+ # @return [String]
7039
+ #
7040
+ # @!attribute [rw] max_results
7041
+ # The maximum size of a list to return.
7042
+ # @return [Integer]
7043
+ #
7044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunsRequest AWS API Documentation
7045
+ #
7046
+ class GetBlueprintRunsRequest < Struct.new(
7047
+ :blueprint_name,
7048
+ :next_token,
7049
+ :max_results)
7050
+ SENSITIVE = []
7051
+ include Aws::Structure
7052
+ end
7053
+
7054
+ # @!attribute [rw] blueprint_runs
7055
+ # Returns a list of `BlueprintRun` objects.
7056
+ # @return [Array<Types::BlueprintRun>]
7057
+ #
7058
+ # @!attribute [rw] next_token
7059
+ # A continuation token, if not all blueprint runs have been returned.
7060
+ # @return [String]
7061
+ #
7062
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetBlueprintRunsResponse AWS API Documentation
7063
+ #
7064
+ class GetBlueprintRunsResponse < Struct.new(
7065
+ :blueprint_runs,
7066
+ :next_token)
7067
+ SENSITIVE = []
7068
+ include Aws::Structure
7069
+ end
7070
+
6636
7071
  # @note When making an API call, you may pass GetCatalogImportStatusRequest
6637
7072
  # data as a hash:
6638
7073
  #
@@ -8287,6 +8722,10 @@ module Aws::Glue
8287
8722
  # @return [Integer]
8288
8723
  #
8289
8724
  # @!attribute [rw] exclude_column_schema
8725
+ # When true, specifies not returning the partition column schema.
8726
+ # Useful when you are interested only in other partition attributes
8727
+ # such as partition values or location. This approach avoids the
8728
+ # problem of a large response by not returning duplicate data.
8290
8729
  # @return [Boolean]
8291
8730
  #
8292
8731
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionsRequest AWS API Documentation
@@ -9783,6 +10222,17 @@ module Aws::Glue
9783
10222
  include Aws::Structure
9784
10223
  end
9785
10224
 
10225
+ # @!attribute [rw] message
10226
+ # @return [String]
10227
+ #
10228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IllegalBlueprintStateException AWS API Documentation
10229
+ #
10230
+ class IllegalBlueprintStateException < Struct.new(
10231
+ :message)
10232
+ SENSITIVE = []
10233
+ include Aws::Structure
10234
+ end
10235
+
9786
10236
  # The workflow is in an invalid state to perform a requested operation.
9787
10237
  #
9788
10238
  # @!attribute [rw] message
@@ -10736,6 +11186,44 @@ module Aws::Glue
10736
11186
  include Aws::Structure
10737
11187
  end
10738
11188
 
11189
+ # When there are multiple versions of a blueprint and the latest version
11190
+ # has some errors, this attribute indicates the last successful
11191
+ # blueprint definition that is available with the service.
11192
+ #
11193
+ # @!attribute [rw] description
11194
+ # The description of the blueprint.
11195
+ # @return [String]
11196
+ #
11197
+ # @!attribute [rw] last_modified_on
11198
+ # The date and time the blueprint was last modified.
11199
+ # @return [Time]
11200
+ #
11201
+ # @!attribute [rw] parameter_spec
11202
+ # A JSON string specifying the parameters for the blueprint.
11203
+ # @return [String]
11204
+ #
11205
+ # @!attribute [rw] blueprint_location
11206
+ # Specifies a path in Amazon S3 where the blueprint is published by
11207
+ # the Glue developer.
11208
+ # @return [String]
11209
+ #
11210
+ # @!attribute [rw] blueprint_service_location
11211
+ # Specifies a path in Amazon S3 where the blueprint is copied when you
11212
+ # create or update the blueprint.
11213
+ # @return [String]
11214
+ #
11215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/LastActiveDefinition AWS API Documentation
11216
+ #
11217
+ class LastActiveDefinition < Struct.new(
11218
+ :description,
11219
+ :last_modified_on,
11220
+ :parameter_spec,
11221
+ :blueprint_location,
11222
+ :blueprint_service_location)
11223
+ SENSITIVE = []
11224
+ include Aws::Structure
11225
+ end
11226
+
10739
11227
  # Status and error information about the most recent crawl.
10740
11228
  #
10741
11229
  # @!attribute [rw] status
@@ -10801,6 +11289,56 @@ module Aws::Glue
10801
11289
  include Aws::Structure
10802
11290
  end
10803
11291
 
11292
+ # @note When making an API call, you may pass ListBlueprintsRequest
11293
+ # data as a hash:
11294
+ #
11295
+ # {
11296
+ # next_token: "GenericString",
11297
+ # max_results: 1,
11298
+ # tags: {
11299
+ # "TagKey" => "TagValue",
11300
+ # },
11301
+ # }
11302
+ #
11303
+ # @!attribute [rw] next_token
11304
+ # A continuation token, if this is a continuation request.
11305
+ # @return [String]
11306
+ #
11307
+ # @!attribute [rw] max_results
11308
+ # The maximum size of a list to return.
11309
+ # @return [Integer]
11310
+ #
11311
+ # @!attribute [rw] tags
11312
+ # Filters the list by an Amazon Web Services resource tag.
11313
+ # @return [Hash<String,String>]
11314
+ #
11315
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListBlueprintsRequest AWS API Documentation
11316
+ #
11317
+ class ListBlueprintsRequest < Struct.new(
11318
+ :next_token,
11319
+ :max_results,
11320
+ :tags)
11321
+ SENSITIVE = []
11322
+ include Aws::Structure
11323
+ end
11324
+
11325
+ # @!attribute [rw] blueprints
11326
+ # List of names of blueprints in the account.
11327
+ # @return [Array<String>]
11328
+ #
11329
+ # @!attribute [rw] next_token
11330
+ # A continuation token, if not all blueprint names have been returned.
11331
+ # @return [String]
11332
+ #
11333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListBlueprintsResponse AWS API Documentation
11334
+ #
11335
+ class ListBlueprintsResponse < Struct.new(
11336
+ :blueprints,
11337
+ :next_token)
11338
+ SENSITIVE = []
11339
+ include Aws::Structure
11340
+ end
11341
+
10804
11342
  # @note When making an API call, you may pass ListCrawlersRequest
10805
11343
  # data as a hash:
10806
11344
  #
@@ -12425,8 +12963,8 @@ module Aws::Glue
12425
12963
  #
12426
12964
  # * By directly updating the resource policy with `PutResourePolicy`
12427
12965
  #
12428
- # * By using the **Grant permissions** command on the Management
12429
- # Console.
12966
+ # * By using the **Grant permissions** command on the Amazon Web
12967
+ # Services Management Console.
12430
12968
  #
12431
12969
  # Must be set to `'TRUE'` if you have already used the Management
12432
12970
  # Console to grant cross-account access, otherwise the call fails.
@@ -13731,6 +14269,49 @@ module Aws::Glue
13731
14269
  include Aws::Structure
13732
14270
  end
13733
14271
 
14272
+ # @note When making an API call, you may pass StartBlueprintRunRequest
14273
+ # data as a hash:
14274
+ #
14275
+ # {
14276
+ # blueprint_name: "OrchestrationNameString", # required
14277
+ # parameters: "BlueprintParameters",
14278
+ # role_arn: "OrchestrationIAMRoleArn", # required
14279
+ # }
14280
+ #
14281
+ # @!attribute [rw] blueprint_name
14282
+ # The name of the blueprint.
14283
+ # @return [String]
14284
+ #
14285
+ # @!attribute [rw] parameters
14286
+ # Specifies the parameters as a `BlueprintParameters` object.
14287
+ # @return [String]
14288
+ #
14289
+ # @!attribute [rw] role_arn
14290
+ # Specifies the IAM role used to create the workflow.
14291
+ # @return [String]
14292
+ #
14293
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartBlueprintRunRequest AWS API Documentation
14294
+ #
14295
+ class StartBlueprintRunRequest < Struct.new(
14296
+ :blueprint_name,
14297
+ :parameters,
14298
+ :role_arn)
14299
+ SENSITIVE = []
14300
+ include Aws::Structure
14301
+ end
14302
+
14303
+ # @!attribute [rw] run_id
14304
+ # The run ID for this blueprint run.
14305
+ # @return [String]
14306
+ #
14307
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartBlueprintRunResponse AWS API Documentation
14308
+ #
14309
+ class StartBlueprintRunResponse < Struct.new(
14310
+ :run_id)
14311
+ SENSITIVE = []
14312
+ include Aws::Structure
14313
+ end
14314
+
13734
14315
  # @note When making an API call, you may pass StartCrawlerRequest
13735
14316
  # data as a hash:
13736
14317
  #
@@ -15438,6 +16019,49 @@ module Aws::Glue
15438
16019
  #
15439
16020
  class UntagResourceResponse < Aws::EmptyStructure; end
15440
16021
 
16022
+ # @note When making an API call, you may pass UpdateBlueprintRequest
16023
+ # data as a hash:
16024
+ #
16025
+ # {
16026
+ # name: "OrchestrationNameString", # required
16027
+ # description: "Generic512CharString",
16028
+ # blueprint_location: "OrchestrationS3Location", # required
16029
+ # }
16030
+ #
16031
+ # @!attribute [rw] name
16032
+ # The name of the blueprint.
16033
+ # @return [String]
16034
+ #
16035
+ # @!attribute [rw] description
16036
+ # A description of the blueprint.
16037
+ # @return [String]
16038
+ #
16039
+ # @!attribute [rw] blueprint_location
16040
+ # Specifies a path in Amazon S3 where the blueprint is published.
16041
+ # @return [String]
16042
+ #
16043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateBlueprintRequest AWS API Documentation
16044
+ #
16045
+ class UpdateBlueprintRequest < Struct.new(
16046
+ :name,
16047
+ :description,
16048
+ :blueprint_location)
16049
+ SENSITIVE = []
16050
+ include Aws::Structure
16051
+ end
16052
+
16053
+ # @!attribute [rw] name
16054
+ # Returns the name of the blueprint that was updated.
16055
+ # @return [String]
16056
+ #
16057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateBlueprintResponse AWS API Documentation
16058
+ #
16059
+ class UpdateBlueprintResponse < Struct.new(
16060
+ :name)
16061
+ SENSITIVE = []
16062
+ include Aws::Structure
16063
+ end
16064
+
15441
16065
  # @note When making an API call, you may pass UpdateClassifierRequest
15442
16066
  # data as a hash:
15443
16067
  #
@@ -17193,6 +17817,11 @@ module Aws::Glue
17193
17817
  # concurrent workflow runs.
17194
17818
  # @return [Integer]
17195
17819
  #
17820
+ # @!attribute [rw] blueprint_details
17821
+ # This structure indicates the details of the blueprint that this
17822
+ # particular workflow is created from.
17823
+ # @return [Types::BlueprintDetails]
17824
+ #
17196
17825
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Workflow AWS API Documentation
17197
17826
  #
17198
17827
  class Workflow < Struct.new(
@@ -17203,7 +17832,8 @@ module Aws::Glue
17203
17832
  :last_modified_on,
17204
17833
  :last_run,
17205
17834
  :graph,
17206
- :max_concurrent_runs)
17835
+ :max_concurrent_runs,
17836
+ :blueprint_details)
17207
17837
  SENSITIVE = []
17208
17838
  include Aws::Structure
17209
17839
  end