aws-sdk-glue 1.89.0 → 1.93.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 300fa2e46a5b5d37da729ec327af3103be10d3ee576a1be6c8508c300a268927
4
- data.tar.gz: baeb290b49f9f858fefa74cdc529125e5a30b6ca0b835d7dab49b2d58b05fb1d
3
+ metadata.gz: b19dff0cbd8219274788ddd57a4a5c2ef7c571e068b12d88dcb0004ed472294f
4
+ data.tar.gz: 4cc7e65fc4d1ffcacf0eec6ed9cb13f154de5d56e832d07246dba8f19a5d089c
5
5
  SHA512:
6
- metadata.gz: 806e97221fab83762f6e103797c9e35bd42c19ca3911f017451cc93e9921c2cb0bddf00df53203570ee10dcd7a61b507f8f96eabd372d5ef6c2f9af5970b7fa4
7
- data.tar.gz: 8a3606fee2e5f177044b658461af85ed369d9383d3c29fc6045f13cc0ef0947a0be9a57c3faad4bdc7d40bf856f70748944a2c7bd0cee174495fb9d64549d9e8
6
+ metadata.gz: 799d54fc879768e2f88c335e7726f7ab073daca5c0f246ae53dfab250590ae11d6d2bb967aef0b7092b677c6f2899822fabcc4cf66c72741eb3d173236582bd6
7
+ data.tar.gz: 5334a81610f4040dd27724513cb8bac009df0726bb7b146577a5153429fa16be2553f6219127f9277182258690e06b7002d3932bce38576bf530004205263545
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2021-08-03)
5
+ ------------------
6
+
7
+ * Feature - Add ConcurrentModificationException to create-table, delete-table, create-database, update-database, delete-database
8
+
9
+ 1.92.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.91.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.90.0 (2021-07-14)
20
+ ------------------
21
+
22
+ * Feature - Add support for Event Driven Workflows
23
+
4
24
  1.89.0 (2021-06-28)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.89.0
1
+ 1.93.0
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.89.0'
51
+ GEM_VERSION = '1.93.0'
52
52
 
53
53
  end
@@ -968,7 +968,7 @@ module Aws::Glue
968
968
  # resp.triggers[0].name #=> String
969
969
  # resp.triggers[0].workflow_name #=> String
970
970
  # resp.triggers[0].id #=> String
971
- # resp.triggers[0].type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
971
+ # resp.triggers[0].type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
972
972
  # resp.triggers[0].state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
973
973
  # resp.triggers[0].description #=> String
974
974
  # resp.triggers[0].schedule #=> String
@@ -987,6 +987,8 @@ module Aws::Glue
987
987
  # resp.triggers[0].predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
988
988
  # resp.triggers[0].predicate.conditions[0].crawler_name #=> String
989
989
  # resp.triggers[0].predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
990
+ # resp.triggers[0].event_batching_condition.batch_size #=> Integer
991
+ # resp.triggers[0].event_batching_condition.batch_window #=> Integer
990
992
  # resp.triggers_not_found #=> Array
991
993
  # resp.triggers_not_found[0] #=> String
992
994
  #
@@ -1056,7 +1058,7 @@ module Aws::Glue
1056
1058
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.name #=> String
1057
1059
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.workflow_name #=> String
1058
1060
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.id #=> String
1059
- # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
1061
+ # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
1060
1062
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
1061
1063
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.description #=> String
1062
1064
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.schedule #=> String
@@ -1075,6 +1077,8 @@ module Aws::Glue
1075
1077
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
1076
1078
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
1077
1079
  # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
1080
+ # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
1081
+ # resp.workflows[0].last_run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_window #=> Integer
1078
1082
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs #=> Array
1079
1083
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].id #=> String
1080
1084
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].attempt #=> Integer
@@ -1111,6 +1115,8 @@ module Aws::Glue
1111
1115
  # resp.workflows[0].last_run.graph.edges #=> Array
1112
1116
  # resp.workflows[0].last_run.graph.edges[0].source_id #=> String
1113
1117
  # resp.workflows[0].last_run.graph.edges[0].destination_id #=> String
1118
+ # resp.workflows[0].last_run.starting_event_batch_condition.batch_size #=> Integer
1119
+ # resp.workflows[0].last_run.starting_event_batch_condition.batch_window #=> Integer
1114
1120
  # resp.workflows[0].graph.nodes #=> Array
1115
1121
  # resp.workflows[0].graph.nodes[0].type #=> String, one of "CRAWLER", "JOB", "TRIGGER"
1116
1122
  # resp.workflows[0].graph.nodes[0].name #=> String
@@ -1118,7 +1124,7 @@ module Aws::Glue
1118
1124
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.name #=> String
1119
1125
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.workflow_name #=> String
1120
1126
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.id #=> String
1121
- # resp.workflows[0].graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
1127
+ # resp.workflows[0].graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
1122
1128
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
1123
1129
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.description #=> String
1124
1130
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.schedule #=> String
@@ -1137,6 +1143,8 @@ module Aws::Glue
1137
1143
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
1138
1144
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
1139
1145
  # resp.workflows[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
