aws-sdk-ecs 1.200.0 → 1.202.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +47 -15
- data/lib/aws-sdk-ecs/types.rb +81 -20
- data/lib/aws-sdk-ecs.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c9a4053bc597705953a6a3021ca1fcd70ee36e1dd1d5219d09409c0b1d6a0ba
|
4
|
+
data.tar.gz: 0d56a3497cbcae57da05a88b63c152008fafc385f4691418c8858ed968f18287
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc66adc9a5ded47c12663861988e7cfde2d79f6a32796fae1d24075f3e74c681ef728eced8720413311cfd8a2e629aa0eb07284339866326048ba736edff9624
|
7
|
+
data.tar.gz: 25a912566fde3700834ffbd6362d1227bd13c2dea00dc3c2d67d7d4be81c4a8878ce2a8bda4d09113b47c593cda0c1a4757233f2a39f6268654095cdd92fd195
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.202.0 (2025-08-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This is a documentation only release that adds additional information for the update-service request parameters.
|
8
|
+
|
9
|
+
1.201.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.200.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.202.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::ECS
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::ECS
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::ECS
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::ECS
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -5283,8 +5280,7 @@ module Aws::ECS
|
|
5283
5280
|
# @option params [String] :cluster
|
5284
5281
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
5285
5282
|
# hosts the task or tasks to describe. If you do not specify a cluster,
|
5286
|
-
# the default cluster is assumed.
|
5287
|
-
# `default` cluster is used.
|
5283
|
+
# the default cluster is assumed.
|
5288
5284
|
#
|
5289
5285
|
# @option params [required, Array<String>] :tasks
|
5290
5286
|
# A list of up to 100 task IDs or full ARN entries.
|
@@ -11641,6 +11637,8 @@ module Aws::ECS
|
|
11641
11637
|
# The number of instantiations of the task to place and keep running in
|
11642
11638
|
# your service.
|
11643
11639
|
#
|
11640
|
+
# This parameter doesn't trigger a new service deployment.
|
11641
|
+
#
|
11644
11642
|
# @option params [String] :task_definition
|
11645
11643
|
# The `family` and `revision` (`family:revision`) or full ARN of the
|
11646
11644
|
# task definition to run in your service. If a `revision` is not
|
@@ -11649,6 +11647,8 @@ module Aws::ECS
|
|
11649
11647
|
# the new version of the task definition and then stops an old task
|
11650
11648
|
# after the new version is running.
|
11651
11649
|
#
|
11650
|
+
# This parameter triggers a new service deployment.
|
11651
|
+
#
|
11652
11652
|
# @option params [Array<Types::CapacityProviderStrategyItem>] :capacity_provider_strategy
|
11653
11653
|
# The details of a capacity provider strategy. You can set a capacity
|
11654
11654
|
# provider when you create a cluster, run a task, or update a service.
|
@@ -11683,6 +11683,8 @@ module Aws::ECS
|
|
11683
11683
|
# For information about Amazon Web Services CDK considerations, see
|
11684
11684
|
# [Amazon Web Services CDK considerations][1].
|
11685
11685
|
#
|
11686
|
+
# This parameter doesn't trigger a new service deployment.
|
11687
|
+
#
|
11686
11688
|
#
|
11687
11689
|
#
|
11688
11690
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/update-service-parameters.html
|
@@ -11691,6 +11693,8 @@ module Aws::ECS
|
|
11691
11693
|
# Optional deployment parameters that control how many tasks run during
|
11692
11694
|
# the deployment and the ordering of stopping and starting tasks.
|
11693
11695
|
#
|
11696
|
+
# This parameter doesn't trigger a new service deployment.
|
11697
|
+
#
|
11694
11698
|
# @option params [String] :availability_zone_rebalancing
|
11695
11699
|
# Indicates whether to use Availability Zone rebalancing for the
|
11696
11700
|
# service.
|
@@ -11699,6 +11703,8 @@ module Aws::ECS
|
|
11699
11703
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
|
11700
11704
|
# Developer Guide</i> </i>.
|
11701
11705
|
#
|
11706
|
+
# This parameter doesn't trigger a new service deployment.
|
11707
|
+
#
|
11702
11708
|
#
|
11703
11709
|
#
|
11704
11710
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
|
@@ -11706,6 +11712,8 @@ module Aws::ECS
|
|
11706
11712
|
# @option params [Types::NetworkConfiguration] :network_configuration
|
11707
11713
|
# An object representing the network configuration for the service.
|
11708
11714
|
#
|
11715
|
+
# This parameter triggers a new service deployment.
|
11716
|
+
#
|
11709
11717
|
# @option params [Array<Types::PlacementConstraint>] :placement_constraints
|
11710
11718
|
# An array of task placement constraint objects to update the service to
|
11711
11719
|
# use. If no value is specified, the existing placement constraints for
|
@@ -11717,6 +11725,8 @@ module Aws::ECS
|
|
11717
11725
|
# includes constraints in the task definition and those specified at
|
11718
11726
|
# runtime.
|
11719
11727
|
#
|
11728
|
+
# This parameter doesn't trigger a new service deployment.
|
11729
|
+
#
|
11720
11730
|
# @option params [Array<Types::PlacementStrategy>] :placement_strategy
|
11721
11731
|
# The task placement strategy objects to update the service to use. If
|
11722
11732
|
# no value is specified, the existing placement strategy for the service
|
@@ -11726,6 +11736,8 @@ module Aws::ECS
|
|
11726
11736
|
#
|
11727
11737
|
# You can specify a maximum of five strategy rules for each service.
|
11728
11738
|
#
|
11739
|
+
# This parameter doesn't trigger a new service deployment.
|
11740
|
+
#
|
11729
11741
|
# @option params [String] :platform_version
|
11730
11742
|
# The platform version that your tasks in the service run on. A platform
|
11731
11743
|
# version is only specified for tasks using the Fargate launch type. If
|
@@ -11733,6 +11745,8 @@ module Aws::ECS
|
|
11733
11745
|
# used. For more information, see [Fargate Platform Versions][1] in the
|
11734
11746
|
# *Amazon Elastic Container Service Developer Guide*.
|
11735
11747
|
#
|
11748
|
+
# This parameter triggers a new service deployment.
|
11749
|
+
#
|
11736
11750
|
#
|
11737
11751
|
#
|
11738
11752
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
|
@@ -11760,6 +11774,8 @@ module Aws::ECS
|
|
11760
11774
|
# can prevent the service scheduler from marking tasks as unhealthy and
|
11761
11775
|
# stopping them before they have time to come up.
|
11762
11776
|
#
|
11777
|
+
# This parameter doesn't trigger a new service deployment.
|
11778
|
+
#
|
11763
11779
|
# @option params [Types::DeploymentController] :deployment_controller
|
11764
11780
|
# The deployment controller to use for the service.
|
11765
11781
|
#
|
@@ -11770,6 +11786,8 @@ module Aws::ECS
|
|
11770
11786
|
# If you do not want to override the value that was set when the service
|
11771
11787
|
# was created, you can set this to `null` when performing this action.
|
11772
11788
|
#
|
11789
|
+
# This parameter doesn't trigger a new service deployment.
|
11790
|
+
#
|
11773
11791
|
# @option params [Boolean] :enable_ecs_managed_tags
|
11774
11792
|
# Determines whether to turn on Amazon ECS managed tags for the tasks in
|
11775
11793
|
# the service. For more information, see [Tagging Your Amazon ECS
|
@@ -11780,6 +11798,8 @@ module Aws::ECS
|
|
11780
11798
|
# update the tags on all tasks, set `forceNewDeployment` to `true`, so
|
11781
11799
|
# that Amazon ECS starts new tasks with the updated tags.
|
11782
11800
|
#
|
11801
|
+
# This parameter doesn't trigger a new service deployment.
|
11802
|
+
#
|
11783
11803
|
#
|
11784
11804
|
#
|
11785
11805
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
@@ -11820,6 +11840,8 @@ module Aws::ECS
|
|
11820
11840
|
#
|
11821
11841
|
# You can remove existing `loadBalancers` by passing an empty list.
|
11822
11842
|
#
|
11843
|
+
# This parameter triggers a new service deployment.
|
11844
|
+
#
|
11823
11845
|
#
|
11824
11846
|
#
|
11825
11847
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html
|
@@ -11834,6 +11856,8 @@ module Aws::ECS
|
|
11834
11856
|
# update the tags on all tasks, set `forceNewDeployment` to `true`, so
|
11835
11857
|
# that Amazon ECS starts new tasks with the updated tags.
|
11836
11858
|
#
|
11859
|
+
# This parameter doesn't trigger a new service deployment.
|
11860
|
+
#
|
11837
11861
|
# @option params [Array<Types::ServiceRegistry>] :service_registries
|
11838
11862
|
# <note markdown="1"> You must have a service-linked role when you update this property.
|
11839
11863
|
#
|
@@ -11852,6 +11876,8 @@ module Aws::ECS
|
|
11852
11876
|
#
|
11853
11877
|
# You can remove existing `serviceRegistries` by passing an empty list.
|
11854
11878
|
#
|
11879
|
+
# This parameter triggers a new service deployment.
|
11880
|
+
#
|
11855
11881
|
#
|
11856
11882
|
#
|
11857
11883
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html#ECS-CreateService-request-role
|
@@ -11870,6 +11896,8 @@ module Aws::ECS
|
|
11870
11896
|
# Service Connect. For more information, see [Service Connect][1] in the
|
11871
11897
|
# *Amazon Elastic Container Service Developer Guide*.
|
11872
11898
|
#
|
11899
|
+
# This parameter triggers a new service deployment.
|
11900
|
+
#
|
11873
11901
|
#
|
11874
11902
|
#
|
11875
11903
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html
|
@@ -11882,6 +11910,8 @@ module Aws::ECS
|
|
11882
11910
|
# null, no new deployment is triggered. Otherwise, if this configuration
|
11883
11911
|
# differs from the existing one, it triggers a new deployment.
|
11884
11912
|
#
|
11913
|
+
# This parameter triggers a new service deployment.
|
11914
|
+
#
|
11885
11915
|
#
|
11886
11916
|
#
|
11887
11917
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ServiceManagedEBSVolumeConfiguration.html
|
@@ -11890,6 +11920,8 @@ module Aws::ECS
|
|
11890
11920
|
# An object representing the VPC Lattice configuration for the service
|
11891
11921
|
# being updated.
|
11892
11922
|
#
|
11923
|
+
# This parameter triggers a new service deployment.
|
11924
|
+
#
|
11893
11925
|
# @return [Types::UpdateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11894
11926
|
#
|
11895
11927
|
# * {Types::UpdateServiceResponse#service #service} => Types::Service
|
@@ -12782,7 +12814,7 @@ module Aws::ECS
|
|
12782
12814
|
tracer: tracer
|
12783
12815
|
)
|
12784
12816
|
context[:gem_name] = 'aws-sdk-ecs'
|
12785
|
-
context[:gem_version] = '1.
|
12817
|
+
context[:gem_version] = '1.202.0'
|
12786
12818
|
Seahorse::Client::Request.new(handlers, context)
|
12787
12819
|
end
|
12788
12820
|
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -492,20 +492,52 @@ module Aws::ECS
|
|
492
492
|
# `RunTask` or `CreateService` actions using the capacity provider
|
493
493
|
# strategy will fail.
|
494
494
|
#
|
495
|
-
#
|
496
|
-
#
|
497
|
-
#
|
498
|
-
#
|
499
|
-
#
|
500
|
-
#
|
501
|
-
# *
|
495
|
+
# Weight value characteristics:
|
496
|
+
#
|
497
|
+
# * Weight is considered after the base value is satisfied
|
498
|
+
#
|
499
|
+
# * Default value is `0` if not specified
|
500
|
+
#
|
501
|
+
# * Valid range: 0 to 1,000
|
502
|
+
#
|
503
|
+
# * At least one capacity provider must have a weight greater than
|
504
|
+
# zero
|
505
|
+
#
|
506
|
+
# * Capacity providers with weight of `0` cannot place tasks
|
507
|
+
#
|
508
|
+
# Task distribution logic:
|
509
|
+
#
|
510
|
+
# 1. Base satisfaction: The minimum number of tasks specified by the
|
511
|
+
# base value are placed on that capacity provider
|
512
|
+
#
|
513
|
+
# 2. Weight distribution: After base requirements are met, additional
|
514
|
+
# tasks are distributed according to weight ratios
|
515
|
+
#
|
516
|
+
# Examples:
|
517
|
+
#
|
518
|
+
# Equal Distribution: Two capacity providers both with weight `1` will
|
519
|
+
# split tasks evenly after base requirements are met.
|
520
|
+
#
|
521
|
+
# Weighted Distribution: If capacityProviderA has weight `1` and
|
522
|
+
# capacityProviderB has weight `4`, then for every 1 task on A, 4
|
523
|
+
# tasks will run on B.
|
502
524
|
# @return [Integer]
|
503
525
|
#
|
504
526
|
# @!attribute [rw] base
|
505
527
|
# The *base* value designates how many tasks, at a minimum, to run on
|
506
|
-
# the specified capacity provider. Only one capacity
|
507
|
-
# capacity provider strategy can have a *base* defined.
|
508
|
-
# specified, the default value of `0` is used.
|
528
|
+
# the specified capacity provider for each service. Only one capacity
|
529
|
+
# provider in a capacity provider strategy can have a *base* defined.
|
530
|
+
# If no value is specified, the default value of `0` is used.
|
531
|
+
#
|
532
|
+
# Base value characteristics:
|
533
|
+
#
|
534
|
+
# * Only one capacity provider in a strategy can have a base defined
|
535
|
+
#
|
536
|
+
# * Default value is `0` if not specified
|
537
|
+
#
|
538
|
+
# * Valid range: 0 to 100,000
|
539
|
+
#
|
540
|
+
# * Base requirements are satisfied first before weight distribution
|
509
541
|
# @return [Integer]
|
510
542
|
#
|
511
543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/CapacityProviderStrategyItem AWS API Documentation
|
@@ -608,7 +640,7 @@ module Aws::ECS
|
|
608
640
|
#
|
609
641
|
# @!attribute [rw] active_services_count
|
610
642
|
# The number of services that are running on the cluster in an
|
611
|
-
# `ACTIVE` state. You can view these services with [
|
643
|
+
# `ACTIVE` state. You can view these services with [ListServices][1].
|
612
644
|
#
|
613
645
|
#
|
614
646
|
#
|
@@ -4775,8 +4807,7 @@ module Aws::ECS
|
|
4775
4807
|
# @!attribute [rw] cluster
|
4776
4808
|
# The short name or full Amazon Resource Name (ARN) of the cluster
|
4777
4809
|
# that hosts the task or tasks to describe. If you do not specify a
|
4778
|
-
# cluster, the default cluster is assumed.
|
4779
|
-
# value, the `default` cluster is used.
|
4810
|
+
# cluster, the default cluster is assumed.
|
4780
4811
|
# @return [String]
|
4781
4812
|
#
|
4782
4813
|
# @!attribute [rw] tasks
|
@@ -7327,7 +7358,7 @@ module Aws::ECS
|
|
7327
7358
|
#
|
7328
7359
|
# : Required: No
|
7329
7360
|
#
|
7330
|
-
# Default value: `
|
7361
|
+
# Default value: `10m`
|
7331
7362
|
#
|
7332
7363
|
# When `non-blocking` mode is used, the `max-buffer-size` log option
|
7333
7364
|
# controls the size of the buffer that's used for intermediate
|
@@ -7502,12 +7533,6 @@ module Aws::ECS
|
|
7502
7533
|
# When additional capacity is required, Amazon ECS will scale up the
|
7503
7534
|
# minimum scaling step size even if the actual demand is less than the
|
7504
7535
|
# minimum scaling step size.
|
7505
|
-
#
|
7506
|
-
# If you use a capacity provider with an Auto Scaling group configured
|
7507
|
-
# with more than one Amazon EC2 instance type or Availability Zone,
|
7508
|
-
# Amazon ECS will scale up by the exact minimum scaling step size
|
7509
|
-
# value and will ignore both the maximum scaling step size as well as
|
7510
|
-
# the capacity demand.
|
7511
7536
|
# @return [Integer]
|
7512
7537
|
#
|
7513
7538
|
# @!attribute [rw] maximum_scaling_step_size
|
@@ -13847,6 +13872,8 @@ module Aws::ECS
|
|
13847
13872
|
# @!attribute [rw] desired_count
|
13848
13873
|
# The number of instantiations of the task to place and keep running
|
13849
13874
|
# in your service.
|
13875
|
+
#
|
13876
|
+
# This parameter doesn't trigger a new service deployment.
|
13850
13877
|
# @return [Integer]
|
13851
13878
|
#
|
13852
13879
|
# @!attribute [rw] task_definition
|
@@ -13856,6 +13883,8 @@ module Aws::ECS
|
|
13856
13883
|
# task definition with `UpdateService`, Amazon ECS spawns a task with
|
13857
13884
|
# the new version of the task definition and then stops an old task
|
13858
13885
|
# after the new version is running.
|
13886
|
+
#
|
13887
|
+
# This parameter triggers a new service deployment.
|
13859
13888
|
# @return [String]
|
13860
13889
|
#
|
13861
13890
|
# @!attribute [rw] capacity_provider_strategy
|
@@ -13892,6 +13921,8 @@ module Aws::ECS
|
|
13892
13921
|
# For information about Amazon Web Services CDK considerations, see
|
13893
13922
|
# [Amazon Web Services CDK considerations][1].
|
13894
13923
|
#
|
13924
|
+
# This parameter doesn't trigger a new service deployment.
|
13925
|
+
#
|
13895
13926
|
#
|
13896
13927
|
#
|
13897
13928
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/update-service-parameters.html
|
@@ -13901,6 +13932,8 @@ module Aws::ECS
|
|
13901
13932
|
# Optional deployment parameters that control how many tasks run
|
13902
13933
|
# during the deployment and the ordering of stopping and starting
|
13903
13934
|
# tasks.
|
13935
|
+
#
|
13936
|
+
# This parameter doesn't trigger a new service deployment.
|
13904
13937
|
# @return [Types::DeploymentConfiguration]
|
13905
13938
|
#
|
13906
13939
|
# @!attribute [rw] availability_zone_rebalancing
|
@@ -13911,6 +13944,8 @@ module Aws::ECS
|
|
13911
13944
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container
|
13912
13945
|
# Service Developer Guide</i> </i>.
|
13913
13946
|
#
|
13947
|
+
# This parameter doesn't trigger a new service deployment.
|
13948
|
+
#
|
13914
13949
|
#
|
13915
13950
|
#
|
13916
13951
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
|
@@ -13918,6 +13953,8 @@ module Aws::ECS
|
|
13918
13953
|
#
|
13919
13954
|
# @!attribute [rw] network_configuration
|
13920
13955
|
# An object representing the network configuration for the service.
|
13956
|
+
#
|
13957
|
+
# This parameter triggers a new service deployment.
|
13921
13958
|
# @return [Types::NetworkConfiguration]
|
13922
13959
|
#
|
13923
13960
|
# @!attribute [rw] placement_constraints
|
@@ -13931,6 +13968,8 @@ module Aws::ECS
|
|
13931
13968
|
# You can specify a maximum of 10 constraints for each task. This
|
13932
13969
|
# limit includes constraints in the task definition and those
|
13933
13970
|
# specified at runtime.
|
13971
|
+
#
|
13972
|
+
# This parameter doesn't trigger a new service deployment.
|
13934
13973
|
# @return [Array<Types::PlacementConstraint>]
|
13935
13974
|
#
|
13936
13975
|
# @!attribute [rw] placement_strategy
|
@@ -13941,6 +13980,8 @@ module Aws::ECS
|
|
13941
13980
|
# remove an existing placement strategy, specify an empty object.
|
13942
13981
|
#
|
13943
13982
|
# You can specify a maximum of five strategy rules for each service.
|
13983
|
+
#
|
13984
|
+
# This parameter doesn't trigger a new service deployment.
|
13944
13985
|
# @return [Array<Types::PlacementStrategy>]
|
13945
13986
|
#
|
13946
13987
|
# @!attribute [rw] platform_version
|
@@ -13951,6 +13992,8 @@ module Aws::ECS
|
|
13951
13992
|
# Platform Versions][1] in the *Amazon Elastic Container Service
|
13952
13993
|
# Developer Guide*.
|
13953
13994
|
#
|
13995
|
+
# This parameter triggers a new service deployment.
|
13996
|
+
#
|
13954
13997
|
#
|
13955
13998
|
#
|
13956
13999
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
|
@@ -13979,6 +14022,8 @@ module Aws::ECS
|
|
13979
14022
|
# ECS service scheduler ignores health check status. This grace period
|
13980
14023
|
# can prevent the service scheduler from marking tasks as unhealthy
|
13981
14024
|
# and stopping them before they have time to come up.
|
14025
|
+
#
|
14026
|
+
# This parameter doesn't trigger a new service deployment.
|
13982
14027
|
# @return [Integer]
|
13983
14028
|
#
|
13984
14029
|
# @!attribute [rw] deployment_controller
|
@@ -13992,6 +14037,8 @@ module Aws::ECS
|
|
13992
14037
|
# If you do not want to override the value that was set when the
|
13993
14038
|
# service was created, you can set this to `null` when performing this
|
13994
14039
|
# action.
|
14040
|
+
#
|
14041
|
+
# This parameter doesn't trigger a new service deployment.
|
13995
14042
|
# @return [Boolean]
|
13996
14043
|
#
|
13997
14044
|
# @!attribute [rw] enable_ecs_managed_tags
|
@@ -14004,6 +14051,8 @@ module Aws::ECS
|
|
14004
14051
|
# update the tags on all tasks, set `forceNewDeployment` to `true`, so
|
14005
14052
|
# that Amazon ECS starts new tasks with the updated tags.
|
14006
14053
|
#
|
14054
|
+
# This parameter doesn't trigger a new service deployment.
|
14055
|
+
#
|
14007
14056
|
#
|
14008
14057
|
#
|
14009
14058
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
@@ -14045,6 +14094,8 @@ module Aws::ECS
|
|
14045
14094
|
#
|
14046
14095
|
# You can remove existing `loadBalancers` by passing an empty list.
|
14047
14096
|
#
|
14097
|
+
# This parameter triggers a new service deployment.
|
14098
|
+
#
|
14048
14099
|
#
|
14049
14100
|
#
|
14050
14101
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html
|
@@ -14059,6 +14110,8 @@ module Aws::ECS
|
|
14059
14110
|
# Only tasks launched after the update will reflect the update. To
|
14060
14111
|
# update the tags on all tasks, set `forceNewDeployment` to `true`, so
|
14061
14112
|
# that Amazon ECS starts new tasks with the updated tags.
|
14113
|
+
#
|
14114
|
+
# This parameter doesn't trigger a new service deployment.
|
14062
14115
|
# @return [String]
|
14063
14116
|
#
|
14064
14117
|
# @!attribute [rw] service_registries
|
@@ -14080,6 +14133,8 @@ module Aws::ECS
|
|
14080
14133
|
# You can remove existing `serviceRegistries` by passing an empty
|
14081
14134
|
# list.
|
14082
14135
|
#
|
14136
|
+
# This parameter triggers a new service deployment.
|
14137
|
+
#
|
14083
14138
|
#
|
14084
14139
|
#
|
14085
14140
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html#ECS-CreateService-request-role
|
@@ -14100,6 +14155,8 @@ module Aws::ECS
|
|
14100
14155
|
# Connect][1] in the *Amazon Elastic Container Service Developer
|
14101
14156
|
# Guide*.
|
14102
14157
|
#
|
14158
|
+
# This parameter triggers a new service deployment.
|
14159
|
+
#
|
14103
14160
|
#
|
14104
14161
|
#
|
14105
14162
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html
|
@@ -14114,6 +14171,8 @@ module Aws::ECS
|
|
14114
14171
|
# configuration differs from the existing one, it triggers a new
|
14115
14172
|
# deployment.
|
14116
14173
|
#
|
14174
|
+
# This parameter triggers a new service deployment.
|
14175
|
+
#
|
14117
14176
|
#
|
14118
14177
|
#
|
14119
14178
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ServiceManagedEBSVolumeConfiguration.html
|
@@ -14122,6 +14181,8 @@ module Aws::ECS
|
|
14122
14181
|
# @!attribute [rw] vpc_lattice_configurations
|
14123
14182
|
# An object representing the VPC Lattice configuration for the service
|
14124
14183
|
# being updated.
|
14184
|
+
#
|
14185
|
+
# This parameter triggers a new service deployment.
|
14125
14186
|
# @return [Array<Types::VpcLatticeConfiguration>]
|
14126
14187
|
#
|
14127
14188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/UpdateServiceRequest AWS API Documentation
|
data/lib/aws-sdk-ecs.rb
CHANGED