aws-sdk-deadline 1.41.0 → 1.42.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.
@@ -13,17 +13,47 @@ module Aws::Deadline
13
13
  # Provides information about the GPU accelerators used for jobs
14
14
  # processed by a fleet.
15
15
  #
16
+ # Accelerator capabilities cannot be used with wait-and-save fleets. If
17
+ # you specify accelerator capabilities, you must use either spot or
18
+ # on-demand instance market options.
19
+ #
20
+ # <note markdown="1"> Each accelerator type maps to specific EC2 instance families:
21
+ #
22
+ # * `t4`: Uses G4dn instance family
23
+ #
24
+ # * `a10g`: Uses G5 instance family
25
+ #
26
+ # * `l4`: Uses G6 and Gr6 instance families
27
+ #
28
+ # * `l40s`: Uses G6e instance family
29
+ #
30
+ # </note>
31
+ #
16
32
  # @!attribute [rw] selections
17
33
  # A list of accelerator capabilities requested for this fleet. Only
18
34
  # Amazon Elastic Compute Cloud instances that provide these
19
35
  # capabilities will be used. For example, if you specify both L4 and
20
- # T4 chips, Deadline Cloud will use Amazon EC2 instances that have
21
- # either the L4 or the T4 chip installed.
36
+ # T4 chips, Amazon Web Services Deadline Cloud will use Amazon EC2
37
+ # instances that have either the L4 or the T4 chip installed.
38
+ #
39
+ # * You must specify at least one accelerator selection.
40
+ #
41
+ # * You cannot specify the same accelerator name multiple times in the
42
+ # selections list.
43
+ #
44
+ # * All accelerators in the selections must use the same runtime
45
+ # version.
22
46
  # @return [Array<Types::AcceleratorSelection>]
23
47
  #
24
48
  # @!attribute [rw] count
25
49
  # The number of GPU accelerators specified for worker hosts in this
26
50
  # fleet.
51
+ #
52
+ # You must specify either `acceleratorCapabilities.count.max` or
53
+ # `allowedInstanceTypes` when using accelerator capabilities. If you
54
+ # don't specify a maximum count, Amazon Web Services Deadline Cloud
55
+ # uses the instance types you specify in `allowedInstanceTypes` to
56
+ # determine the maximum number of accelerators.
27
57
  # @return [Types::AcceleratorCountRange]
28
58
  #
29
59
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AcceleratorCapabilities AWS API Documentation
@@ -61,23 +91,20 @@ module Aws::Deadline
61
91
  # @!attribute [rw] name
62
92
  # The name of the chip used by the GPU accelerator.
63
93
  #
64
- # If you specify `l4` as the name of the accelerator, you must specify
65
- # `latest` or `grid:r570` as the runtime.
66
- #
67
94
  # The available GPU accelerators are:
68
95
  #
69
- # * `t4` - NVIDIA T4 Tensor Core GPU
96
+ # * `t4` - NVIDIA T4 Tensor Core GPU (16 GiB memory)
70
97
  #
71
- # * `a10g` - NVIDIA A10G Tensor Core GPU
98
+ # * `a10g` - NVIDIA A10G Tensor Core GPU (24 GiB memory)
72
99
  #
73
- # * `l4` - NVIDIA L4 Tensor Core GPU
100
+ # * `l4` - NVIDIA L4 Tensor Core GPU (24 GiB memory)
74
101
  #
75
- # * `l40s` - NVIDIA L40S Tensor Core GPU
102
+ # * `l40s` - NVIDIA L40S Tensor Core GPU (48 GiB memory)
76
103
  # @return [String]
77
104
  #
78
105
  # @!attribute [rw] runtime
79
106
  # Specifies the runtime driver to use for the GPU accelerator. You
80
- # must use the same runtime for all GPUs.
107
+ # must use the same runtime for all GPUs in a fleet.
81
108
  #
82
109
  # You can choose from the following runtimes:
83
110
  #
@@ -89,10 +116,24 @@ module Aws::Deadline
89
116
  #
90
117
  # * `grid:r535` - [NVIDIA vGPU software 16][2]
91
118
  #