1146
+ # resp.workflows[0].graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
1147
+ # resp.workflows[0].graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_window #=> Integer
1140
1148
  # resp.workflows[0].graph.nodes[0].job_details.job_runs #=> Array
1141
1149
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].id #=> String
1142
1150
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].attempt #=> Integer
@@ -2939,6 +2947,10 @@ module Aws::Glue
2939
2947
  #
2940
2948
  # [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
2941
2949
  #
2950
+ # @option params [Types::EventBatchingCondition] :event_batching_condition
2951
+ # Batch condition that must be met (specified number of events received
2952
+ # or batch time window expired) before EventBridge event trigger fires.
2953
+ #
2942
2954
  # @return [Types::CreateTriggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2943
2955
  #
2944
2956
  # * {Types::CreateTriggerResponse#name #name} => String
@@ -2948,7 +2960,7 @@ module Aws::Glue
2948
2960
  # resp = client.create_trigger({
2949
2961
  # name: "NameString", # required
2950
2962
  # workflow_name: "NameString",
2951
- # type: "SCHEDULED", # required, accepts SCHEDULED, CONDITIONAL, ON_DEMAND
2963
+ # type: "SCHEDULED", # required, accepts SCHEDULED, CONDITIONAL, ON_DEMAND, EVENT
2952
2964
  # schedule: "GenericString",
2953
2965
  # predicate: {
2954
2966
  # logical: "AND", # accepts AND, ANY
@@ -2981,6 +2993,10 @@ module Aws::Glue
2981
2993
  # tags: {
2982
2994
  # "TagKey" => "TagValue",
2983
2995
  # },
2996
+ # event_batching_condition: {
2997
+ # batch_size: 1, # required
2998
+ # batch_window: 1,
2999
+ # },
2984
3000
  # })
2985
3001
  #
2986
3002
  # @example Response structure
@@ -6853,7 +6869,7 @@ module Aws::Glue
6853
6869
  # resp.trigger.name #=> String
6854
6870
  # resp.trigger.workflow_name #=> String
6855
6871
  # resp.trigger.id #=> String
6856
- # resp.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
6872
+ # resp.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
6857
6873
  # resp.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
6858
6874
  # resp.trigger.description #=> String
6859
6875
  # resp.trigger.schedule #=> String
@@ -6872,6 +6888,8 @@ module Aws::Glue
6872
6888
  # resp.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
6873
6889
  # resp.trigger.predicate.conditions[0].crawler_name #=> String
6874
6890
  # resp.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
6891
+ # resp.trigger.event_batching_condition.batch_size #=> Integer
6892
+ # resp.trigger.event_batching_condition.batch_window #=> Integer
6875
6893
  #
6876
6894
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTrigger AWS API Documentation
6877
6895
  #
@@ -6916,7 +6934,7 @@ module Aws::Glue
6916
6934
  # resp.triggers[0].name #=> String
6917
6935
  # resp.triggers[0].workflow_name #=> String
6918
6936
  # resp.triggers[0].id #=> String
6919
- # resp.triggers[0].type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
6937
+ # resp.triggers[0].type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
6920
6938
  # resp.triggers[0].state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
6921
6939
  # resp.triggers[0].description #=> String
6922
6940
  # resp.triggers[0].schedule #=> String
@@ -6935,6 +6953,8 @@ module Aws::Glue
6935
6953
  # resp.triggers[0].predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
6936
6954
  # resp.triggers[0].predicate.conditions[0].crawler_name #=> String
6937
6955
  # resp.triggers[0].predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
6956
+ # resp.triggers[0].event_batching_condition.batch_size #=> Integer
6957
+ # resp.triggers[0].event_batching_condition.batch_window #=> Integer
6938
6958
  # resp.next_token #=> String
6939
6959
  #
6940
6960
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetTriggers AWS API Documentation
@@ -7106,7 +7126,7 @@ module Aws::Glue
7106
7126
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.name #=> String
7107
7127
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.workflow_name #=> String
7108
7128
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.id #=> String
7109
- # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
7129
+ # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
7110
7130
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
7111
7131
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.description #=> String
7112
7132
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.schedule #=> String
@@ -7125,6 +7145,8 @@ module Aws::Glue
7125
7145
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
7126
7146
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
7127
7147
  # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
7148
+ # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
7149
+ # resp.workflow.last_run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_window #=> Integer
7128
7150
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs #=> Array
7129
7151
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].id #=> String
7130
7152
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].attempt #=> Integer
@@ -7161,6 +7183,8 @@ module Aws::Glue
7161
7183
  # resp.workflow.last_run.graph.edges #=> Array
