aws-sdk-ecs 1.201.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +38 -3
- 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,11 @@
|
|
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
|
+
|
4
9
|
1.201.0 (2025-08-04)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.202.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -5280,8 +5280,7 @@ module Aws::ECS
|
|
5280
5280
|
# @option params [String] :cluster
|
5281
5281
|
# The short name or full Amazon Resource Name (ARN) of the cluster that
|
5282
5282
|
# hosts the task or tasks to describe. If you do not specify a cluster,
|
5283
|
-
# the default cluster is assumed.
|
5284
|
-
# `default` cluster is used.
|
5283
|
+
# the default cluster is assumed.
|
5285
5284
|
#
|
5286
5285
|
# @option params [required, Array<String>] :tasks
|
5287
5286
|
# A list of up to 100 task IDs or full ARN entries.
|
@@ -11638,6 +11637,8 @@ module Aws::ECS
|
|
11638
11637
|
# The number of instantiations of the task to place and keep running in
|
11639
11638
|
# your service.
|
11640
11639
|
#
|
11640
|
+
# This parameter doesn't trigger a new service deployment.
|
11641
|
+
#
|
11641
11642
|
# @option params [String] :task_definition
|
11642
11643
|
# The `family` and `revision` (`family:revision`) or full ARN of the
|
11643
11644
|
# task definition to run in your service. If a `revision` is not
|
@@ -11646,6 +11647,8 @@ module Aws::ECS
|
|
11646
11647
|
# the new version of the task definition and then stops an old task
|
11647
11648
|
# after the new version is running.
|
11648
11649
|
#
|
11650
|
+
# This parameter triggers a new service deployment.
|
11651
|
+
#
|
11649
11652
|
# @option params [Array<Types::CapacityProviderStrategyItem>] :capacity_provider_strategy
|
11650
11653
|
# The details of a capacity provider strategy. You can set a capacity
|
11651
11654
|
# provider when you create a cluster, run a task, or update a service.
|
@@ -11680,6 +11683,8 @@ module Aws::ECS
|
|
11680
11683
|
# For information about Amazon Web Services CDK considerations, see
|
11681
11684
|
# [Amazon Web Services CDK considerations][1].
|
11682
11685
|
#
|
11686
|
+
# This parameter doesn't trigger a new service deployment.
|
11687
|
+
#
|
11683
11688
|
#
|
11684
11689
|
#
|
11685
11690
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/update-service-parameters.html
|
@@ -11688,6 +11693,8 @@ module Aws::ECS
|
|
11688
11693
|
# Optional deployment parameters that control how many tasks run during
|
11689
11694
|
# the deployment and the ordering of stopping and starting tasks.
|
11690
11695
|
#
|
11696
|
+
# This parameter doesn't trigger a new service deployment.
|
11697
|
+
#
|
11691
11698
|
# @option params [String] :availability_zone_rebalancing
|
11692
11699
|
# Indicates whether to use Availability Zone rebalancing for the
|
11693
11700
|
# service.
|
@@ -11696,6 +11703,8 @@ module Aws::ECS
|
|
11696
11703
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
|
11697
11704
|
# Developer Guide</i> </i>.
|
11698
11705
|
#
|
11706
|
+
# This parameter doesn't trigger a new service deployment.
|
11707
|
+
#
|
11699
11708
|
#
|
11700
11709
|
#
|
11701
11710
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
|
@@ -11703,6 +11712,8 @@ module Aws::ECS
|
|
11703
11712
|
# @option params [Types::NetworkConfiguration] :network_configuration
|
11704
11713
|
# An object representing the network configuration for the service.
|
11705
11714
|
#
|
11715
|
+
# This parameter triggers a new service deployment.
|
11716
|
+
#
|
11706
11717
|
# @option params [Array<Types::PlacementConstraint>] :placement_constraints
|
11707
11718
|
# An array of task placement constraint objects to update the service to
|
11708
11719
|
# use. If no value is specified, the existing placement constraints for
|
@@ -11714,6 +11725,8 @@ module Aws::ECS
|
|
11714
11725
|
# includes constraints in the task definition and those specified at
|
11715
11726
|
# runtime.
|
11716
11727
|
#
|
11728
|
+
# This parameter doesn't trigger a new service deployment.
|
11729
|
+
#
|
11717
11730
|
# @option params [Array<Types::PlacementStrategy>] :placement_strategy
|
11718
11731
|
# The task placement strategy objects to update the service to use. If
|
11719
11732
|
# no value is specified, the existing placement strategy for the service
|
@@ -11723,6 +11736,8 @@ module Aws::ECS
|
|
11723
11736
|
#
|
11724
11737
|
# You can specify a maximum of five strategy rules for each service.
|
11725
11738
|
#
|
11739
|
+
# This parameter doesn't trigger a new service deployment.
|
11740
|
+
#
|
11726
11741
|
# @option params [String] :platform_version
|
11727
11742
|
# The platform version that your tasks in the service run on. A platform
|
11728
11743
|
# version is only specified for tasks using the Fargate launch type. If
|
@@ -11730,6 +11745,8 @@ module Aws::ECS
|
|
11730
11745
|
# used. For more information, see [Fargate Platform Versions][1] in the
|
11731
11746
|
# *Amazon Elastic Container Service Developer Guide*.
|
11732
11747
|
#
|
11748
|
+
# This parameter triggers a new service deployment.
|
11749
|
+
#
|
11733
11750
|
#
|
11734
11751
|
#
|
11735
11752
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
|
@@ -11757,6 +11774,8 @@ module Aws::ECS
|
|
11757
11774
|
# can prevent the service scheduler from marking tasks as unhealthy and
|
11758
11775
|
# stopping them before they have time to come up.
|
11759
11776
|
#
|
11777
|
+
# This parameter doesn't trigger a new service deployment.
|
11778
|
+
#
|
11760
11779
|
# @option params [Types::DeploymentController] :deployment_controller
|
11761
11780
|
# The deployment controller to use for the service.
|
11762
11781
|
#
|
@@ -11767,6 +11786,8 @@ module Aws::ECS
|
|
11767
11786
|
# If you do not want to override the value that was set when the service
|
11768
11787
|
# was created, you can set this to `null` when performing this action.
|
11769
11788
|
#
|
11789
|
+
# This parameter doesn't trigger a new service deployment.
|
11790
|
+
#
|
11770
11791
|
# @option params [Boolean] :enable_ecs_managed_tags
|
11771
11792
|
# Determines whether to turn on Amazon ECS managed tags for the tasks in
|
11772
11793
|
# the service. For more information, see [Tagging Your Amazon ECS
|
@@ -11777,6 +11798,8 @@ module Aws::ECS
|
|
11777
11798
|
# update the tags on all tasks, set `forceNewDeployment` to `true`, so
|
11778
11799
|
# that Amazon ECS starts new tasks with the updated tags.
|
11779
11800
|
#
|
11801
|
+
# This parameter doesn't trigger a new service deployment.
|
11802
|
+
#
|
11780
11803
|
#
|
11781
11804
|
#
|
11782
11805
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html
|
@@ -11817,6 +11840,8 @@ module Aws::ECS
|
|
11817
11840
|
#
|
11818
11841
|
# You can remove existing `loadBalancers` by passing an empty list.
|
11819
11842
|
#
|
11843
|
+
# This parameter triggers a new service deployment.
|
11844
|
+
#
|
11820
11845
|
#
|
11821
11846
|
#
|
11822
11847
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html
|
@@ -11831,6 +11856,8 @@ module Aws::ECS
|
|
11831
11856
|
# update the tags on all tasks, set `forceNewDeployment` to `true`, so
|
11832
11857
|
# that Amazon ECS starts new tasks with the updated tags.
|
11833
11858
|
#
|
11859
|
+
# This parameter doesn't trigger a new service deployment.
|
11860
|
+
#
|
11834
11861
|
# @option params [Array<Types::ServiceRegistry>] :service_registries
|
11835
11862
|
# <note markdown="1"> You must have a service-linked role when you update this property.
|
11836
11863
|
#
|
@@ -11849,6 +11876,8 @@ module Aws::ECS
|
|
11849
11876
|
#
|
11850
11877
|
# You can remove existing `serviceRegistries` by passing an empty list.
|
11851
11878
|
#
|
11879
|
+
# This parameter triggers a new service deployment.
|
11880
|
+
#
|
11852
11881
|
#
|
11853
11882
|
#
|
11854
11883
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateService.html#ECS-CreateService-request-role
|
@@ -11867,6 +11896,8 @@ module Aws::ECS
|
|
11867
11896
|
# Service Connect. For more information, see [Service Connect][1] in the
|
11868
11897
|
# *Amazon Elastic Container Service Developer Guide*.
|
11869
11898
|
#
|
11899
|
+
# This parameter triggers a new service deployment.
|
11900
|
+
#
|
11870
11901
|
#
|
11871
11902
|
#
|
11872
11903
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html
|
@@ -11879,6 +11910,8 @@ module Aws::ECS
|
|
11879
11910
|
# null, no new deployment is triggered. Otherwise, if this configuration
|
11880
11911
|
# differs from the existing one, it triggers a new deployment.
|
11881
11912
|
#
|
11913
|
+
# This parameter triggers a new service deployment.
|
11914
|
+
#
|
11882
11915
|
#
|
11883
11916
|
#
|
11884
11917
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ServiceManagedEBSVolumeConfiguration.html
|
@@ -11887,6 +11920,8 @@ module Aws::ECS
|
|
11887
11920
|
# An object representing the VPC Lattice configuration for the service
|
11888
11921
|
# being updated.
|
11889
11922
|
#
|
11923
|
+
# This parameter triggers a new service deployment.
|
11924
|
+
#
|
11890
11925
|
# @return [Types::UpdateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11891
11926
|
#
|
11892
11927
|
# * {Types::UpdateServiceResponse#service #service} => Types::Service
|
@@ -12779,7 +12814,7 @@ module Aws::ECS
|
|
12779
12814
|
tracer: tracer
|
12780
12815
|
)
|
12781
12816
|
context[:gem_name] = 'aws-sdk-ecs'
|
12782
|
-
context[:gem_version] = '1.
|
12817
|
+
context[:gem_version] = '1.202.0'
|
12783
12818
|
Seahorse::Client::Request.new(handlers, context)
|
12784
12819
|
end
|
12785
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