92
- # If you don't specify a runtime, Deadline Cloud uses `latest` as the
93
- # default. However, if you have multiple accelerators and specify
94
- # `latest` for some and leave others blank, Deadline Cloud raises an
95
- # exception.
119
+ # If you don't specify a runtime, Amazon Web Services Deadline Cloud
120
+ # uses `latest` as the default. However, if you have multiple
121
+ # accelerators and specify `latest` for some and leave others blank,
122
+ # Amazon Web Services Deadline Cloud raises an exception.
123
+ #
124
+ # Not all runtimes are compatible with all accelerator types:
125
+ #
126
+ # * `t4` and `a10g`: Support all runtimes (`grid:r570`, `grid:r535`)
127
+ #
128
+ # * `l4` and `l40s`: Only support `grid:r570` and newer
129
+ #
130
+ # All accelerators in a fleet must use the same runtime version. You
131
+ # cannot mix different runtime versions within a single fleet.
132
+ #
133
+ # <note markdown="1"> When you specify `latest`, it resolves to `grid:r570` for all
134
+ # currently supported accelerators.
135
+ #
136
+ # </note>
96
137
  #
97
138
  #
98
139
  #
@@ -264,7 +305,7 @@ module Aws::Deadline
264
305
  # @return [Types::AssignedTaskRunSessionActionDefinition]
265
306
  #
266
307
  # @!attribute [rw] sync_input_job_attachments
267
- # The job attachment to sync with an assigned session action.
308
+ # The job attachments to sync for the assigned session action.
268
309
  # @return [Types::AssignedSyncInputJobAttachmentsSessionActionDefinition]
269
310
  #
270
311
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AssignedSessionActionDefinition AWS API Documentation
@@ -286,11 +327,12 @@ module Aws::Deadline
286
327
  class Unknown < AssignedSessionActionDefinition; end
287
328
  end
288
329
 
289
- # The details for an assigned session action as it relates to a job
290
- # attachment.
330
+ # The assigned session action definition for syncing input job
331
+ # attachments.
291
332
  #
292
333
  # @!attribute [rw] step_id
293
- # The step ID.
334
+ # The step ID for the assigned sync input job attachments session
335
+ # action.
294
336
  # @return [String]
295
337
  #
296
338
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/AssignedSyncInputJobAttachmentsSessionActionDefinition AWS API Documentation
@@ -650,14 +692,14 @@ module Aws::Deadline
650
692
  include Aws::Structure
651
693
  end
652
694
 
653
- # The attachments for jobs.
695
+ # The job attachments.
654
696
  #
655
697
  # @!attribute [rw] manifests
656
- # A list of manifests which describe job attachment configurations.
698
+ # The manifest properties for the attachments.
657
699
  # @return [Array<Types::ManifestProperties>]
658
700
  #
659
701
  # @!attribute [rw] file_system
660
- # The file system.
702
+ # The file system location for the attachments.
661
703
  # @return [String]
662
704
  #
663
705
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/Attachments AWS API Documentation
@@ -1025,6 +1067,11 @@ module Aws::Deadline
1025
1067
  # The schedule to associate with this budget.
1026
1068
  # @return [Types::BudgetSchedule]
1027
1069
  #
1070
+ # @!attribute [rw] tags
1071
+ # Each tag consists of a tag key and a tag value. Tag keys and values
1072
+ # are both required, but tag values can be empty strings.
1073
+ # @return [Hash<String,String>]
1074
+ #
1028
1075
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CreateBudgetRequest AWS API Documentation
1029
1076
  #
1030
1077
  class CreateBudgetRequest < Struct.new(
@@ -1035,7 +1082,8 @@ module Aws::Deadline
1035
1082
  :description,
1036
1083
  :approximate_dollar_limit,
1037
1084
  :actions,
1038
- :schedule)
1085
+ :schedule,
1086
+ :tags)
1039
1087
  SENSITIVE = [:description]
1040
1088
  include Aws::Structure
1041
1089
  end
@@ -1450,8 +1498,8 @@ module Aws::Deadline
1450
1498
  # @return [String]
1451
1499
  #
1452
1500
  # @!attribute [rw] identity_center_instance_arn
1453
- # The Amazon Resource Name (ARN) of the IAM Identity Center instance
1454
- # that authenticates monitor users.
1501
+ # The Amazon Resource Name of the IAM Identity Center instance that
1502
+ # authenticates monitor users.
1455
1503
  # @return [String]