7162
7184
  # resp.workflow.last_run.graph.edges[0].source_id #=> String
7163
7185
  # resp.workflow.last_run.graph.edges[0].destination_id #=> String
7186
+ # resp.workflow.last_run.starting_event_batch_condition.batch_size #=> Integer
7187
+ # resp.workflow.last_run.starting_event_batch_condition.batch_window #=> Integer
7164
7188
  # resp.workflow.graph.nodes #=> Array
7165
7189
  # resp.workflow.graph.nodes[0].type #=> String, one of "CRAWLER", "JOB", "TRIGGER"
7166
7190
  # resp.workflow.graph.nodes[0].name #=> String
@@ -7168,7 +7192,7 @@ module Aws::Glue
7168
7192
  # resp.workflow.graph.nodes[0].trigger_details.trigger.name #=> String
7169
7193
  # resp.workflow.graph.nodes[0].trigger_details.trigger.workflow_name #=> String
7170
7194
  # resp.workflow.graph.nodes[0].trigger_details.trigger.id #=> String
7171
- # resp.workflow.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
7195
+ # resp.workflow.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
7172
7196
  # resp.workflow.graph.nodes[0].trigger_details.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
7173
7197
  # resp.workflow.graph.nodes[0].trigger_details.trigger.description #=> String
7174
7198
  # resp.workflow.graph.nodes[0].trigger_details.trigger.schedule #=> String
@@ -7187,6 +7211,8 @@ module Aws::Glue
7187
7211
  # resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
7188
7212
  # resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
7189
7213
  # resp.workflow.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
7214
+ # resp.workflow.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
7215
+ # resp.workflow.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_window #=> Integer
7190
7216
  # resp.workflow.graph.nodes[0].job_details.job_runs #=> Array
7191
7217
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].id #=> String
7192
7218
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].attempt #=> Integer
@@ -7281,7 +7307,7 @@ module Aws::Glue
7281
7307
  # resp.run.graph.nodes[0].trigger_details.trigger.name #=> String
7282
7308
  # resp.run.graph.nodes[0].trigger_details.trigger.workflow_name #=> String
7283
7309
  # resp.run.graph.nodes[0].trigger_details.trigger.id #=> String
7284
- # resp.run.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
7310
+ # resp.run.graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
7285
7311
  # resp.run.graph.nodes[0].trigger_details.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
7286
7312
  # resp.run.graph.nodes[0].trigger_details.trigger.description #=> String
7287
7313
  # resp.run.graph.nodes[0].trigger_details.trigger.schedule #=> String
@@ -7300,6 +7326,8 @@ module Aws::Glue
7300
7326
  # resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
7301
7327
  # resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
7302
7328
  # resp.run.graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
7329
+ # resp.run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
7330
+ # resp.run.graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_window #=> Integer
7303
7331
  # resp.run.graph.nodes[0].job_details.job_runs #=> Array
7304
7332
  # resp.run.graph.nodes[0].job_details.job_runs[0].id #=> String
7305
7333
  # resp.run.graph.nodes[0].job_details.job_runs[0].attempt #=> Integer
@@ -7336,6 +7364,8 @@ module Aws::Glue
7336
7364
  # resp.run.graph.edges #=> Array
7337
7365
  # resp.run.graph.edges[0].source_id #=> String
7338
7366
  # resp.run.graph.edges[0].destination_id #=> String
7367
+ # resp.run.starting_event_batch_condition.batch_size #=> Integer
7368
+ # resp.run.starting_event_batch_condition.batch_window #=> Integer
7339
7369
  #
7340
7370
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetWorkflowRun AWS API Documentation
7341
7371
  #
@@ -7434,7 +7464,7 @@ module Aws::Glue
7434
7464
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.name #=> String
7435
7465
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.workflow_name #=> String
7436
7466
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.id #=> String
7437
- # resp.runs[0].graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
7467
+ # resp.runs[0].graph.nodes[0].trigger_details.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
7438
7468
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
7439
7469
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.description #=> String
7440
7470
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.schedule #=> String
@@ -7453,6 +7483,8 @@ module Aws::Glue
7453
7483
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
7454
7484
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawler_name #=> String
7455
7485
  # resp.runs[0].graph.nodes[0].trigger_details.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
7486
+ # resp.runs[0].graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_size #=> Integer
7487
+ # resp.runs[0].graph.nodes[0].trigger_details.trigger.event_batching_condition.batch_window #=> Integer
7456
7488
  # resp.runs[0].graph.nodes[0].job_details.job_runs #=> Array
7457
7489
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].id #=> String
7458
7490
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].attempt #=> Integer
@@ -7489,6 +7521,8 @@ module Aws::Glue
7489
7521
  # resp.runs[0].graph.edges #=> Array
7490
7522
  # resp.runs[0].graph.edges[0].source_id #=> String
7491
7523
  # resp.runs[0].graph.edges[0].destination_id #=> String
