aws-sdk-batch 1.54.0 → 1.55.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: 0b4eab6af8f349c878194a9426c30babc99ed023f58732101a8d1a152e518f57
4
- data.tar.gz: 995b607c52be5b52e3726b237b8ac69286fe5fa4f55bb3f1c0799c7bda72209c
3
+ metadata.gz: fa14afd4f1dafa37ca5adbd582c89456632137ec4f2dd4c549a613ec8aad8af6
4
+ data.tar.gz: 040f573666176d1f803bda868ca3f3302dec546168b568dc16b7d6cb7bac5ddf
5
5
  SHA512:
6
- metadata.gz: 48c5e494d9becbfb9a92ef383177f8f4e39141f58d4ad88a1e3a1e7699e609f1650e24312acad7ec7b5a0f15f0c4507a3e218f4c9665b9a82e6658235e278b0e
7
- data.tar.gz: 58f55dd4ed28e2cc24aec28696d9aab74cabb6f3e584bc3a7b7a0c2b6b4d50f9ff70828fef644a493646da7811eadf6b44a264c999cfd535331b6be367cbaa23
6
+ metadata.gz: 0b7e5cfb4db9d0dee94ae931c2fbcc654f8f88abaebe3b4ca7606d1a8c5a68bbc38173cd92b6d7fbb48a50440f0455c6029ee496b339cd8dac17cc05d870879b
7
+ data.tar.gz: 7a506a578143ccc8bac70375f21628f33d99de63419b5ea320c990155574c8f49cd1ce66967fb05e4883788eb011b57ce393bf75d3514477293ef1b0a7635b89
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2021-11-19)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Batch.
8
+
4
9
  1.54.0 (2021-11-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -439,8 +439,9 @@ module Aws::Batch
439
439
  # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_container_instance.html
440
440
  #
441
441
  # @option params [required, String] :compute_environment_name
442
- # The name for your compute environment. Up to 128 letters (uppercase
443
- # and lowercase), numbers, hyphens, and underscores are allowed.
442
+ # The name for your compute environment. It can be up to 128 letters
443
+ # long. It can contain uppercase and lowercase letters, numbers, hyphens
444
+ # (-), and underscores (\_).
444
445
  #
445
446
  # @option params [required, String] :type
446
447
  # The type of the compute environment: `MANAGED` or `UNMANAGED`. For
@@ -471,8 +472,8 @@ module Aws::Batch
471
472
  # @option params [Integer] :unmanagedv_cpus
472
473
  # The maximum number of vCPUs for an unmanaged compute environment. This
473
474
  # parameter is only used for fair share scheduling to reserve vCPU
474
- # capacity for new share identifiers. If this parameter is not provided
475
- # for a fair share job queue, no vCPU capacity will be reserved.
475
+ # capacity for new share identifiers. If this parameter isn't provided
476
+ # for a fair share job queue, no vCPU capacity is reserved.
476
477
  #
477
478
  # <note markdown="1"> This parameter is only supported when the `type` parameter is set to
478
479
  # `UNMANAGED`/
@@ -699,8 +700,9 @@ module Aws::Batch
699
700
  # preference for scheduling jobs to that compute environment.
700
701
  #
701
702
  # @option params [required, String] :job_queue_name
702
- # The name of the job queue. Up to 128 letters (uppercase and
703
- # lowercase), numbers, and underscores are allowed.
703
+ # The name of the job queue. It can be up to 128 letters long. It can
704
+ # contain uppercase and lowercase letters, numbers, hyphens (-), and
705
+ # underscores (\_).
704
706
  #
705
707
  # @option params [String] :state
706
708
  # The state of the job queue. If the job queue state is `ENABLED`, it is
@@ -709,14 +711,14 @@ module Aws::Batch
709
711
  # finish.
710
712
  #
711
713
  # @option params [String] :scheduling_policy_arn
712
- # Amazon Resource Name (ARN) of the fair share scheduling policy. If
713
- # this parameter is specified, the job queue will use a fair share
714
- # scheduling policy. If this parameter is not specified, the job queue
715
- # will use a first in, first out (FIFO) scheduling policy. Once a job
716
- # queue is created, the fair share scheduling policy can be replaced but
717
- # not removed. The format is
718
- # `aws:Partition:batch:Region:Account:scheduling-policy/Name `. For
719
- # example,
714
+ # The Amazon Resource Name (ARN) of the fair share scheduling policy. If
715
+ # this parameter is specified, the job queue uses a fair share
716
+ # scheduling policy. If this parameter isn't specified, the job queue
717
+ # uses a first in, first out (FIFO) scheduling policy. After a job queue
718
+ # is created, you can replace but can't remove the fair share
719
+ # scheduling policy. The format is
720
+ # `aws:Partition:batch:Region:Account:scheduling-policy/Name `. An
721
+ # example is
720
722
  # `aws:aws:batch:us-west-2:012345678910:scheduling-policy/MySchedulingPolicy`.
721
723
  #
722
724
  # @option params [required, Integer] :priority
@@ -845,8 +847,9 @@ module Aws::Batch
845
847
  # Creates an Batch scheduling policy.
846
848
  #
847
849
  # @option params [required, String] :name
848
- # The name of the scheduling policy. Up to 128 letters (uppercase and
849
- # lowercase), numbers, hyphens, and underscores are allowed.
850
+ # The name of the scheduling policy. It can be up to 128 letters long.
851
+ # It can contain uppercase and lowercase letters, numbers, hyphens (-),
852
+ # and underscores (\_).
850
853
  #
851
854
  # @option params [Types::FairsharePolicy] :fairshare_policy
852
855
  # The fair share policy of the scheduling policy.
@@ -992,7 +995,7 @@ module Aws::Batch
992
995
 
993
996
  # Deletes the specified scheduling policy.
994
997
  #
995
- # You can't delete a scheduling policy that is used in any job queues.
998
+ # You can't delete a scheduling policy that's used in any job queues.
996
999
  #
997
1000
  # @option params [required, String] :arn
998
1001
  # The Amazon Resource Name (ARN) of the scheduling policy to delete.
@@ -1205,7 +1208,7 @@ module Aws::Batch
1205
1208
  #
1206
1209
  # @option params [Array<String>] :job_definitions
1207
1210
  # A list of up to 100 job definitions. Each entry in the list can either
1208
- # be an ARN of the form
1211
+ # be an ARN in the format
1209
1212
  # `arn:aws:batch:$\{Region\}:$\{Account\}:job-definition/$\{JobDefinitionName\}:$\{Revision\}`
1210
1213
  # or a short version using the form
1211
1214
  # `$\{JobDefinitionName\}:$\{Revision\}`.
@@ -1950,15 +1953,15 @@ module Aws::Batch
1950
1953
  #
1951
1954
  # : The value for the filter is the time that's before the job was
1952
1955
  # created. This corresponds to the `createdAt` value. The value is a
1953
- # string representation of the number of seconds since 00:00:00 UTC
1954
- # (midnight) on January 1, 1970.
1956
+ # string representation of the number of milliseconds since 00:00:00
1957
+ # UTC (midnight) on January 1, 1970.
1955
1958
  #
1956
1959
  # AFTER\_CREATED\_AT
1957
1960
  #
1958
1961
  # : The value for the filter is the time that's after the job was
1959
1962
  # created. This corresponds to the `createdAt` value. The value is a
1960
- # string representation of the number of seconds since 00:00:00 UTC
1961
- # (midnight) on January 1, 1970.
1963
+ # string representation of the number of milliseconds since 00:00:00
1964
+ # UTC (midnight) on January 1, 1970.
1962
1965
  #
1963
1966
  # @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1964
1967
  #
@@ -2055,18 +2058,18 @@ module Aws::Batch
2055
2058
  # Returns a list of Batch scheduling policies.
2056
2059
  #
2057
2060
  # @option params [Integer] :max_results
2058
- # The maximum number of results returned by `ListSchedulingPolicies` in
2059
- # paginated output. When this parameter is used,
2060
- # `ListSchedulingPolicies` only returns `maxResults` results in a single
2061
- # page and a `nextToken` response element. The remaining results of the
2062
- # initial request can be seen by sending another
2061
+ # The maximum number of results that's returned by
2062
+ # `ListSchedulingPolicies` in paginated output. When this parameter is
2063
+ # used, `ListSchedulingPolicies` only returns `maxResults` results in a
2064
+ # single page and a `nextToken` response element. You can see the
2065
+ # remaining results of the initial request by sending another
2063
2066
  # `ListSchedulingPolicies` request with the returned `nextToken` value.
2064
2067
  # This value can be between 1 and 100. If this parameter isn't used,
2065
- # then `ListSchedulingPolicies` returns up to 100 results and a
2066
- # `nextToken` value if applicable.
2068
+ # `ListSchedulingPolicies` returns up to 100 results and a `nextToken`
2069
+ # value if applicable.
2067
2070
  #
2068
2071
  # @option params [String] :next_token
2069
- # The `nextToken` value returned from a previous paginated
2072
+ # The `nextToken` value that's returned from a previous paginated
2070
2073
  # `ListSchedulingPolicies` request where `maxResults` was used and the
2071
2074
  # results exceeded the value of that parameter. Pagination continues
2072
2075
  # from the end of the previous results that returned the `nextToken`
@@ -2164,9 +2167,9 @@ module Aws::Batch
2164
2167
  # Registers an Batch job definition.
2165
2168
  #
2166
2169
  # @option params [required, String] :job_definition_name
2167
- # The name of the job definition to register. Up to 128 letters
2168
- # (uppercase and lowercase), numbers, hyphens, and underscores are
2169
- # allowed.
2170
+ # The name of the job definition to register. It can be up to 128
2171
+ # letters long. It can contain uppercase and lowercase letters, numbers,
2172
+ # hyphens (-), and underscores (\_).
2170
2173
  #
2171
2174
  # @option params [required, String] :type
2172
2175
  # The type of job definition. For more information about multi-node
@@ -2618,9 +2621,9 @@ module Aws::Batch
2618
2621
  # might become unavailable and job might be terminated.
2619
2622
  #
2620
2623
  # @option params [required, String] :job_name
2621
- # The name of the job. The first character must be alphanumeric, and up
2622
- # to 128 letters (uppercase and lowercase), numbers, hyphens, and
2623
- # underscores are allowed.
2624
+ # The name of the job. It can be up to 128 letters long. The first
2625
+ # character must be alphanumeric, can contain uppercase and lowercase
2626
+ # letters, numbers, hyphens (-), and underscores (\_).
2624
2627
  #
2625
2628
  # @option params [required, String] :job_queue
2626
2629
  # The job queue where the job is submitted. You can specify either the
@@ -3264,7 +3267,7 @@ module Aws::Batch
3264
3267
  params: params,
3265
3268
  config: config)
