aws-sdk-glue 1.114.0 → 1.117.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -362,6 +362,7 @@ module Aws::Glue
362
362
  EvaluationMetrics = Shapes::StructureShape.new(name: 'EvaluationMetrics')
363
363
  EventBatchingCondition = Shapes::StructureShape.new(name: 'EventBatchingCondition')
364
364
  EventQueueArn = Shapes::StringShape.new(name: 'EventQueueArn')
365
+ ExecutionClass = Shapes::StringShape.new(name: 'ExecutionClass')
365
366
  ExecutionProperty = Shapes::StructureShape.new(name: 'ExecutionProperty')
366
367
  ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
367
368
  ExistCondition = Shapes::StringShape.new(name: 'ExistCondition')
@@ -1798,6 +1799,7 @@ module Aws::Glue
1798
1799
  CreateJobRequest.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "NumberOfWorkers"))
1799
1800
  CreateJobRequest.add_member(:worker_type, Shapes::ShapeRef.new(shape: WorkerType, location_name: "WorkerType"))
1800
1801
  CreateJobRequest.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
1802
+ CreateJobRequest.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
1801
1803
  CreateJobRequest.struct_class = Types::CreateJobRequest
1802
1804
 
1803
1805
  CreateJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
@@ -3132,6 +3134,7 @@ module Aws::Glue
3132
3134
  Job.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
3133
3135
  Job.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
3134
3136
  Job.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
3137
+ Job.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
3135
3138
  Job.struct_class = Types::Job
3136
3139
 
3137
3140
  JobBookmarkEntry.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
@@ -3182,6 +3185,7 @@ module Aws::Glue
3182
3185
  JobRun.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
3183
3186
  JobRun.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
3184
3187
  JobRun.add_member(:dpu_seconds, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "DPUSeconds"))
3188
+ JobRun.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
3185
3189
  JobRun.struct_class = Types::JobRun
3186
3190
 
3187
3191
  JobRunList.member = Shapes::ShapeRef.new(shape: JobRun)
@@ -3204,6 +3208,7 @@ module Aws::Glue
3204
3208
  JobUpdate.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
3205
3209
  JobUpdate.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
3206
3210
  JobUpdate.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
3211
+ JobUpdate.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
3207
3212
  JobUpdate.struct_class = Types::JobUpdate
3208
3213
 
3209
3214
  Join.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
@@ -4205,6 +4210,7 @@ module Aws::Glue
4205
4210
  StartJobRunRequest.add_member(:notification_property, Shapes::ShapeRef.new(shape: NotificationProperty, location_name: "NotificationProperty"))
4206
4211
  StartJobRunRequest.add_member(:worker_type, Shapes::ShapeRef.new(shape: WorkerType, location_name: "WorkerType"))
4207
4212
  StartJobRunRequest.add_member(:number_of_workers, Shapes::ShapeRef.new(shape: NullableInteger, location_name: "NumberOfWorkers"))
4213
+ StartJobRunRequest.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
4208
4214
  StartJobRunRequest.struct_class = Types::StartJobRunRequest
4209
4215
 
4210
4216
  StartJobRunResponse.add_member(:job_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "JobRunId"))
@@ -4765,6 +4771,8 @@ module Aws::Glue
4765
4771
  WorkflowRunStatistics.add_member(:stopped_actions, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "StoppedActions"))
4766
4772
  WorkflowRunStatistics.add_member(:succeeded_actions, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "SucceededActions"))
4767
4773
  WorkflowRunStatistics.add_member(:running_actions, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "RunningActions"))
4774
+ WorkflowRunStatistics.add_member(:errored_actions, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "ErroredActions"))
4775
+ WorkflowRunStatistics.add_member(:waiting_actions, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "WaitingActions"))
4768
4776
  WorkflowRunStatistics.struct_class = Types::WorkflowRunStatistics
4769
4777
 
4770
4778
  WorkflowRuns.member = Shapes::ShapeRef.new(shape: WorkflowRun)