7524
+ # resp.runs[0].starting_event_batch_condition.batch_size #=> Integer
7525
+ # resp.runs[0].starting_event_batch_condition.batch_window #=> Integer
7492
7526
  # resp.next_token #=> String
7493
7527
  #
7494
7528
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetWorkflowRuns AWS API Documentation
@@ -8075,8 +8109,8 @@ module Aws::Glue
8075
8109
  #
8076
8110
  # * By directly updating the resource policy with `PutResourePolicy`
8077
8111
  #
8078
- # * By using the **Grant permissions** command on the Management
8079
- # Console.
8112
+ # * By using the **Grant permissions** command on the Amazon Web
8113
+ # Services Management Console.
8080
8114
  #
8081
8115
  # Must be set to `'TRUE'` if you have already used the Management
8082
8116
  # Console to grant cross-account access, otherwise the call fails.
@@ -10479,6 +10513,10 @@ module Aws::Glue
10479
10513
  # },
10480
10514
  # ],
10481
10515
  # },
10516
+ # event_batching_condition: {
10517
+ # batch_size: 1, # required
10518
+ # batch_window: 1,
10519
+ # },
10482
10520
  # },
10483
10521
  # })
10484
10522
  #
@@ -10487,7 +10525,7 @@ module Aws::Glue
10487
10525
  # resp.trigger.name #=> String
10488
10526
  # resp.trigger.workflow_name #=> String
10489
10527
  # resp.trigger.id #=> String
10490
- # resp.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND"
10528
+ # resp.trigger.type #=> String, one of "SCHEDULED", "CONDITIONAL", "ON_DEMAND", "EVENT"
10491
10529
  # resp.trigger.state #=> String, one of "CREATING", "CREATED", "ACTIVATING", "ACTIVATED", "DEACTIVATING", "DEACTIVATED", "DELETING", "UPDATING"
10492
10530
  # resp.trigger.description #=> String
10493
10531
  # resp.trigger.schedule #=> String
@@ -10506,6 +10544,8 @@ module Aws::Glue
10506
10544
  # resp.trigger.predicate.conditions[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED", "SUCCEEDED", "FAILED", "TIMEOUT"
10507
10545
  # resp.trigger.predicate.conditions[0].crawler_name #=> String
10508
10546
  # resp.trigger.predicate.conditions[0].crawl_state #=> String, one of "RUNNING", "CANCELLING", "CANCELLED", "SUCCEEDED", "FAILED"
10547
+ # resp.trigger.event_batching_condition.batch_size #=> Integer
10548
+ # resp.trigger.event_batching_condition.batch_window #=> Integer
10509
10549
  #
10510
10550
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTrigger AWS API Documentation
10511
10551
  #
@@ -10625,7 +10665,7 @@ module Aws::Glue
10625
10665
  params: params,
10626
10666
  config: config)
10627
10667
  context[:gem_name] = 'aws-sdk-glue'
10628
- context[:gem_version] = '1.89.0'
10668
+ context[:gem_version] = '1.93.0'
10629
10669
  Seahorse::Client::Request.new(handlers, context)
10630
10670
  end
10631
10671
 
@@ -49,6 +49,7 @@ module Aws::Glue
49
49
  BatchGetTriggersResponse = Shapes::StructureShape.new(name: 'BatchGetTriggersResponse')
50
50
  BatchGetWorkflowsRequest = Shapes::StructureShape.new(name: 'BatchGetWorkflowsRequest')
51
51
  BatchGetWorkflowsResponse = Shapes::StructureShape.new(name: 'BatchGetWorkflowsResponse')
52
+ BatchSize = Shapes::IntegerShape.new(name: 'BatchSize')
52
53
  BatchStopJobRunError = Shapes::StructureShape.new(name: 'BatchStopJobRunError')
53
54
  BatchStopJobRunErrorList = Shapes::ListShape.new(name: 'BatchStopJobRunErrorList')
54
55
  BatchStopJobRunJobRunIdList = Shapes::ListShape.new(name: 'BatchStopJobRunJobRunIdList')
@@ -62,6 +63,7 @@ module Aws::Glue
62
63
  BatchUpdatePartitionRequestEntry = Shapes::StructureShape.new(name: 'BatchUpdatePartitionRequestEntry')
63
64
  BatchUpdatePartitionRequestEntryList = Shapes::ListShape.new(name: 'BatchUpdatePartitionRequestEntryList')
64
65
  BatchUpdatePartitionResponse = Shapes::StructureShape.new(name: 'BatchUpdatePartitionResponse')
66
+ BatchWindow = Shapes::IntegerShape.new(name: 'BatchWindow')
65
67
  BinaryColumnStatisticsData = Shapes::StructureShape.new(name: 'BinaryColumnStatisticsData')
66
68
  Blob = Shapes::BlobShape.new(name: 'Blob')