3266
3269
  context[:gem_name] = 'aws-sdk-batch'
3267
- context[:gem_version] = '1.54.0'
3270
+ context[:gem_version] = '1.55.0'
3268
3271
  Seahorse::Client::Request.new(handlers, context)
3269
3272
  end
3270
3273
 
@@ -214,8 +214,9 @@ module Aws::Batch
214
214
  # An object representing an Batch compute environment.
215
215
  #
216
216
  # @!attribute [rw] compute_environment_name
217
- # The name of the compute environment. Up to 128 letters (uppercase
218
- # and lowercase), numbers, hyphens, and underscores are allowed.
217
+ # The name of the compute environment. It can be up to 128 letters
218
+ # long. It can contain uppercase and lowercase letters, numbers,
219
+ # hyphens (-), and underscores (\_).
219
220
  # @return [String]
220
221
  #
221
222
  # @!attribute [rw] compute_environment_arn
@@ -1705,8 +1706,9 @@ module Aws::Batch
1705
1706
  # }
1706
1707
  #
1707
1708
  # @!attribute [rw] compute_environment_name
1708
- # The name for your compute environment. Up to 128 letters (uppercase
1709
- # and lowercase), numbers, hyphens, and underscores are allowed.
1709
+ # The name for your compute environment. It can be up to 128 letters
1710
+ # long. It can contain uppercase and lowercase letters, numbers,
1711
+ # hyphens (-), and underscores (\_).
1710
1712
  # @return [String]
