@@ -694,7 +694,7 @@ export interface CreateComputeEnvironmentRequest {
694
694
* scheduling to reserve vCPU capacity for new share identifiers. If this parameter isn't provided for a fair share job
695
695
* queue, no vCPU capacity is reserved.</p>
696
696
* <note>
697
- * <p>This parameter is only supported when the <code>type</code> parameter is set to <code>UNMANAGED</code>/ </p>
697
+ * <p>This parameter is only supported when the <code>type</code> parameter is set to <code>UNMANAGED</code>. </p>
698
698
* </note>
699
699
*/
700
700
unmanagedvCpus ?: number ;
@@ -2152,6 +2152,12 @@ export interface ContainerProperties {
2152
2152
* </note>
2153
2153
* <ul>
2154
2154
* <li>
2155
+ * <p>Images in Amazon ECR Public repositories use the full <code>registry/repository[:tag]</code> or
2156
+ * <code>registry/repository[@digest]</code> naming conventions. For example,
2157
+ * <code>public.ecr.aws/<i>registry_alias</i>/<i>my-web-app</i>:<i>latest</i>
2158
+ * </code>.</p>
2159
+ * </li>
2160
+ * <li>
2155
2161
* <p>Images in Amazon ECR repositories use the full registry and repository URI (for example,
2156
2162
* <code>012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name></code>).</p>
2157
2163
* </li>
@@ -2175,7 +2181,7 @@ export interface ContainerProperties {
2175
2181
* @deprecated
2176
2182
*
2177
2183
* <p>This parameter is deprecated, use <code>resourceRequirements</code> to specify the vCPU requirements for the job
2178
- * definition. It's not supported for jobs that run on Fargate resources. For jobs run on EC2 resources, it specifies
2184
+ * definition. It's not supported for jobs running on Fargate resources. For jobs running on EC2 resources, it specifies
2179
2185
* the number of vCPUs reserved for the job.</p>
2180
2186
* <p>Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to <code>CpuShares</code> in the
2181
2187
* <a href="https://docs.docker.com/engine/api/v1.23/#create-a-container">Create a container</a> section of the <a href="https://docs.docker.com/engine/api/v1.23/">Docker Remote API</a> and the <code>--cpu-shares</code> option to
@@ -2188,7 +2194,7 @@ export interface ContainerProperties {
2188
2194
* @deprecated
2189
2195
*
2190
2196
* <p>This parameter is deprecated, use <code>resourceRequirements</code> to specify the memory requirements for the
2191
- * job definition. It's not supported for jobs that run on Fargate resources. For jobs run on EC2 resources, it
2197
+ * job definition. It's not supported for jobs running on Fargate resources. For jobs running on EC2 resources, it
2192
2198
* specifies the memory hard limit (in MiB) for a container. If your container attempts to exceed the specified number,
2193
2199
* it's terminated. You must specify at least 4 MiB of memory for a job using this parameter. The memory hard limit can
2194
2200
* be specified in several places. It must be specified for each node at least once.</p>
@@ -2826,9 +2832,9 @@ export interface ContainerDetail {
2826
2832
vcpus ?: number ;
2827
2833
2828
2834
/**
2829
- * <p>For jobs run on EC2 resources that didn't specify memory requirements using <code>resourceRequirements</code>,
2830
- * the number of MiB of memory reserved for the job. For other jobs, including all run on Fargate resources, see
2831
- * <code>resourceRequirements</code>.</p>
2835
+ * <p>For jobs running on EC2 resources that didn't specify memory requirements using
2836
+ * <code>resourceRequirements</code>, the number of MiB of memory reserved for the job. For other jobs, including all
2837
+ * run on Fargate resources, see <code>resourceRequirements</code>.</p>
2832
2838
*/
2833
2839
memory ?: number ;
2834
2840
@@ -3849,7 +3855,7 @@ export interface ContainerOverrides {
3849
3855
* @deprecated
3850
3856
*
3851
3857
* <p>This parameter is deprecated, use <code>resourceRequirements</code> to override the <code>vcpus</code> parameter
3852
- * that's set in the job definition. It's not supported for jobs that run on Fargate resources. For jobs run on EC2
3858
+ * that's set in the job definition. It's not supported for jobs running on Fargate resources. For jobs running on EC2
3853
3859
* resources, it overrides the <code>vcpus</code> parameter set in the job definition, but doesn't override any vCPU
3854
3860
* requirement specified in the <code>resourceRequirements</code> structure in the job definition. To override vCPU
3855
3861
* requirements that are specified in the <code>resourceRequirements</code> structure in the job definition,
@@ -3863,7 +3869,7 @@ export interface ContainerOverrides {
3863
3869
* @deprecated
3864
3870
*
3865
3871
* <p>This parameter is deprecated, use <code>resourceRequirements</code> to override the memory requirements
3866
- * specified in the job definition. It's not supported for jobs that run on Fargate resources. For jobs run on EC2
3872
+ * specified in the job definition. It's not supported for jobs running on Fargate resources. For jobs running on EC2
3867
3873
* resources, it overrides the <code>memory</code> parameter set in the job definition, but doesn't override any memory
3868
3874
* requirement specified in the <code>resourceRequirements</code> structure in the job definition. To override memory
3869
3875
* requirements that are specified in the <code>resourceRequirements</code> structure in the job definition,
0 commit comments