67
69
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
@@ -276,6 +278,7 @@ module Aws::Glue
276
278
  ErrorMessageString = Shapes::StringShape.new(name: 'ErrorMessageString')
277
279
  ErrorString = Shapes::StringShape.new(name: 'ErrorString')
278
280
  EvaluationMetrics = Shapes::StructureShape.new(name: 'EvaluationMetrics')
281
+ EventBatchingCondition = Shapes::StructureShape.new(name: 'EventBatchingCondition')
279
282
  ExecutionProperty = Shapes::StructureShape.new(name: 'ExecutionProperty')
280
283
  ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
281
284
  ExistCondition = Shapes::StringShape.new(name: 'ExistCondition')
@@ -653,6 +656,7 @@ module Aws::Glue
653
656
  StartTriggerResponse = Shapes::StructureShape.new(name: 'StartTriggerResponse')
654
657
  StartWorkflowRunRequest = Shapes::StructureShape.new(name: 'StartWorkflowRunRequest')
655
658
  StartWorkflowRunResponse = Shapes::StructureShape.new(name: 'StartWorkflowRunResponse')
659
+ StartingEventBatchCondition = Shapes::StructureShape.new(name: 'StartingEventBatchCondition')
656
660
  StopCrawlerRequest = Shapes::StructureShape.new(name: 'StopCrawlerRequest')
657
661
  StopCrawlerResponse = Shapes::StructureShape.new(name: 'StopCrawlerResponse')
658
662
  StopCrawlerScheduleRequest = Shapes::StructureShape.new(name: 'StopCrawlerScheduleRequest')
@@ -1423,6 +1427,7 @@ module Aws::Glue
1423
1427
  CreateTriggerRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
1424
1428
  CreateTriggerRequest.add_member(:start_on_creation, Shapes::ShapeRef.new(shape: BooleanValue, location_name: "StartOnCreation"))
1425
1429
  CreateTriggerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
1430
+ CreateTriggerRequest.add_member(:event_batching_condition, Shapes::ShapeRef.new(shape: EventBatchingCondition, location_name: "EventBatchingCondition"))
1426
1431
  CreateTriggerRequest.struct_class = Types::CreateTriggerRequest
1427
1432
 
1428
1433
  CreateTriggerResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
@@ -1740,6 +1745,10 @@ module Aws::Glue
1740
1745
  EvaluationMetrics.add_member(:find_matches_metrics, Shapes::ShapeRef.new(shape: FindMatchesMetrics, location_name: "FindMatchesMetrics"))
1741
1746
  EvaluationMetrics.struct_class = Types::EvaluationMetrics
1742
1747
 
1748
+ EventBatchingCondition.add_member(:batch_size, Shapes::ShapeRef.new(shape: BatchSize, required: true, location_name: "BatchSize"))
1749
+ EventBatchingCondition.add_member(:batch_window, Shapes::ShapeRef.new(shape: BatchWindow, location_name: "BatchWindow"))
1750
+ EventBatchingCondition.struct_class = Types::EventBatchingCondition
1751
+
1743
1752
  ExecutionProperty.add_member(:max_concurrent_runs, Shapes::ShapeRef.new(shape: MaxConcurrentRuns, location_name: "MaxConcurrentRuns"))
1744
1753
  ExecutionProperty.struct_class = Types::ExecutionProperty
1745
1754
 
@@ -3017,6 +3026,10 @@ module Aws::Glue
3017
3026
  StartWorkflowRunResponse.add_member(:run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "RunId"))
3018
3027
  StartWorkflowRunResponse.struct_class = Types::StartWorkflowRunResponse
3019
3028
 
3029
+ StartingEventBatchCondition.add_member(:batch_size, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "BatchSize"))
3030
+ StartingEventBatchCondition.add_member(:batch_window, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "BatchWindow"))
3031
+ StartingEventBatchCondition.struct_class = Types::StartingEventBatchCondition
3032
+
3020
3033
  StopCrawlerRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
3021
3034
  StopCrawlerRequest.struct_class = Types::StopCrawlerRequest
3022
3035
 
@@ -3202,6 +3215,7 @@ module Aws::Glue
3202
3215
  Trigger.add_member(:schedule, Shapes::ShapeRef.new(shape: GenericString, location_name: "Schedule"))
3203
3216
  Trigger.add_member(:actions, Shapes::ShapeRef.new(shape: ActionList, location_name: "Actions"))
3204
3217
  Trigger.add_member(:predicate, Shapes::ShapeRef.new(shape: Predicate, location_name: "Predicate"))
3218
+ Trigger.add_member(:event_batching_condition, Shapes::ShapeRef.new(shape: EventBatchingCondition, location_name: "EventBatchingCondition"))
3205
3219
  Trigger.struct_class = Types::Trigger
3206
3220
 
3207
3221
  TriggerList.member = Shapes::ShapeRef.new(shape: Trigger)