1711
1713
  #
1712
1714
  # @!attribute [rw] type
@@ -1740,9 +1742,8 @@ module Aws::Batch
1740
1742
  # @!attribute [rw] unmanagedv_cpus
1741
1743
  # The maximum number of vCPUs for an unmanaged compute environment.
1742
1744
  # This parameter is only used for fair share scheduling to reserve
1743
- # vCPU capacity for new share identifiers. If this parameter is not
1744
- # provided for a fair share job queue, no vCPU capacity will be
1745
- # reserved.
1745
+ # vCPU capacity for new share identifiers. If this parameter isn't
1746
+ # provided for a fair share job queue, no vCPU capacity is reserved.
1746
1747
  #
1747
1748
  # <note markdown="1"> This parameter is only supported when the `type` parameter is set to
1748
1749
  # `UNMANAGED`/
@@ -1828,8 +1829,9 @@ module Aws::Batch
1828
1829
  end
1829
1830
 
1830
1831
  # @!attribute [rw] compute_environment_name
1831
- # The name of the compute environment. Up to 128 letters (uppercase
1832
- # and lowercase), numbers, hyphens, and underscores are allowed.
1832
+ # The name of the compute environment. It can be up to 128 letters
1833
+ # long. It can contain uppercase and lowercase letters, numbers,
1834
+ # hyphens (-), and underscores (\_).
1833
1835
  # @return [String]