1456
1504
  #
1457
1505
  # @!attribute [rw] subdomain
@@ -1460,10 +1508,10 @@ module Aws::Deadline
1460
1508
  # @return [String]
1461
1509
  #
1462
1510
  # @!attribute [rw] role_arn
1463
- # The Amazon Resource Name (ARN) of the IAM role that the monitor uses
1464
- # to connect to Deadline Cloud. Every user that signs in to the
1465
- # monitor using IAM Identity Center uses this role to access Deadline
1466
- # Cloud resources.
1511
+ # The Amazon Resource Name of the IAM role that the monitor uses to
1512
+ # connect to Deadline Cloud. Every user that signs in to the monitor
1513
+ # using IAM Identity Center uses this role to access Deadline Cloud
1514
+ # resources.
1467
1515
  # @return [String]
1468
1516
  #
1469
1517
  # @!attribute [rw] tags
@@ -1490,8 +1538,8 @@ module Aws::Deadline
1490
1538
  # @return [String]
1491
1539
  #
1492
1540
  # @!attribute [rw] identity_center_application_arn
1493
- # The Amazon Resource Name (ARN) that IAM Identity Center assigns to
1494
- # the monitor.
1541
+ # The Amazon Resource Name that IAM Identity Center assigns to the
1542
+ # monitor.
1495
1543
  # @return [String]
1496
1544
  #
1497
1545
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CreateMonitorResponse AWS API Documentation
@@ -1802,32 +1850,22 @@ module Aws::Deadline
1802
1850
  include Aws::Structure
1803
1851
  end
1804
1852
 
1805
- # The details of a customer managed fleet configuration.
1853
+ # The configuration details for a customer managed fleet.
1806
1854
  #
1807
1855
  # @!attribute [rw] mode
1808
- # The Auto Scaling mode for the customer managed fleet configuration.
1856
+ # The Auto Scaling mode for the customer managed fleet.
1809
1857
  # @return [String]
1810
1858
  #
1811
1859
  # @!attribute [rw] worker_capabilities
1812
- # The worker capabilities for a customer managed fleet configuration.
1860
+ # The worker capabilities for the customer managed fleet.
1813
1861
  # @return [Types::CustomerManagedWorkerCapabilities]
1814
1862
  #
1815
1863
  # @!attribute [rw] storage_profile_id
1816
- # The storage profile ID.
1864
+ # The storage profile ID for the customer managed fleet.
1817
1865
  # @return [String]
1818
1866
  #
1819
1867
  # @!attribute [rw] tag_propagation_mode
1820
- # Specifies whether tags associated with a fleet are attached to
1821
- # workers when the worker is launched.
1822
- #
1823
- # When the `tagPropagationMode` is set to
1824
- # `PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH` any tag associated with a
1825
- # fleet is attached to workers when they launch. If the tags for a
1826
- # fleet change, the tags associated with running workers **do not**
1827
- # change.
1828
- #
1829
- # If you don't specify `tagPropagationMode`, the default is
1830
- # `NO_PROPAGATION`.
1868
+ # The tag propagation mode for the customer managed fleet.
1831
1869
  # @return [String]
1832
1870
  #
1833
1871
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/CustomerManagedFleetConfiguration AWS API Documentation
@@ -3391,7 +3429,7 @@ module Aws::Deadline
3391
3429
  # @return [String]
3392
3430
  #
3393
3431
  # @!attribute [rw] vpc_id
3394
- # The VCP(virtual private cloud) ID associated with the license
3432
+ # The VPC (virtual private cloud) ID associated with the license
3395
3433
  # endpoint.
3396
3434
  # @return [String]
3397
3435
  #
@@ -3556,19 +3594,18 @@ module Aws::Deadline
3556
3594
  # @return [String]
3557
3595
  #
3558
3596
  # @!attribute [rw] role_arn
3559
- # The Amazon Resource Name (ARN) of the IAM role for the monitor.
3560
- # Users of the monitor use this role to access Deadline Cloud
3561
- # resources.
3597
+ # The Amazon Resource Name of the IAM role for the monitor. Users of
3598
+ # the monitor use this role to access Deadline Cloud resources.
3562
3599
  # @return [String]