@@ -3216,6 +3230,7 @@ module Aws::Glue
3216
3230
  TriggerUpdate.add_member(:schedule, Shapes::ShapeRef.new(shape: GenericString, location_name: "Schedule"))
3217
3231
  TriggerUpdate.add_member(:actions, Shapes::ShapeRef.new(shape: ActionList, location_name: "Actions"))
3218
3232
  TriggerUpdate.add_member(:predicate, Shapes::ShapeRef.new(shape: Predicate, location_name: "Predicate"))
3233
+ TriggerUpdate.add_member(:event_batching_condition, Shapes::ShapeRef.new(shape: EventBatchingCondition, location_name: "EventBatchingCondition"))
3219
3234
  TriggerUpdate.struct_class = Types::TriggerUpdate
3220
3235
 
3221
3236
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: GlueResourceArn, required: true, location_name: "ResourceArn"))
@@ -3462,6 +3477,7 @@ module Aws::Glue
3462
3477
  WorkflowRun.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorString, location_name: "ErrorMessage"))
3463
3478
  WorkflowRun.add_member(:statistics, Shapes::ShapeRef.new(shape: WorkflowRunStatistics, location_name: "Statistics"))
3464
3479
  WorkflowRun.add_member(:graph, Shapes::ShapeRef.new(shape: WorkflowGraph, location_name: "Graph"))
3480
+ WorkflowRun.add_member(:starting_event_batch_condition, Shapes::ShapeRef.new(shape: StartingEventBatchCondition, location_name: "StartingEventBatchCondition"))
3465
3481
  WorkflowRun.struct_class = Types::WorkflowRun
3466
3482
 
3467
3483
  WorkflowRunProperties.key = Shapes::ShapeRef.new(shape: IdString)
@@ -3729,6 +3745,7 @@ module Aws::Glue
3729
3745
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3730
3746
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
3731
3747
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
3748
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3732
3749
  end)
3733
3750
 
3734
3751
  api.add_operation(:create_dev_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -3871,6 +3888,7 @@ module Aws::Glue
3871
3888
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3872
3889
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
3873
3890
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
3891
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3874
3892
  end)
3875
3893
 
3876
3894
  api.add_operation(:create_trigger, Seahorse::Model::Operation.new.tap do |o|
@@ -3986,6 +4004,7 @@ module Aws::Glue
3986
4004
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
3987
4005
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3988
4006
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
4007
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3989
4008
  end)
3990
4009
 
3991
4010
  api.add_operation(:delete_dev_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -4120,6 +4139,7 @@ module Aws::Glue
4120
4139
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
4121
4140
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4122
4141
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
4142
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
4123
4143
  end)
4124
4144
 
4125
4145
  api.add_operation(:delete_table_version, Seahorse::Model::Operation.new.tap do |o|
@@ -5480,6 +5500,7 @@ module Aws::Glue
5480
5500
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
5481
5501
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
5482
5502
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
5503
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
5483
5504
  end)
5484
5505
 
5485
5506
  api.add_operation(:update_dev_endpoint, Seahorse::Model::Operation.new.tap do |o|
@@ -2100,8 +2100,9 @@ module Aws::Glue
2100
2100
  # within an Amazon Virtual Private Cloud environment (Amazon VPC).
2101
2101
  #
2102
2102
  # * `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.
2103
+ # connector purchased from Amazon Web Services Marketplace to read
2104
+ # from and write to data stores that are not natively supported by
2105
+ # Glue.
2105
2106
  #
2106
2107
  # * `CUSTOM` - Uses configuration settings contained in a custom
2107
2108
  # connector to read from and write to data stores that are not
@@ -4460,7 +4461,7 @@ module Aws::Glue
4460
4461
  # {
4461
4462
  # name: "NameString", # required
4462
4463
  # workflow_name: "NameString",
4463
- # type: "SCHEDULED", # required, accepts SCHEDULED, CONDITIONAL, ON_DEMAND
4464
+ # type: "SCHEDULED", # required, accepts SCHEDULED, CONDITIONAL, ON_DEMAND, EVENT
4464
4465
  # schedule: "GenericString",
4465
4466
  # predicate: {
4466
4467
  # logical: "AND", # accepts AND, ANY
@@ -4493,6 +4494,10 @@ module Aws::Glue
4493
4494
  # tags: {
4494
4495
  # "TagKey" => "TagValue",
4495
4496
  # },
4497
+ # event_batching_condition: {
4498
+ # batch_size: 1, # required
4499
+ # batch_window: 1,
4500
+ # },
4496
4501
  # }
4497
4502
  #
4498
4503
  # @!attribute [rw] name
@@ -4548,6 +4553,12 @@ module Aws::Glue
4548
4553
  # [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-tags.html
4549
4554
  # @return [Hash<String,String>]
4550
4555
  #
4556
+ # @!attribute [rw] event_batching_condition
4557
+ # Batch condition that must be met (specified number of events
4558
+ # received or batch time window expired) before EventBridge event
4559
+ # trigger fires.
4560
+ # @return [Types::EventBatchingCondition]
4561
+ #
4551
4562
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateTriggerRequest AWS API Documentation
4552
4563
  #
4553
4564
  class CreateTriggerRequest < Struct.new(
@@ -4559,7 +4570,8 @@ module Aws::Glue
4559
4570
  :actions,
4560
4571
  :description,
4561
4572
  :start_on_creation,
4562
- :tags)
4573
+ :tags,
4574
+ :event_batching_condition)
4563
4575
  SENSITIVE = []