1834
1836
  #
1835
1837
  # @!attribute [rw] compute_environment_arn
@@ -1867,8 +1869,9 @@ module Aws::Batch
1867
1869
  # }
1868
1870
  #
1869
1871
  # @!attribute [rw] job_queue_name
1870
- # The name of the job queue. Up to 128 letters (uppercase and
1871
- # lowercase), numbers, and underscores are allowed.
1872
+ # The name of the job queue. It can be up to 128 letters long. It can
1873
+ # contain uppercase and lowercase letters, numbers, hyphens (-), and
1874
+ # underscores (\_).
1872
1875
  # @return [String]
1873
1876
  #
1874
1877
  # @!attribute [rw] state
@@ -1879,14 +1882,14 @@ module Aws::Batch
1879
1882
  # @return [String]
1880
1883
  #
1881
1884
  # @!attribute [rw] scheduling_policy_arn
1882
- # Amazon Resource Name (ARN) of the fair share scheduling policy. If
1883
- # this parameter is specified, the job queue will use a fair share
1884
- # scheduling policy. If this parameter is not specified, the job queue
1885
- # will use a first in, first out (FIFO) scheduling policy. Once a job
1886
- # queue is created, the fair share scheduling policy can be replaced
1887
- # but not removed. The format is
1888
- # `aws:Partition:batch:Region:Account:scheduling-policy/Name `. For
1889
- # example,
1885
+ # The Amazon Resource Name (ARN) of the fair share scheduling policy.
1886
+ # If this parameter is specified, the job queue uses a fair share
1887
+ # scheduling policy. If this parameter isn't specified, the job queue
1888
+ # uses a first in, first out (FIFO) scheduling policy. After a job
1889
+ # queue is created, you can replace but can't remove the fair share
1890
+ # scheduling policy. The format is
1891
+ # `aws:Partition:batch:Region:Account:scheduling-policy/Name `. An
1892
+ # example is
1890
1893
  # `aws:aws:batch:us-west-2:012345678910:scheduling-policy/MySchedulingPolicy`.
1891
1894
  # @return [String]
1892
1895
  #
@@ -1982,8 +1985,9 @@ module Aws::Batch
1982
1985
  # }
1983
1986
  #
1984
1987
  # @!attribute [rw] name
1985
- # The name of the scheduling policy. Up to 128 letters (uppercase and
1986
- # lowercase), numbers, hyphens, and underscores are allowed.
1988
+ # The name of the scheduling policy. It can be up to 128 letters long.
1989
+ # It can contain uppercase and lowercase letters, numbers, hyphens
1990
+ # (-), and underscores (\_).
1987
1991
  # @return [String]