3563
3600
  #
3564
3601
  # @!attribute [rw] identity_center_instance_arn
3565
- # The Amazon Resource Name (ARN) of the IAM Identity Center instance
3602
+ # The Amazon Resource Name of the IAM Identity Center instance
3566
3603
  # responsible for authenticating monitor users.
3567
3604
  # @return [String]
3568
3605
  #
3569
3606
  # @!attribute [rw] identity_center_application_arn
3570
- # The Amazon Resource Name (ARN) that the IAM Identity Center assigned
3571
- # to the monitor when it was created.
3607
+ # The Amazon Resource Name that the IAM Identity Center assigned to
3608
+ # the monitor when it was created.
3572
3609
  # @return [String]
3573
3610
  #
3574
3611
  # @!attribute [rw] created_at
@@ -4524,7 +4561,7 @@ module Aws::Deadline
4524
4561
  # @return [String]
4525
4562
  #
4526
4563
  # @!attribute [rw] latest_session_action_id
4527
- # The latest session ID for the task.
4564
+ # The latest session action ID for the task.
4528
4565
  # @return [String]
4529
4566
  #
4530
4567
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/GetTaskResponse AWS API Documentation
@@ -5164,7 +5201,7 @@ module Aws::Deadline
5164
5201
  # @return [String]
5165
5202
  #
5166
5203
  # @!attribute [rw] target_task_run_status
5167
- # The task status to start with on the job.
5204
+ # The task status to update the job's tasks to.
5168
5205
  # @return [String]
5169
5206
  #
5170
5207
  # @!attribute [rw] task_run_status_counts
@@ -5332,7 +5369,7 @@ module Aws::Deadline
5332
5369
  # @return [String]
5333
5370
  #
5334
5371
  # @!attribute [rw] target_task_run_status
5335
- # The task status to start with on the job.
5372
+ # The task status to update the job's tasks to.
5336
5373
  # @return [String]
5337
5374
  #
5338
5375
  # @!attribute [rw] task_run_status_counts
@@ -5410,7 +5447,7 @@ module Aws::Deadline
5410
5447
  # @return [String]
5411
5448
  #
5412
5449
  # @!attribute [rw] vpc_id
5413
- # The VCP(virtual private cloud) ID associated with the license
5450
+ # The VPC (virtual private cloud) ID associated with the license
5414
5451
  # endpoint.
5415
5452
  # @return [String]
5416
5453
  #
@@ -7180,19 +7217,18 @@ module Aws::Deadline
7180
7217
  # @return [String]
7181
7218
  #
7182
7219
  # @!attribute [rw] role_arn
7183
- # The Amazon Resource Name (ARN) of the IAM role for the monitor.
7184
- # Users of the monitor use this role to access Deadline Cloud
7185
- # resources.
7220
+ # The Amazon Resource Name of the IAM role for the monitor. Users of
7221
+ # the monitor use this role to access Deadline Cloud resources.
7186
7222
  # @return [String]
7187
7223
  #
7188
7224
  # @!attribute [rw] identity_center_instance_arn
7189
- # The Amazon Resource Name (ARN) of the IAM Identity Center instance
7225
+ # The Amazon Resource Name of the IAM Identity Center instance
7190
7226
  # responsible for authenticating monitor users.
7191
7227
  # @return [String]
7192
7228
  #
7193
7229
  # @!attribute [rw] identity_center_application_arn
7194
- # The Amazon Resource Name (ARN) that the IAM Identity Center assigned
7195
- # to the monitor when it was created.
7230
+ # The Amazon Resource Name that the IAM Identity Center assigned to
7231
+ # the monitor when it was created.
7196
7232
  # @return [String]
7197
7233
  #
7198
7234
  # @!attribute [rw] created_at
@@ -7692,6 +7728,10 @@ module Aws::Deadline
7692
7728
  # Filters by a string.
7693
7729
  # @return [Types::StringFilterExpression]
7694
7730
  #
7731
+ # @!attribute [rw] string_list_filter
7732
+ # Filters by a list of string values.
7733
+ # @return [Types::StringListFilterExpression]
7734
+ #
7695
7735
  # @!attribute [rw] group_filter
7696
7736
  # Filters by group.
7697
7737
  # @return [Types::SearchGroupedFilterExpressions]
@@ -7703,6 +7743,7 @@ module Aws::Deadline
7703
7743
  :parameter_filter,
7704
7744
  :search_term_filter,
7705
7745
  :string_filter,
7746
+ :string_list_filter,
7706
7747
  :group_filter,
7707
7748
  :unknown)
7708
7749
  SENSITIVE = []
@@ -7713,13 +7754,12 @@ module Aws::Deadline
7713
7754
  class ParameterFilter < SearchFilterExpression; end
7714
7755
  class SearchTermFilter < SearchFilterExpression; end
7715
7756
  class StringFilter < SearchFilterExpression; end
7757
+ class StringListFilter < SearchFilterExpression; end
7716
7758
  class GroupFilter < SearchFilterExpression; end
7717
7759
  class Unknown < SearchFilterExpression; end
7718
7760
  end
7719
7761
 
7720
- # The filter expression, `AND` or `OR`, to use when searching among a
7721
- # group of search strings in a resource. You can use two groupings per
7722
- # search each within parenthesis `()`.
7762
+ # The search terms for a resource.
7723
7763
  #
7724
7764
  # @!attribute [rw] filters
7725
7765
  # The filters to use for the search.
@@ -7747,9 +7787,7 @@ module Aws::Deadline
7747
7787
  # @return [Array<String>]
7748
7788
  #
7749
7789
  # @!attribute [rw] filter_expressions
7750
- # The filter expression, `AND` or `OR`, to use when searching among a
7751
- # group of search strings in a resource. You can use two groupings per
7752
- # search each within parenthesis `()`.
7790
+ # The search terms for a resource.
7753
7791
  # @return [Types::SearchGroupedFilterExpressions]
7754
7792
  #
7755
7793
  # @!attribute [rw] sort_expressions
@@ -7757,12 +7795,11 @@ module Aws::Deadline
7757
7795
  # @return [Array<Types::SearchSortExpression>]
7758
7796
  #
7759
7797
  # @!attribute [rw] item_offset
7760
- # Defines how far into the scrollable list to start the return of
7761
- # results.
7798
+ # The offset for the search results.
7762
7799
  # @return [Integer]
7763
7800
  #
7764
7801
  # @!attribute [rw] page_size
7765
- # Specifies the number of items per page for the resource.
7802
+ # Specifies the number of results to return.
7766
7803
  # @return [Integer]
7767
7804
  #
7768
7805
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SearchJobsRequest AWS API Documentation
@@ -7783,7 +7820,7 @@ module Aws::Deadline
7783
7820
  # @return [Array<Types::JobSearchSummary>]
7784
7821
  #
7785
7822
  # @!attribute [rw] next_item_offset
7786
- # The next incremental starting point after the defined `itemOffset`.
7823
+ # The next item offset for the search results.
7787
7824
  # @return [Integer]
7788
7825
  #
7789
7826
  # @!attribute [rw] total_results
@@ -7846,9 +7883,7 @@ module Aws::Deadline
7846
7883
  # @return [String]
7847
7884
  #
7848
7885
  # @!attribute [rw] filter_expressions
7849
- # The filter expression, `AND` or `OR`, to use when searching among a
7850
- # group of search strings in a resource. You can use two groupings per
7851
- # search each within parenthesis `()`.
7886
+ # The search terms for a resource.
7852
7887
  # @return [Types::SearchGroupedFilterExpressions]
7853
7888
  #
7854
7889
  # @!attribute [rw] sort_expressions
@@ -7856,12 +7891,11 @@ module Aws::Deadline
7856
7891
  # @return [Array<Types::SearchSortExpression>]
7857
7892
  #
7858
7893
  # @!attribute [rw] item_offset
7859
- # Defines how far into the scrollable list to start the return of
7860
- # results.
7894
+ # The offset for the search results.
7861
7895
  # @return [Integer]
7862
7896
  #
7863
7897
  # @!attribute [rw] page_size
7864
- # Specifies the number of items per page for the resource.
7898
+ # Specifies the number of results to return.
7865
7899
  # @return [Integer]
7866
7900
  #
7867
7901
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SearchStepsRequest AWS API Documentation
@@ -7883,7 +7917,7 @@ module Aws::Deadline
7883
7917
  # @return [Array<Types::StepSearchSummary>]
7884
7918
  #
7885
7919
  # @!attribute [rw] next_item_offset
7886
- # The next incremental starting point after the defined `itemOffset`.
7920
+ # The next item offset for the search results.
7887
7921
  # @return [Integer]
7888
7922
  #
7889
7923
  # @!attribute [rw] total_results
@@ -7913,9 +7947,7 @@ module Aws::Deadline
7913
7947
  # @return [String]
7914
7948
  #
7915
7949
  # @!attribute [rw] filter_expressions
7916
- # The filter expression, `AND` or `OR`, to use when searching among a
7917
- # group of search strings in a resource. You can use two groupings per
7918
- # search each within parenthesis `()`.
7950
+ # The search terms for a resource.
7919
7951
  # @return [Types::SearchGroupedFilterExpressions]
7920
7952
  #
7921
7953
  # @!attribute [rw] sort_expressions
@@ -7923,12 +7955,11 @@ module Aws::Deadline
7923
7955
  # @return [Array<Types::SearchSortExpression>]
7924
7956
  #
7925
7957
  # @!attribute [rw] item_offset
7926
- # Defines how far into the scrollable list to start the return of
7927
- # results.
7958
+ # The offset for the search results.
7928
7959
  # @return [Integer]
7929
7960
  #
7930
7961
  # @!attribute [rw] page_size
7931
- # Specifies the number of items per page for the resource.
7962
+ # Specifies the number of results to return.
7932
7963
  # @return [Integer]
7933
7964
  #
7934
7965
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SearchTasksRequest AWS API Documentation
@@ -7950,7 +7981,7 @@ module Aws::Deadline
7950
7981
  # @return [Array<Types::TaskSearchSummary>]
7951
7982
  #
7952
7983
  # @!attribute [rw] next_item_offset
7953
- # The next incremental starting point after the defined `itemOffset`.
7984
+ # The next item offset for the search results.
7954
7985
  # @return [Integer]
7955
7986
  #
7956
7987
  # @!attribute [rw] total_results
@@ -8003,9 +8034,7 @@ module Aws::Deadline
8003
8034
  # @return [Array<String>]
8004
8035
  #
8005
8036
  # @!attribute [rw] filter_expressions
8006
- # The filter expression, `AND` or `OR`, to use when searching among a
8007
- # group of search strings in a resource. You can use two groupings per
8008
- # search each within parenthesis `()`.
8037
+ # The search terms for a resource.
8009
8038
  # @return [Types::SearchGroupedFilterExpressions]
8010
8039
  #
8011
8040
  # @!attribute [rw] sort_expressions
@@ -8013,12 +8042,11 @@ module Aws::Deadline
8013
8042
  # @return [Array<Types::SearchSortExpression>]
8014
8043
  #
8015
8044
  # @!attribute [rw] item_offset
8016
- # Defines how far into the scrollable list to start the return of
8017
- # results.
8045
+ # The offset for the search results.
8018
8046
  # @return [Integer]
8019
8047
  #
8020
8048
  # @!attribute [rw] page_size
8021
- # Specifies the number of items per page for the resource.
8049
+ # Specifies the number of results to return.
8022
8050
  # @return [Integer]
8023
8051
  #
8024
8052
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SearchWorkersRequest AWS API Documentation
@@ -8039,7 +8067,7 @@ module Aws::Deadline
8039
8067
  # @return [Array<Types::WorkerSearchSummary>]
8040
8068
  #
8041
8069
  # @!attribute [rw] next_item_offset
8042
- # The next incremental starting point after the defined `itemOffset`.
8070
+ # The next item offset for the search results.
8043
8071
  # @return [Integer]
8044
8072
  #
8045
8073
  # @!attribute [rw] total_results
@@ -8056,23 +8084,22 @@ module Aws::Deadline
8056
8084
  include Aws::Structure
8057
8085
  end
8058
8086
 
8059
- # The configuration details for a service managed Amazon EC2 fleet.
8087
+ # The configuration details for a service managed EC2 fleet.
8060
8088
  #
8061
8089
  # @!attribute [rw] instance_capabilities
8062
- # The Amazon EC2 instance capabilities.
8090
+ # The instance capabilities for the service managed EC2 fleet.
8063
8091
  # @return [Types::ServiceManagedEc2InstanceCapabilities]
8064
8092
  #
8065
8093
  # @!attribute [rw] instance_market_options
8066
- # The Amazon EC2 market type.
8094
+ # The instance market options for the service managed EC2 fleet.
8067
8095
  # @return [Types::ServiceManagedEc2InstanceMarketOptions]
8068
8096
  #
8069
8097
  # @!attribute [rw] vpc_configuration
8070
- # The VPC configuration details for a service managed Amazon EC2
8071
- # fleet.
8098
+ # The VPC configuration for the service managed EC2 fleet.
8072
8099
  # @return [Types::VpcConfiguration]
8073
8100
  #
8074
8101
  # @!attribute [rw] storage_profile_id
8075
- # The storage profile ID.
8102
+ # The storage profile ID for the service managed EC2 fleet.
8076
8103
  # @return [String]
8077
8104
  #
8078
8105
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ServiceManagedEc2FleetConfiguration AWS API Documentation
@@ -8226,7 +8253,7 @@ module Aws::Deadline
8226
8253
  # @return [Types::TaskRunSessionActionDefinition]
8227
8254
  #
8228
8255
  # @!attribute [rw] sync_input_job_attachments
8229
- # The job attachments to sync with a session action.
8256
+ # The session action definition for syncing input job attachments.
8230
8257
  # @return [Types::SyncInputJobAttachmentsSessionActionDefinition]
8231
8258
  #
8232
8259
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SessionActionDefinition AWS API Documentation
@@ -8265,7 +8292,8 @@ module Aws::Deadline
8265
8292
  # @return [Types::TaskRunSessionActionDefinitionSummary]
8266
8293
  #
8267
8294
  # @!attribute [rw] sync_input_job_attachments
8268
- # The job attachments to sync with the session action definition.
8295
+ # The session action definition summary for syncing input job
8296
+ # attachments.
8269
8297
  # @return [Types::SyncInputJobAttachmentsSessionActionDefinitionSummary]
8270
8298
  #
8271
8299
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SessionActionDefinitionSummary AWS API Documentation
@@ -8774,11 +8802,41 @@ module Aws::Deadline
8774
8802
  # The data type of the parameter.
8775
8803
  # @return [String]
8776
8804
  #
8805
+ # @!attribute [rw] chunks
8806
+ # The configuration for task chunking.
8807
+ # @return [Types::StepParameterChunks]
8808
+ #
8777
8809
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/StepParameter AWS API Documentation
8778
8810
  #
8779
8811
  class StepParameter < Struct.new(
8780
8812
  :name,
8781
- :type)
8813
+ :type,
8814
+ :chunks)
8815
+ SENSITIVE = []
8816
+ include Aws::Structure
8817
+ end
8818
+
8819
+ # Defines how a step parameter range should be divided into chunks.
8820
+ #
8821
+ # @!attribute [rw] default_task_count
8822
+ # The number of tasks to combine into a single chunk by default.
8823
+ # @return [Integer]
8824
+ #
8825
+ # @!attribute [rw] target_runtime_seconds
8826
+ # The number of seconds to aim for when forming chunks.
8827
+ # @return [Integer]
8828
+ #
8829
+ # @!attribute [rw] range_constraint
8830
+ # Specifies whether the chunked ranges must be contiguous or can have
8831
+ # gaps between them.
8832
+ # @return [String]
8833
+ #
8834
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/StepParameterChunks AWS API Documentation
8835
+ #
8836
+ class StepParameterChunks < Struct.new(
8837
+ :default_task_count,
8838
+ :target_runtime_seconds,
8839
+ :range_constraint)
8782
8840
  SENSITIVE = []
8783
8841
  include Aws::Structure
8784
8842
  end
@@ -8853,7 +8911,7 @@ module Aws::Deadline
8853
8911
  # @return [String]
8854
8912
  #
8855
8913
  # @!attribute [rw] target_task_run_status
8856
- # The task status to start with on the job.
8914
+ # The task status to update the job's tasks to.
8857
8915
  # @return [String]
8858
8916
  #
8859
8917
  # @!attribute [rw] task_run_status_counts
@@ -8969,7 +9027,7 @@ module Aws::Deadline
8969
9027
  # @return [Integer]
8970
9028
  #
8971
9029
  # @!attribute [rw] target_task_run_status
8972
- # The task status to start with on the job.
9030
+ # The task status to update the job's tasks to.
8973
9031
  # @return [String]
8974
9032
  #
8975
9033
  # @!attribute [rw] created_at
@@ -9074,10 +9132,35 @@ module Aws::Deadline
9074
9132
  include Aws::Structure
9075
9133
  end
9076
9134
 
9077
- # The job attachment in a session action to sync.
9135
+ # Searches for a match within a list of strings.
9136
+ #
9137
+ # @!attribute [rw] name
9138
+ # The field name to search.
9139
+ # @return [String]
9140
+ #
9141
+ # @!attribute [rw] operator
9142
+ # The type of comparison to use for this search. ANY\_EQUALS and
9143
+ # ALL\_NOT\_EQUALS are supported.
9144
+ # @return [String]
9145
+ #
9146
+ # @!attribute [rw] values
9147
+ # The list of string values to search for.
9148
+ # @return [Array<String>]
9149
+ #
9150
+ # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/StringListFilterExpression AWS API Documentation
9151
+ #
9152
+ class StringListFilterExpression < Struct.new(
9153
+ :name,
9154
+ :operator,
9155
+ :values)
9156
+ SENSITIVE = []
9157
+ include Aws::Structure
9158
+ end
9159
+
9160
+ # The session action definition for syncing input job attachments.
9078
9161
  #
9079
9162
  # @!attribute [rw] step_id
9080
- # The step ID for the step in the job attachment.
9163
+ # The step ID for the sync input job attachments session action.
9081
9164
  # @return [String]
9082
9165
  #
9083
9166
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SyncInputJobAttachmentsSessionActionDefinition AWS API Documentation
@@ -9088,10 +9171,12 @@ module Aws::Deadline
9088
9171
  include Aws::Structure
9089
9172
  end
9090
9173
 
9091
- # The details of a synced job attachment.
9174
+ # The summary of the session action definition for syncing input job
9175
+ # attachments.
9092
9176
  #
9093
9177
  # @!attribute [rw] step_id
9094
- # The step ID of the step in the job attachment.
9178
+ # The step ID for the sync input job attachments session action
9179
+ # summary.
9095
9180
  # @return [String]
9096
9181
  #
9097
9182
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/SyncInputJobAttachmentsSessionActionDefinitionSummary AWS API Documentation
@@ -9309,6 +9394,10 @@ module Aws::Deadline
9309
9394
  # The user or system that updated this resource.
9310
9395
  # @return [String]
9311
9396
  #
9397
+ # @!attribute [rw] latest_session_action_id
9398
+ # The latest session action ID for the task.
9399
+ # @return [String]
9400
+ #
9312
9401
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskSearchSummary AWS API Documentation
9313
9402
  #
9314
9403
  class TaskSearchSummary < Struct.new(
@@ -9323,7 +9412,8 @@ module Aws::Deadline
9323
9412
  :started_at,
9324
9413
  :ended_at,
9325
9414
  :updated_at,
9326
- :updated_by)
9415
+ :updated_by,
9416
+ :latest_session_action_id)
9327
9417
  SENSITIVE = [:parameters]
9328
9418
  include Aws::Structure
9329
9419
  end
@@ -9375,7 +9465,7 @@ module Aws::Deadline
9375
9465
  # @return [String]
9376
9466
  #
9377
9467
  # @!attribute [rw] latest_session_action_id
9378
- # The latest session action for the task.
9468
+ # The latest session action ID for the task.
9379
9469
  # @return [String]
9380
9470
  #
9381
9471
  # @see http://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/TaskSummary AWS API Documentation
@@ -9801,7 +9891,7 @@ module Aws::Deadline
9801
9891
  # @return [String]
9802
9892
  #
9803
9893
  # @!attribute [rw] role_arn
9804
- # The Amazon Resource Name (ARN) of the new IAM role to use with the
9894
+ # The Amazon Resource Name of the new IAM role to use with the
9805
9895
  # monitor.
9806
9896
  # @return [String]
9807
9897
  #