4564
4576
  include Aws::Structure
4565
4577
  end
@@ -6209,8 +6221,8 @@ module Aws::Glue
6209
6221
  include Aws::Structure
6210
6222
  end
6211
6223
 
6212
- # An edge represents a directed connection between two Glue components
6213
- # that are part of the workflow the edge belongs to.
6224
+ # An edge represents a directed connection between two components on a
6225
+ # workflow graph.
6214
6226
  #
6215
6227
  # @!attribute [rw] source_id
6216
6228
  # The unique of the node within the workflow where the edge starts.
@@ -6373,6 +6385,36 @@ module Aws::Glue
6373
6385
  include Aws::Structure
6374
6386
  end
6375
6387
 
6388
+ # Batch condition that must be met (specified number of events received
6389
+ # or batch time window expired) before EventBridge event trigger fires.
6390
+ #
6391
+ # @note When making an API call, you may pass EventBatchingCondition
6392
+ # data as a hash:
6393
+ #
6394
+ # {
6395
+ # batch_size: 1, # required
6396
+ # batch_window: 1,
6397
+ # }
6398
+ #
6399
+ # @!attribute [rw] batch_size
6400
+ # Number of events that must be received from Amazon EventBridge
6401
+ # before EventBridge event trigger fires.
6402
+ # @return [Integer]
6403
+ #
6404
+ # @!attribute [rw] batch_window
6405
+ # Window of time in seconds after which EventBridge event trigger
6406
+ # fires. Window starts when first event is received.
6407
+ # @return [Integer]
6408
+ #
6409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/EventBatchingCondition AWS API Documentation
6410
+ #
6411
+ class EventBatchingCondition < Struct.new(
6412
+ :batch_size,
6413
+ :batch_window)
6414
+ SENSITIVE = []
6415
+ include Aws::Structure
6416
+ end
6417
+
6376
6418
  # An execution property of a job.
6377
6419
  #
6378
6420
  # @note When making an API call, you may pass ExecutionProperty
@@ -11756,8 +11798,8 @@ module Aws::Glue
11756
11798
  include Aws::Structure
11757
11799
  end
11758
11800
 
11759
- # A node represents an Glue component such as a trigger, or job, etc.,
11760
- # that is part of a workflow.
11801
+ # A node represents an Glue component (trigger, crawler, or job) on a
11802
+ # workflow graph.
11761
11803
  #
11762
11804
  # @!attribute [rw] type
11763
11805
  # The type of Glue component represented by the node.
@@ -12384,8 +12426,8 @@ module Aws::Glue
12384
12426
  #
12385
12427
  # * By directly updating the resource policy with `PutResourePolicy`
12386
12428
  #
12387
- # * By using the **Grant permissions** command on the Management
12388
- # Console.
12429
+ # * By using the **Grant permissions** command on the Amazon Web
12430
+ # Services Management Console.
12389
12431
  #
12390
12432
  # Must be set to `'TRUE'` if you have already used the Management
12391
12433
  # Console to grant cross-account access, otherwise the call fails.
@@ -14104,6 +14146,28 @@ module Aws::Glue
14104
14146
  include Aws::Structure
14105
14147
  end
14106
14148
 
14149
+ # The batch condition that started the workflow run. Either the number
14150
+ # of events in the batch size arrived, in which case the BatchSize
14151
+ # member is non-zero, or the batch window expired, in which case the
14152
+ # BatchWindow member is non-zero.
14153
+ #
14154
+ # @!attribute [rw] batch_size
14155
+ # Number of events in the batch.
14156
+ # @return [Integer]
14157
+ #
14158
+ # @!attribute [rw] batch_window
14159
+ # Duration of the batch window in seconds.
14160
+ # @return [Integer]
14161
+ #
14162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartingEventBatchCondition AWS API Documentation
14163
+ #
14164
+ class StartingEventBatchCondition < Struct.new(
14165
+ :batch_size,
14166
+ :batch_window)
14167
+ SENSITIVE = []
14168
+ include Aws::Structure
14169
+ end
14170
+
14107
14171
  # @note When making an API call, you may pass StopCrawlerRequest
14108
14172
  # data as a hash:
14109
14173
  #
@@ -15220,6 +15284,12 @@ module Aws::Glue
15220
15284
  # The predicate of this trigger, which defines when it will fire.