1988
1992
  #
1989
1993
  # @!attribute [rw] fairshare_policy
@@ -2225,7 +2229,7 @@ module Aws::Batch
2225
2229
  #
2226
2230
  # @!attribute [rw] job_definitions
2227
2231
  # A list of up to 100 job definitions. Each entry in the list can
2228
- # either be an ARN of the form
2232
+ # either be an ARN in the format
2229
2233
  # `arn:aws:batch:$\{Region\}:$\{Account\}:job-definition/$\{JobDefinitionName\}:$\{Revision\}`
2230
2234
  # or a short version using the form
2231
2235
  # `$\{JobDefinitionName\}:$\{Revision\}`.
@@ -2754,12 +2758,9 @@ module Aws::Batch
2754
2758
  # @!attribute [rw] share_decay_seconds
2755
2759
  # The time period to use to calculate a fair share percentage for each
2756
2760
  # fair share identifier in use, in seconds. A value of zero (0)
2757
- # indicates that only current usage should be measured; if there are
2758
- # four evenly weighted fair share identifiers then each can only use
2759
- # up to 25% of the available CPU resources, even if some of the fair
2760
- # share identifiers have no currently running jobs. The decay allows
2761
- # for more recently run jobs to have more weight than jobs that ran
2762
- # earlier. The maximum supported value is 604800 (1 week).
2761
+ # indicates that only current usage should be measured. The decay
2762
+ # allows for more recently run jobs to have more weight than jobs that
2763
+ # ran earlier. The maximum supported value is 604800 (1 week).
2763
2764
  # @return [Integer]
2764
2765
  #
2765
2766
  # @!attribute [rw] compute_reservation
@@ -2783,9 +2784,9 @@ module Aws::Batch
2783
2784
  # @return [Integer]
2784
2785
  #
2785
2786
  # @!attribute [rw] share_distribution
2786
- # Array of `SharedIdentifier` objects that contain the weights for the
2787
- # fair share identifiers for the fair share policy. Fair share
2788
- # identifiers that are not included have a default weight of `1.0`.
2787
+ # An array of `SharedIdentifier` objects that contain the weights for
2788
+ # the fair share identifiers for the fair share policy. Fair share
2789
+ # identifiers that aren't included have a default weight of `1.0`.
2789
2790
  # @return [Array<Types::ShareAttributes>]
2790
2791
  #
2791
2792
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/FairsharePolicy AWS API Documentation
@@ -2899,9 +2900,9 @@ module Aws::Batch
2899
2900
  # @return [String]
2900
2901
  #
2901
2902
  # @!attribute [rw] scheduling_priority
2902
- # The scheduling priority of the job definition. This will only affect
2903
+ # The scheduling priority of the job definition. This only affects
2903
2904
  # jobs in job queues with a fair share policy. Jobs with a higher
2904
- # scheduling priority will be scheduled before jobs with a lower
2905
+ # scheduling priority are scheduled before jobs with a lower
2905
2906
  # scheduling priority.
2906
2907
  # @return [Integer]
2907
2908
  #
@@ -3049,9 +3050,9 @@ module Aws::Batch
3049
3050
  # @return [String]
3050
3051
  #
3051
3052
  # @!attribute [rw] scheduling_priority
3052
- # The scheduling policy of the job definition. This will only affect
3053
- # jobs in job queues with a fair share policy. Jobs with a higher
3054
- # scheduling priority will be scheduled before jobs with a lower
3053
+ # The scheduling policy of the job definition. This only affects jobs
3054
+ # in job queues with a fair share policy. Jobs with a higher
3055
+ # scheduling priority are scheduled before jobs with a lower
3055
3056
  # scheduling priority.
3056
3057
  # @return [Integer]
3057
3058
  #
@@ -3200,8 +3201,8 @@ module Aws::Batch
3200
3201
  # @return [String]
3201
3202
  #
3202
3203
  # @!attribute [rw] scheduling_policy_arn
3203
- # Amazon Resource Name (ARN) of the scheduling policy. The format is
3204
- # `aws:Partition:batch:Region:Account:scheduling-policy/Name `. For
3204
+ # The Amazon Resource Name (ARN) of the scheduling policy. The format
3205
+ # is `aws:Partition:batch:Region:Account:scheduling-policy/Name `. For
3205
3206
  # example,
3206
3207
  # `aws:aws:batch:us-west-2:012345678910:scheduling-policy/MySchedulingPolicy`.
3207
3208
  # @return [String]
@@ -3273,11 +3274,11 @@ module Aws::Batch
3273
3274
  # @return [String]
3274
3275
  #
3275
3276
  # @!attribute [rw] created_at
3276
- # The Unix timestamp for when the job was created. For non-array jobs
3277
- # and parent array jobs, this is when the job entered the `SUBMITTED`
3278
- # state (at the time SubmitJob was called). For array child jobs, this
3279
- # is when the child job was spawned by its parent and entered the
3280
- # `PENDING` state.
3277
+ # The Unix timestamp (in milliseconds) for when the job was created.
3278
+ # For non-array jobs and parent array jobs, this is when the job
3279
+ # entered the `SUBMITTED` state (at the time SubmitJob was called).
3280
+ # For array child jobs, this is when the child job was spawned by its
3281
+ # parent and entered the `PENDING` state.
3281
3282
  # @return [Integer]
3282
3283
  #
3283
3284
  # @!attribute [rw] status
@@ -3760,15 +3761,15 @@ module Aws::Batch
3760
3761
  #
3761
3762
  # : The value for the filter is the time that's before the job was
3762
3763
  # created. This corresponds to the `createdAt` value. The value is a
3763
- # string representation of the number of seconds since 00:00:00 UTC
3764
- # (midnight) on January 1, 1970.
3764
+ # string representation of the number of milliseconds since 00:00:00
3765
+ # UTC (midnight) on January 1, 1970.
3765
3766
  #
3766
3767
  # AFTER\_CREATED\_AT
3767
3768
  #
3768
3769
  # : The value for the filter is the time that's after the job was
3769
3770
  # created. This corresponds to the `createdAt` value. The value is a
3770
- # string representation of the number of seconds since 00:00:00 UTC
3771
- # (midnight) on January 1, 1970.
3771
+ # string representation of the number of milliseconds since 00:00:00
3772
+ # UTC (midnight) on January 1, 1970.
3772
3773
  # @return [Array<Types::KeyValuesPair>]
3773
3774
  #
3774
3775
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ListJobsRequest AWS API Documentation
@@ -3814,19 +3815,19 @@ module Aws::Batch
3814
3815
  # }
3815
3816
  #
3816
3817
  # @!attribute [rw] max_results
3817
- # The maximum number of results returned by `ListSchedulingPolicies`
3818
- # in paginated output. When this parameter is used,
3819
- # `ListSchedulingPolicies` only returns `maxResults` results in a
3820
- # single page and a `nextToken` response element. The remaining
3821
- # results of the initial request can be seen by sending another
3818
+ # The maximum number of results that's returned by
3819
+ # `ListSchedulingPolicies` in paginated output. When this parameter is
3820
+ # used, `ListSchedulingPolicies` only returns `maxResults` results in
3821
+ # a single page and a `nextToken` response element. You can see the
3822
+ # remaining results of the initial request by sending another
3822
3823
  # `ListSchedulingPolicies` request with the returned `nextToken`
3823
3824
  # value. This value can be between 1 and 100. If this parameter isn't
3824
- # used, then `ListSchedulingPolicies` returns up to 100 results and a
3825
+ # used, `ListSchedulingPolicies` returns up to 100 results and a
3825
3826
  # `nextToken` value if applicable.
3826
3827
  # @return [Integer]
3827
3828
  #
3828
3829
  # @!attribute [rw] next_token
3829
- # The `nextToken` value returned from a previous paginated
3830
+ # The `nextToken` value that's returned from a previous paginated
3830
3831
  # `ListSchedulingPolicies` request where `maxResults` was used and the
3831
3832
  # results exceeded the value of that parameter. Pagination continues
3832
3833
  # from the end of the previous results that returned the `nextToken`
@@ -4819,9 +4820,9 @@ module Aws::Batch
4819
4820
  # }
4820
4821
  #
4821
4822
  # @!attribute [rw] job_definition_name
4822
- # The name of the job definition to register. Up to 128 letters
4823
- # (uppercase and lowercase), numbers, hyphens, and underscores are
4824
- # allowed.
4823
+ # The name of the job definition to register. It can be up to 128
4824
+ # letters long. It can contain uppercase and lowercase letters,
4825
+ # numbers, hyphens (-), and underscores (\_).
4825
4826
  # @return [String]
4826
4827
  #
4827
4828
  # @!attribute [rw] type
@@ -5167,17 +5168,17 @@ module Aws::Batch
5167
5168
  include Aws::Structure
5168
5169
  end
5169
5170
 
5170
- # An object representing a scheduling policy.
5171
+ # An object that represents a scheduling policy.
5171
5172
  #
5172
5173
  # @!attribute [rw] name
5173
5174
  # The name of the scheduling policy.
5174
5175
  # @return [String]
5175
5176
  #
5176
5177
  # @!attribute [rw] arn
5177
- # Amazon Resource Name (ARN) of the scheduling policy. An example
5178
- # would be
5178
+ # The Amazon Resource Name (ARN) of the scheduling policy. An example
5179
+ # is
5179
5180
  # `arn:aws:batch:us-east-1:123456789012:scheduling-policy/HighPriority
5180
- # `
5181
+ # `.
5181
5182
  # @return [String]
5182
5183
  #
5183
5184
  # @!attribute [rw] fairshare_policy
@@ -5185,10 +5186,10 @@ module Aws::Batch
5185
5186
  # @return [Types::FairsharePolicy]
5186
5187
  #
5187
5188
  # @!attribute [rw] tags
5188
- # The tags that you apply to the scheduling policy to help you
5189
- # categorize and organize your resources. Each tag consists of a key
5190
- # and an optional value. For more information, see [Tagging Amazon Web
5191
- # Services Resources][1] in *Amazon Web Services General Reference*.
5189
+ # The tags that you apply to the scheduling policy to categorize and
5190
+ # organize your resources. Each tag consists of a key and an optional
5191
+ # value. For more information, see [Tagging Amazon Web Services
5192
+ # Resources][1] in *Amazon Web Services General Reference*.
5192
5193
  #
5193
5194
  #
5194
5195
  #
@@ -5206,8 +5207,8 @@ module Aws::Batch
5206
5207
  include Aws::Structure
5207
5208
  end
5208
5209
 
5209
- # An object containing the details of a scheduling policy returned in a
5210
- # `ListSchedulingPolicy` action.
5210
+ # An object that contains the details of a scheduling policy that's
5211
+ # returned in a `ListSchedulingPolicy` action.
5211
5212
  #
5212
5213
  # @!attribute [rw] arn
5213
5214
  # Amazon Resource Name (ARN) of the scheduling policy.
@@ -5286,7 +5287,7 @@ module Aws::Batch
5286
5287
  end
5287
5288
 
5288
5289
  # Specifies the weights for the fair share identifiers for the fair
5289
- # share policy. Fair share identifiers that are not included have a
5290
+ # share policy. Fair share identifiers that aren't included have a
5290
5291
  # default weight of `1.0`.
5291
5292
  #
5292
5293
  # @note When making an API call, you may pass ShareAttributes
@@ -5299,10 +5300,10 @@ module Aws::Batch
5299
5300
  #
5300
5301
  # @!attribute [rw] share_identifier
5301
5302
  # A fair share identifier or fair share identifier prefix. If the
5302
- # string ends with '*' then this entry specifies the weight factor
5303
- # to use for fair share identifiers that begin with that prefix. The
5304
- # list of fair share identifiers in a fair share policy cannot
5305
- # overlap. For example you cannot have one that specifies a
5303
+ # string ends with an asterisk (*), this entry specifies the weight
5304
+ # factor to use for fair share identifiers that start with that
5305
+ # prefix. The list of fair share identifiers in a fair share policy
5306
+ # cannot overlap. For example, you can't have one that specifies a
5306
5307
  # `shareIdentifier` of `UserA*` and another that specifies a
5307
5308
  # `shareIdentifier` of `UserA-1`.
5308
5309
  #
@@ -5310,17 +5311,17 @@ module Aws::Batch
5310
5311
  # queue.
5311
5312
  #
5312
5313
  # The string is limited to 255 alphanumeric characters, optionally
5313
- # followed by '*'.
5314
+ # followed by an asterisk (*).
5314
5315
  # @return [String]
5315
5316
  #
5316
5317
  # @!attribute [rw] weight_factor
5317
5318
  # The weight factor for the fair share identifier. The default value
5318
5319
  # is 1.0. A lower value has a higher priority for compute resources.
5319
- # For example, jobs using a share identifier with a weight factor of
5320
- # 0.125 (1/8) will get 8 times the compute resources of jobs using a
5320
+ # For example, jobs that use a share identifier with a weight factor
5321
+ # of 0.125 (1/8) get 8 times the compute resources of jobs that use a
5321
5322
  # share identifier with a weight factor of 1.
5322
5323
  #
5323
- # The smallest supported value is 0.0001 and the largest supported
5324
+ # The smallest supported value is 0.0001, and the largest supported
5324
5325
  # value is 999.9999.
5325
5326
  # @return [Float]
5326
5327
  #
@@ -5421,9 +5422,9 @@ module Aws::Batch
5421
5422
  # }
5422
5423
  #
5423
5424
  # @!attribute [rw] job_name
5424
- # The name of the job. The first character must be alphanumeric, and
5425
- # up to 128 letters (uppercase and lowercase), numbers, hyphens, and
5426
- # underscores are allowed.
5425
+ # The name of the job. It can be up to 128 letters long. The first
5426
+ # character must be alphanumeric, can contain uppercase and lowercase
5427
+ # letters, numbers, hyphens (-), and underscores (\_).
5427
5428
  # @return [String]
5428
5429
  #
5429
5430
  # @!attribute [rw] job_queue
@@ -5889,8 +5890,9 @@ module Aws::Batch
5889
5890
  end
5890
5891
 
5891
5892
  # @!attribute [rw] compute_environment_name
5892
- # The name of the compute environment. Up to 128 letters (uppercase
5893
- # and lowercase), numbers, hyphens, and underscores are allowed.
5893
+ # The name of the compute environment. It can be up to 128 letters
5894
+ # long. It can contain uppercase and lowercase letters, numbers,
5895
+ # hyphens (-), and underscores (\_).
5894
5896
  # @return [String]
5895
5897
  #
5896
5898
  # @!attribute [rw] compute_environment_arn
@@ -6077,10 +6079,10 @@ module Aws::Batch
6077
6079
  # @return [Types::Host]
6078
6080
  #
6079
6081
  # @!attribute [rw] name
6080
- # The name of the volume. Up to 255 letters (uppercase and lowercase),
6081
- # numbers, hyphens, and underscores are allowed. This name is
6082
- # referenced in the `sourceVolume` parameter of container definition
6083
- # `mountPoints`.
6082
+ # The name of the volume. It can be up to 255 letters long. It can
6083
+ # contain uppercase and lowercase letters, numbers, hyphens (-), and
6084
+ # underscores (\_). This name is referenced in the `sourceVolume`
6085
+ # parameter of container definition `mountPoints`.
6084
6086
  # @return [String]
6085
6087
  #
6086
6088
  # @!attribute [rw] efs_volume_configuration
data/lib/aws-sdk-batch.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-batch/customizations'
48
48
  # @!group service
49
49
  module Aws::Batch
50
50
 
51
- GEM_VERSION = '1.54.0'
51
+ GEM_VERSION = '1.55.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.54.0
4
+ version: 1.55.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-11-09 00:00:00.000000000 Z
11
+ date: 2021-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core