15221
15285
  # @return [Types::Predicate]
15222
15286
  #
15287
+ # @!attribute [rw] event_batching_condition
15288
+ # Batch condition that must be met (specified number of events
15289
+ # received or batch time window expired) before EventBridge event
15290
+ # trigger fires.
15291
+ # @return [Types::EventBatchingCondition]
15292
+ #
15223
15293
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Trigger AWS API Documentation
15224
15294
  #
15225
15295
  class Trigger < Struct.new(
@@ -15231,7 +15301,8 @@ module Aws::Glue
15231
15301
  :description,
15232
15302
  :schedule,
15233
15303
  :actions,
15234
- :predicate)
15304
+ :predicate,
15305
+ :event_batching_condition)
15235
15306
  SENSITIVE = []
15236
15307
  include Aws::Structure
15237
15308
  end
@@ -15287,6 +15358,10 @@ module Aws::Glue
15287
15358
  # },
15288
15359
  # ],
15289
15360
  # },
15361
+ # event_batching_condition: {
15362
+ # batch_size: 1, # required
15363
+ # batch_window: 1,
15364
+ # },
15290
15365
  # }
15291
15366
  #
15292
15367
  # @!attribute [rw] name
@@ -15315,6 +15390,12 @@ module Aws::Glue
15315
15390
  # The predicate of this trigger, which defines when it will fire.
15316
15391
  # @return [Types::Predicate]
15317
15392
  #
15393
+ # @!attribute [rw] event_batching_condition
15394
+ # Batch condition that must be met (specified number of events
15395
+ # received or batch time window expired) before EventBridge event
15396
+ # trigger fires.
15397
+ # @return [Types::EventBatchingCondition]
15398
+ #
15318
15399
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TriggerUpdate AWS API Documentation
15319
15400
  #
15320
15401
  class TriggerUpdate < Struct.new(
@@ -15322,7 +15403,8 @@ module Aws::Glue
15322
15403
  :description,
15323
15404
  :schedule,
15324
15405
  :actions,
15325
- :predicate)
15406
+ :predicate,
15407
+ :event_batching_condition)
15326
15408
  SENSITIVE = []
15327
15409
  include Aws::Structure
15328
15410
  end
@@ -16754,6 +16836,10 @@ module Aws::Glue
16754
16836
  # },
16755
16837
  # ],
16756
16838
  # },
16839
+ # event_batching_condition: {
16840
+ # batch_size: 1, # required
16841
+ # batch_window: 1,
16842
+ # },
16757
16843
  # },
16758
16844
  # }
16759
16845
  #
@@ -17064,11 +17150,12 @@ module Aws::Glue
17064
17150
  include Aws::Structure
17065
17151
  end
17066
17152
 
17067
- # A workflow represents a flow in which Glue components should be run to
17068
- # complete a logical task.
17153
+ # A workflow is a collection of multiple dependent Glue jobs and
17154
+ # crawlers that are run to complete a complex ETL task. A workflow
17155
+ # manages the execution and monitoring of all its jobs and crawlers.
17069
17156
  #
17070
17157
  # @!attribute [rw] name
17071
- # The name of the workflow representing the flow.
17158
+ # The name of the workflow.
17072
17159
  # @return [String]
17073
17160
  #
17074
17161
  # @!attribute [rw] description
@@ -17077,7 +17164,9 @@ module Aws::Glue
17077
17164
  #
17078
17165
  # @!attribute [rw] default_run_properties
17079
17166
  # A collection of properties to be used as part of each execution of
17080
- # the workflow.
17167
+ # the workflow. The run properties are made available to each job in
17168
+ # the workflow. A job can modify the properties for the next jobs in
17169
+ # the flow.
17081
17170
  # @return [Hash<String,String>]
17082
17171
  #
17083
17172
  # @!attribute [rw] created_on
@@ -17189,6 +17278,10 @@ module Aws::Glue
17189
17278
  # workflow as nodes and directed connections between them as edges.
17190
17279
  # @return [Types::WorkflowGraph]
17191
17280
  #
17281
+ # @!attribute [rw] starting_event_batch_condition
17282
+ # The batch condition that started the workflow run.
17283
+ # @return [Types::StartingEventBatchCondition]
17284
+ #
17192
17285
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/WorkflowRun AWS API Documentation
17193
17286
  #
17194
17287
  class WorkflowRun < Struct.new(
@@ -17201,7 +17294,8 @@ module Aws::Glue
17201
17294
  :status,
17202
17295
  :error_message,
17203
17296
  :statistics,
17204
- :graph)
17297
+ :graph,
17298
+ :starting_event_batch_condition)
17205
17299
  SENSITIVE = []
17206
17300
  include Aws::Structure
17207
17301
  end
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.89.0
4
+ version: 1.93.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: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.112.0
22
+ version: 3.119.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.112.0
32
+ version: 3.119.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement