aws-sdk-ecs 1.173.0 → 1.181.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.
@@ -7,34 +7,34 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
- require 'seahorse/client/plugins/content_length.rb'
11
- require 'aws-sdk-core/plugins/credentials_configuration.rb'
12
- require 'aws-sdk-core/plugins/logging.rb'
13
- require 'aws-sdk-core/plugins/param_converter.rb'
14
- require 'aws-sdk-core/plugins/param_validator.rb'
15
- require 'aws-sdk-core/plugins/user_agent.rb'
16
- require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
17
- require 'aws-sdk-core/plugins/retry_errors.rb'
18
- require 'aws-sdk-core/plugins/global_configuration.rb'
19
- require 'aws-sdk-core/plugins/regional_endpoint.rb'
20
- require 'aws-sdk-core/plugins/endpoint_discovery.rb'
21
- require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
- require 'aws-sdk-core/plugins/response_paging.rb'
23
- require 'aws-sdk-core/plugins/stub_responses.rb'
24
- require 'aws-sdk-core/plugins/idempotency_token.rb'
25
- require 'aws-sdk-core/plugins/invocation_id.rb'
26
- require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
27
- require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
28
- require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
29
- require 'aws-sdk-core/plugins/transfer_encoding.rb'
30
- require 'aws-sdk-core/plugins/http_checksum.rb'
31
- require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
- require 'aws-sdk-core/plugins/request_compression.rb'
33
- require 'aws-sdk-core/plugins/defaults_mode.rb'
34
- require 'aws-sdk-core/plugins/recursion_detection.rb'
35
- require 'aws-sdk-core/plugins/telemetry.rb'
36
- require 'aws-sdk-core/plugins/sign.rb'
37
- require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
10
+ require 'seahorse/client/plugins/content_length'
11
+ require 'aws-sdk-core/plugins/credentials_configuration'
12
+ require 'aws-sdk-core/plugins/logging'
13
+ require 'aws-sdk-core/plugins/param_converter'
14
+ require 'aws-sdk-core/plugins/param_validator'
15
+ require 'aws-sdk-core/plugins/user_agent'
16
+ require 'aws-sdk-core/plugins/helpful_socket_errors'
17
+ require 'aws-sdk-core/plugins/retry_errors'
18
+ require 'aws-sdk-core/plugins/global_configuration'
19
+ require 'aws-sdk-core/plugins/regional_endpoint'
20
+ require 'aws-sdk-core/plugins/endpoint_discovery'
21
+ require 'aws-sdk-core/plugins/endpoint_pattern'
22
+ require 'aws-sdk-core/plugins/response_paging'
23
+ require 'aws-sdk-core/plugins/stub_responses'
24
+ require 'aws-sdk-core/plugins/idempotency_token'
25
+ require 'aws-sdk-core/plugins/invocation_id'
26
+ require 'aws-sdk-core/plugins/jsonvalue_converter'
27
+ require 'aws-sdk-core/plugins/client_metrics_plugin'
28
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin'
29
+ require 'aws-sdk-core/plugins/transfer_encoding'
30
+ require 'aws-sdk-core/plugins/http_checksum'
31
+ require 'aws-sdk-core/plugins/checksum_algorithm'
32
+ require 'aws-sdk-core/plugins/request_compression'
33
+ require 'aws-sdk-core/plugins/defaults_mode'
34
+ require 'aws-sdk-core/plugins/recursion_detection'
35
+ require 'aws-sdk-core/plugins/telemetry'
36
+ require 'aws-sdk-core/plugins/sign'
37
+ require 'aws-sdk-core/plugins/protocols/json_rpc'
38
38
 
39
39
  module Aws::ECS
40
40
  # An API client for ECS. To construct a client, you need to configure a `:region` and `:credentials`.
@@ -257,11 +257,34 @@ module Aws::ECS
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -506,6 +529,46 @@ module Aws::ECS
506
529
  #
507
530
  # * {Types::CreateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
508
531
  #
532
+ #
533
+ # @example Example: To create a capacity provider
534
+ #
535
+ # # This example creates a capacity provider that uses the specified Auto Scaling group MyASG and has managed scaling and
536
+ # # manager termination protection enabled.
537
+ #
538
+ # resp = client.create_capacity_provider({
539
+ # name: "MyCapacityProvider",
540
+ # auto_scaling_group_provider: {
541
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:123456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
542
+ # managed_scaling: {
543
+ # status: "ENABLED",
544
+ # target_capacity: 100,
545
+ # },
546
+ # managed_termination_protection: "ENABLED",
547
+ # },
548
+ # })
549
+ #
550
+ # resp.to_h outputs the following:
551
+ # {
552
+ # capacity_provider: {
553
+ # name: "MyCapacityProvider",
554
+ # auto_scaling_group_provider: {
555
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
556
+ # managed_scaling: {
557
+ # instance_warmup_period: 300,
558
+ # maximum_scaling_step_size: 10000,
559
+ # minimum_scaling_step_size: 1,
560
+ # status: "ENABLED",
561
+ # target_capacity: 100,
562
+ # },
563
+ # managed_termination_protection: "ENABLED",
564
+ # },
565
+ # capacity_provider_arn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider",
566
+ # status: "ACTIVE",
567
+ # tags: [
568
+ # ],
569
+ # },
570
+ # }
571
+ #
509
572
  # @example Request syntax with placeholder values
510
573
  #
511
574
  # resp = client.create_capacity_provider({
@@ -977,8 +1040,8 @@ module Aws::ECS
977
1040
  # service.
978
1041
  #
979
1042
  # For more information, see [Balancing an Amazon ECS service across
980
- # Availability Zones][1] in the *Amazon Elastic Container Service
981
- # Developer Guide*.
1043
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
1044
+ # Developer Guide</i> </i>.
982
1045
  #
983
1046
  #
984
1047
  #
@@ -1931,6 +1994,64 @@ module Aws::ECS
1931
1994
  #
1932
1995
  # * {Types::CreateTaskSetResponse#task_set #task_set} => Types::TaskSet
1933
1996
  #
1997
+ #
1998
+ # @example Example: To create a task set
1999
+ #
2000
+ # # This example creates a task set in a service that uses the EXTERNAL deployment controller.
2001
+ #
2002
+ # resp = client.create_task_set({
2003
+ # cluster: "MyCluster",
2004
+ # network_configuration: {
2005
+ # awsvpc_configuration: {
2006
+ # security_groups: [
2007
+ # "sg-12344321",
2008
+ # ],
2009
+ # subnets: [
2010
+ # "subnet-12344321",
2011
+ # ],
2012
+ # },
2013
+ # },
2014
+ # service: "MyService",
2015
+ # task_definition: "MyTaskDefinition:2",
2016
+ # })
2017
+ #
2018
+ # resp.to_h outputs the following:
2019
+ # {
2020
+ # task_set: {
2021
+ # computed_desired_count: 0,
2022
+ # created_at: Time.parse(1557128360.711),
2023
+ # id: "ecs-svc/1234567890123456789",
2024
+ # launch_type: "EC2",
2025
+ # load_balancers: [
2026
+ # ],
2027
+ # network_configuration: {
2028
+ # awsvpc_configuration: {
2029
+ # assign_public_ip: "DISABLED",
2030
+ # security_groups: [
2031
+ # "sg-12344321",
2032
+ # ],
2033
+ # subnets: [
2034
+ # "subnet-12344321",
2035
+ # ],
2036
+ # },
2037
+ # },
2038
+ # pending_count: 0,
2039
+ # running_count: 0,
2040
+ # scale: {
2041
+ # value: 0,
2042
+ # unit: "PERCENT",
2043
+ # },
2044
+ # service_registries: [
2045
+ # ],
2046
+ # stability_status: "STABILIZING",
2047
+ # stability_status_at: Time.parse(1557128360.711),
2048
+ # status: "ACTIVE",
2049
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/MyTaskDefinition:2",
2050
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
2051
+ # updated_at: Time.parse(1557128360.711),
2052
+ # },
2053
+ # }
2054
+ #
1934
2055
  # @example Request syntax with placeholder values
1935
2056
  #
1936
2057
  # resp = client.create_task_set({
@@ -2141,6 +2262,31 @@ module Aws::ECS
2141
2262
  #
2142
2263
  # * {Types::DeleteAttributesResponse#attributes #attributes} => Array&lt;Types::Attribute&gt;
2143
2264
  #
2265
+ #
2266
+ # @example Example: To delete a custom attribute from an Amazon ECS instance
2267
+ #
2268
+ # # This example deletes an attribute named stack from a container instance.
2269
+ #
2270
+ # resp = client.delete_attributes({
2271
+ # attributes: [
2272
+ # {
2273
+ # name: "stack",
2274
+ # target_id: "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
2275
+ # },
2276
+ # ],
2277
+ # })
2278
+ #
2279
+ # resp.to_h outputs the following:
2280
+ # {
2281
+ # attributes: [
2282
+ # {
2283
+ # name: "stack",
2284
+ # value: "production",
2285
+ # target_id: "aws:ecs:us-west-2:130757420319:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
2286
+ # },
2287
+ # ],
2288
+ # }
2289
+ #
2144
2290
  # @example Request syntax with placeholder values
2145
2291
  #
2146
2292
  # resp = client.delete_attributes({
@@ -2205,6 +2351,37 @@ module Aws::ECS
2205
2351
  #
2206
2352
  # * {Types::DeleteCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
2207
2353
  #
2354
+ #
2355
+ # @example Example: To delete a specified capacity provider
2356
+ #
2357
+ # # This example deletes a specified capacity provider.
2358
+ #
2359
+ # resp = client.delete_capacity_provider({
2360
+ # capacity_provider: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider",
2361
+ # })
2362
+ #
2363
+ # resp.to_h outputs the following:
2364
+ # {
2365
+ # capacity_provider: {
2366
+ # name: "ExampleCapacityProvider",
2367
+ # auto_scaling_group_provider: {
2368
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup",
2369
+ # managed_scaling: {
2370
+ # maximum_scaling_step_size: 10000,
2371
+ # minimum_scaling_step_size: 1,
2372
+ # status: "ENABLED",
2373
+ # target_capacity: 100,
2374
+ # },
2375
+ # managed_termination_protection: "DISABLED",
2376
+ # },
2377
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/ExampleCapacityProvider",
2378
+ # status: "ACTIVE",
2379
+ # tags: [
2380
+ # ],
2381
+ # update_status: "DELETE_IN_PROGRESS",
2382
+ # },
2383
+ # }
2384
+ #
2208
2385
  # @example Request syntax with placeholder values
2209
2386
  #
2210
2387
  # resp = client.delete_capacity_provider({
@@ -2642,6 +2819,57 @@ module Aws::ECS
2642
2819
  # * {Types::DeleteTaskDefinitionsResponse#task_definitions #task_definitions} => Array&lt;Types::TaskDefinition&gt;
2643
2820
  # * {Types::DeleteTaskDefinitionsResponse#failures #failures} => Array&lt;Types::Failure&gt;
2644
2821
  #
2822
+ #
2823
+ # @example Example: To delete a task definition that has been deregistered
2824
+ #
2825
+ # # This example deletes a specified deregistered task definition.
2826
+ #
2827
+ # resp = client.delete_task_definitions({
2828
+ # task_definitions: [
2829
+ # "Example-task-definition:1",
2830
+ # ],
2831
+ # })
2832
+ #
2833
+ # resp.to_h outputs the following:
2834
+ # {
2835
+ # failures: [
2836
+ # ],
2837
+ # task_definitions: [
2838
+ # {
2839
+ # container_definitions: [
2840
+ # {
2841
+ # name: "wave",
2842
+ # command: [
2843
+ # "apt-get update; apt-get install stress; while true; do stress --cpu $(( RANDOM % 4 )) -t $(( RANDOM % 10 )); done",
2844
+ # ],
2845
+ # cpu: 50,
2846
+ # entry_point: [
2847
+ # "bash",
2848
+ # "-c",
2849
+ # ],
2850
+ # environment: [
2851
+ # ],
2852
+ # essential: true,
2853
+ # image: "ubuntu",
2854
+ # memory: 100,
2855
+ # mount_points: [
2856
+ # ],
2857
+ # port_mappings: [
2858
+ # ],
2859
+ # volumes_from: [
2860
+ # ],
2861
+ # },
2862
+ # ],
2863
+ # family: "cpu-wave",
2864
+ # revision: 1,
2865
+ # status: "DELETE_IN_PROGRESS",
2866
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/Example-task-definition:1",
2867
+ # volumes: [
2868
+ # ],
2869
+ # },
2870
+ # ],
2871
+ # }
2872
+ #
2645
2873
  # @example Request syntax with placeholder values
2646
2874
  #
2647
2875
  # resp = client.delete_task_definitions({
@@ -2864,6 +3092,55 @@ module Aws::ECS
2864
3092
  #
2865
3093
  # * {Types::DeleteTaskSetResponse#task_set #task_set} => Types::TaskSet
2866
3094
  #
3095
+ #
3096
+ # @example Example: To delete a task set within a service that uses the EXTERNAL deployment controller type
3097
+ #
3098
+ # # This example deletes a task set and uses the force flag to force deletion if it hasn't scaled to zero.
3099
+ #
3100
+ # resp = client.delete_task_set({
3101
+ # cluster: "MyCluster",
3102
+ # force: true,
3103
+ # service: "MyService",
3104
+ # task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
3105
+ # })
3106
+ #
3107
+ # resp.to_h outputs the following:
3108
+ # {
3109
+ # task_set: {
3110
+ # computed_desired_count: 0,
3111
+ # created_at: Time.parse(1557130260.276),
3112
+ # id: "ecs-svc/1234567890123456789",
3113
+ # launch_type: "EC2",
3114
+ # load_balancers: [
3115
+ # ],
3116
+ # network_configuration: {
3117
+ # awsvpc_configuration: {
3118
+ # assign_public_ip: "DISABLED",
3119
+ # security_groups: [
3120
+ # "sg-12345678",
3121
+ # ],
3122
+ # subnets: [
3123
+ # "subnet-12345678",
3124
+ # ],
3125
+ # },
3126
+ # },
3127
+ # pending_count: 0,
3128
+ # running_count: 0,
3129
+ # scale: {
3130
+ # value: 0,
3131
+ # unit: "PERCENT",
3132
+ # },
3133
+ # service_registries: [
3134
+ # ],
3135
+ # stability_status: "STABILIZING",
3136
+ # stability_status_at: Time.parse(1557130290.707),
3137
+ # status: "DRAINING",
3138
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
3139
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
3140
+ # updated_at: Time.parse(1557130290.707),
3141
+ # },
3142
+ # }
3143
+ #
2867
3144
  # @example Request syntax with placeholder values
2868
3145
  #
2869
3146
  # resp = client.delete_task_set({
@@ -3106,6 +3383,49 @@ module Aws::ECS
3106
3383
  #
3107
3384
  # * {Types::DeregisterTaskDefinitionResponse#task_definition #task_definition} => Types::TaskDefinition
3108
3385
  #
3386
+ #
3387
+ # @example Example: To deregister a revision of a task definition
3388
+ #
3389
+ # # This example deregisters the first revision of the curler task definition
3390
+ #
3391
+ # resp = client.deregister_task_definition({
3392
+ # task_definition: "curler:1",
3393
+ # })
3394
+ #
3395
+ # resp.to_h outputs the following:
3396
+ # {
3397
+ # task_definition: {
3398
+ # container_definitions: [
3399
+ # {
3400
+ # name: "curler",
3401
+ # command: [
3402
+ # "curl -v http://example.com/",
3403
+ # ],
3404
+ # cpu: 100,
3405
+ # entry_point: [
3406
+ # ],
3407
+ # environment: [
3408
+ # ],
3409
+ # essential: true,
3410
+ # image: "curl:latest",
3411
+ # memory: 256,
3412
+ # mount_points: [
3413
+ # ],
3414
+ # port_mappings: [
3415
+ # ],
3416
+ # volumes_from: [
3417
+ # ],
3418
+ # },
3419
+ # ],
3420
+ # family: "curler",
3421
+ # revision: 1,
3422
+ # status: "INACTIVE",
3423
+ # task_definition_arn: "arn:aws:ecs:us-west-2:123456789012:task-definition/curler:1",
3424
+ # volumes: [
3425
+ # ],
3426
+ # },
3427
+ # }
3428
+ #
3109
3429
  # @example Request syntax with placeholder values
3110
3430
  #
3111
3431
  # resp = client.deregister_task_definition({
@@ -3337,6 +3657,91 @@ module Aws::ECS
3337
3657
  # * {Types::DescribeCapacityProvidersResponse#failures #failures} => Array&lt;Types::Failure&gt;
3338
3658
  # * {Types::DescribeCapacityProvidersResponse#next_token #next_token} => String
3339
3659
  #
3660
+ #
3661
+ # @example Example: To describe all capacity providers
3662
+ #
3663
+ # # This example retrieves details about all capacity providers.
3664
+ #
3665
+ # resp = client.describe_capacity_providers({
3666
+ # })
3667
+ #
3668
+ # resp.to_h outputs the following:
3669
+ # {
3670
+ # capacity_providers: [
3671
+ # {
3672
+ # name: "MyCapacityProvider",
3673
+ # auto_scaling_group_provider: {
3674
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup",
3675
+ # managed_scaling: {
3676
+ # maximum_scaling_step_size: 1000,
3677
+ # minimum_scaling_step_size: 1,
3678
+ # status: "ENABLED",
3679
+ # target_capacity: 100,
3680
+ # },
3681
+ # managed_termination_protection: "ENABLED",
3682
+ # },
3683
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider",
3684
+ # status: "ACTIVE",
3685
+ # tags: [
3686
+ # ],
3687
+ # },
3688
+ # {
3689
+ # name: "FARGATE",
3690
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE",
3691
+ # status: "ACTIVE",
3692
+ # tags: [
3693
+ # ],
3694
+ # },
3695
+ # {
3696
+ # name: "FARGATE_SPOT",
3697
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/FARGATE_SPOT",
3698
+ # status: "ACTIVE",
3699
+ # tags: [
3700
+ # ],
3701
+ # },
3702
+ # ],
3703
+ # }
3704
+ #
3705
+ # @example Example: To describe a specific capacity provider
3706
+ #
3707
+ # # This example retrieves details about the capacity provider MyCapacityProvider
3708
+ #
3709
+ # resp = client.describe_capacity_providers({
3710
+ # capacity_providers: [
3711
+ # "MyCapacityProvider",
3712
+ # ],
3713
+ # include: [
3714
+ # "TAGS",
3715
+ # ],
3716
+ # })
3717
+ #
3718
+ # resp.to_h outputs the following:
3719
+ # {
3720
+ # capacity_providers: [
3721
+ # {
3722
+ # name: "MyCapacityProvider",
3723
+ # auto_scaling_group_provider: {
3724
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-west-2:123456789012:autoScalingGroup:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111:autoScalingGroupName/MyAutoScalingGroup",
3725
+ # managed_scaling: {
3726
+ # maximum_scaling_step_size: 1000,
3727
+ # minimum_scaling_step_size: 1,
3728
+ # status: "ENABLED",
3729
+ # target_capacity: 100,
3730
+ # },
3731
+ # managed_termination_protection: "ENABLED",
3732
+ # },
3733
+ # capacity_provider_arn: "arn:aws:ecs:us-west-2:123456789012:capacity-provider/MyCapacityProvider",
3734
+ # status: "ACTIVE",
3735
+ # tags: [
3736
+ # {
3737
+ # key: "environment",
3738
+ # value: "production",
3739
+ # },
3740
+ # ],
3741
+ # },
3742
+ # ],
3743
+ # }
3744
+ #
3340
3745
  # @example Request syntax with placeholder values
3341
3746
  #
3342
3747
  # resp = client.describe_capacity_providers({
@@ -3717,6 +4122,46 @@ module Aws::ECS
3717
4122
  # * {Types::DescribeServiceDeploymentsResponse#service_deployments #service_deployments} => Array&lt;Types::ServiceDeployment&gt;
3718
4123
  # * {Types::DescribeServiceDeploymentsResponse#failures #failures} => Array&lt;Types::Failure&gt;
3719
4124
  #
4125
+ #
4126
+ # @example Example: To describe a service deployment
4127
+ #
4128
+ # # This example describes a service deployment for the service sd-example in the example cluster.
4129
+ #
4130
+ # resp = client.describe_service_deployments({
4131
+ # service_deployment_arns: [
4132
+ # "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5",
4133
+ # ],
4134
+ # })
4135
+ #
4136
+ # resp.to_h outputs the following:
4137
+ # {
4138
+ # failures: [
4139
+ # ],
4140
+ # service_deployments: [
4141
+ # {
4142
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
4143
+ # deployment_configuration: {
4144
+ # deployment_circuit_breaker: {
4145
+ # enable: false,
4146
+ # rollback: false,
4147
+ # },
4148
+ # maximum_percent: 200,
4149
+ # minimum_healthy_percent: 100,
4150
+ # },
4151
+ # service_arn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example",
4152
+ # service_deployment_arn: "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5",
4153
+ # status: "PENDING",
4154
+ # target_service_revision: {
4155
+ # arn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095",
4156
+ # pending_task_count: 0,
4157
+ # requested_task_count: 0,
4158
+ # running_task_count: 0,
4159
+ # },
4160
+ # updated_at: Time.parse("2024-09-10T16:49:35.572000+00:00"),
4161
+ # },
4162
+ # ],
4163
+ # }
4164
+ #
3720
4165
  # @example Request syntax with placeholder values
3721
4166
  #
3722
4167
  # resp = client.describe_service_deployments({
@@ -3809,6 +4254,46 @@ module Aws::ECS
3809
4254
  # * {Types::DescribeServiceRevisionsResponse#service_revisions #service_revisions} => Array&lt;Types::ServiceRevision&gt;
3810
4255
  # * {Types::DescribeServiceRevisionsResponse#failures #failures} => Array&lt;Types::Failure&gt;
3811
4256
  #
4257
+ #
4258
+ # @example Example: To describe a service revision
4259
+ #
4260
+ # # This example describes a service revision with the specified ARN
4261
+ #
4262
+ # resp = client.describe_service_revisions({
4263
+ # service_revision_arns: [
4264
+ # "arn:aws:ecs:us-west-2:123456789012:service-revision/testc/sd1/4980306466373577095",
4265
+ # ],
4266
+ # })
4267
+ #
4268
+ # resp.to_h outputs the following:
4269
+ # {
4270
+ # failures: [
4271
+ # ],
4272
+ # service_revisions: [
4273
+ # {
4274
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
4275
+ # created_at: Time.parse("2024-09-10T16:49:26.388000+00:00"),
4276
+ # launch_type: "FARGATE",
4277
+ # network_configuration: {
4278
+ # awsvpc_configuration: {
4279
+ # assign_public_ip: "ENABLED",
4280
+ # security_groups: [
4281
+ # "sg-09605d60a6bc1b296",
4282
+ # ],
4283
+ # subnets: [
4284
+ # "subnet-0a4040e73895f04e1",
4285
+ # ],
4286
+ # },
4287
+ # },
4288
+ # platform_family: "DockerLinux",
4289
+ # platform_version: "1.4.0",
4290
+ # service_arn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example",
4291
+ # service_revision_arn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095",
4292
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/large-ngingx:1",
4293
+ # },
4294
+ # ],
4295
+ # }
4296
+ #
3812
4297
  # @example Request syntax with placeholder values
3813
4298
  #
3814
4299
  # resp = client.describe_service_revisions({
@@ -4499,11 +4984,65 @@ module Aws::ECS
4499
4984
  # * {Types::DescribeTaskSetsResponse#task_sets #task_sets} => Array&lt;Types::TaskSet&gt;
4500
4985
  # * {Types::DescribeTaskSetsResponse#failures #failures} => Array&lt;Types::Failure&gt;
4501
4986
  #
4502
- # @example Request syntax with placeholder values
4987
+ #
4988
+ # @example Example: To describe a task set
4989
+ #
4990
+ # # This example describes a task set in service MyService that uses an EXTERNAL deployment controller.
4503
4991
  #
4504
4992
  # resp = client.describe_task_sets({
4505
- # cluster: "String", # required
4506
- # service: "String", # required
4993
+ # cluster: "MyCluster",
4994
+ # service: "MyService",
4995
+ # task_sets: [
4996
+ # "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
4997
+ # ],
4998
+ # })
4999
+ #
5000
+ # resp.to_h outputs the following:
5001
+ # {
5002
+ # failures: [
5003
+ # ],
5004
+ # task_sets: [
5005
+ # {
5006
+ # computed_desired_count: 0,
5007
+ # created_at: Time.parse(1557207715.195),
5008
+ # id: "ecs-svc/1234567890123456789",
5009
+ # launch_type: "EC2",
5010
+ # load_balancers: [
5011
+ # ],
5012
+ # network_configuration: {
5013
+ # awsvpc_configuration: {
5014
+ # assign_public_ip: "DISABLED",
5015
+ # security_groups: [
5016
+ # "sg-1234431",
5017
+ # ],
5018
+ # subnets: [
5019
+ # "subnet-12344321",
5020
+ # ],
5021
+ # },
5022
+ # },
5023
+ # pending_count: 0,
5024
+ # running_count: 0,
5025
+ # scale: {
5026
+ # value: 0,
5027
+ # unit: "PERCENT",
5028
+ # },
5029
+ # service_registries: [
5030
+ # ],
5031
+ # stability_status: "STEADY_STATE",
5032
+ # stability_status_at: Time.parse(1557207740.014),
5033
+ # status: "ACTIVE",
5034
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
5035
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
5036
+ # updated_at: Time.parse(1557207740.014),
5037
+ # },
5038
+ # ],
5039
+ # }
5040
+ #
5041
+ # @example Request syntax with placeholder values
5042
+ #
5043
+ # resp = client.describe_task_sets({
5044
+ # cluster: "String", # required
5045
+ # service: "String", # required
4507
5046
  # task_sets: ["String"],
4508
5047
  # include: ["TAGS"], # accepts TAGS
4509
5048
  # })
@@ -4876,6 +5415,33 @@ module Aws::ECS
4876
5415
  # * {Types::ExecuteCommandResponse#session #session} => Types::Session
4877
5416
  # * {Types::ExecuteCommandResponse#task_arn #task_arn} => String
4878
5417
  #
5418
+ #
5419
+ # @example Example: To run a command remotely on a container in a task
5420
+ #
5421
+ # # This example runs an interactive /bin/sh command on a container MyContainer.
5422
+ #
5423
+ # resp = client.execute_command({
5424
+ # cluster: "MyCluster",
5425
+ # command: "/bin/sh",
5426
+ # container: "MyContainer",
5427
+ # interactive: true,
5428
+ # task: "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE",
5429
+ # })
5430
+ #
5431
+ # resp.to_h outputs the following:
5432
+ # {
5433
+ # cluster_arn: "arn:aws:ecs:us-east-1:123456789012:cluster/MyCluster",
5434
+ # container_arn: "arn:aws:ecs:us-east-1:123456789012:container/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE/43ba4b77-37f7-4a41-b923-69d4abEXAMPLE",
5435
+ # container_name: "MyContainer",
5436
+ # interactive: true,
5437
+ # session: {
5438
+ # session_id: "ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e",
5439
+ # stream_url: "wss://ssmmessages.us-east-1.amazonaws.com/v1/data-channel/ecs-execute-command-794nnsxobsg4p2hiur6gxu9a9e?role=publish_subscribe&cell-number=AAEAAfiZG4oybxqsYj3Zhm15s4J0W1k7d9nxVRenNO8Kl5nzAAAAAGdbWGl479/y/4IrTWPadUic3eBrMu3vmB7aPvI+s12lbpDc142y1KZy",
5440
+ # token_value: "AAEAAcVb7ww10N9aNUI5Cl7K7DbHjbD2Ed4Mw6uaGYIc+UFNAAAAAGdbWGmMDaPbGfDkzrVIhyKEsc4CPT2hcToPU6yzlddPm7rRZvYQtpaAgsvQdjbCAd9OB6ohtDYfqZI9gzMqLKegXq0E+KbDcGPnQVODFNHmQxnR1BvC6vNcHqh6HAJuKnQD7RSYx/J5bfYNHj4hCYHuN0HNcueSDOOTRB/MBt5DBDY7Djv2uzs9FD0N1kcsGljZkZWLuPTVKHHyrU3zh0awfrFFC3RXvgaUCBnloIIvZeq2CjTesxn9JJS+3N4I0DVxfkHdWWBbBY/5+wH82JVTJpqN3yOAt74u/W7TvYBd7Xu2lQbvtpuAnEszl++bFG2ZoV3dfnmBkSnfD/qV1FJcEskbxUHKgmqe0Paouv4zwrQKNfWYfcv9xkWskqcExh07IeaxZz1tp/WegZ5D76sD6xYeuH+35TMNXMoY7oudLgxIXsA7b39ElM7orGi4Jy3W2tLyuNIvDoI2JI6ww4tYdEjYZnld9rhKwV9rDHk1Z8wjHMs++3BIkHrFQRsv7BFUWlZ9lyqO9GWlXeBe7dQtOeFNahBuJUE9z/xLHJn1x13VkdROKqUVHTJrT4sXAnI5roWiGPoQPVY7aHVYJnwjSxrPRWJBsgyHiVN3dAWTmeVMjp0VbOiJaLlpBI+AUWs8OeVRzuJSZ+1alETpK7Ukag7ma9K4lxq/N7IxYo2ub0cG/bvX42zQqdJAW+9St9sQ1QMaMvkSq1tdbLoOuY0QjN7JrkuKLFQA5bhs+o1YwItzIp7bNrzQ9Z9IN51qoGL5HDXQzi1kNFfYtAryhwt6BgtQU9Z0k+RpE+V5G+V68E0MMUvb313f0nRBYj1u5VKonWb708wADPbUU+s7nvbWuD5oLp1Z6A4iqI9Om0R4RrFASj/7fVY7r3raNXcIYA=",
5441
+ # },
5442
+ # task_arn: "arn:aws:ecs:us-east-1:123456789012:task/MyCluster/d789e94343414c25b9f6bd59eEXAMPLE",
5443
+ # }
5444
+ #
4879
5445
  # @example Request syntax with placeholder values
4880
5446
  #
4881
5447
  # resp = client.execute_command({
@@ -5170,6 +5736,29 @@ module Aws::ECS
5170
5736
  #
5171
5737
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5172
5738
  #
5739
+ #
5740
+ # @example Example: To list container instances that have a specific attribute
5741
+ #
5742
+ # # This example lists attributes for a container instance with the attribute "stack" equal to the value "production".
5743
+ #
5744
+ # resp = client.list_attributes({
5745
+ # attribute_name: "stack",
5746
+ # attribute_value: "production",
5747
+ # cluster: "MyCluster",
5748
+ # target_type: "container-instance",
5749
+ # })
5750
+ #
5751
+ # resp.to_h outputs the following:
5752
+ # {
5753
+ # attributes: [
5754
+ # {
5755
+ # name: "stack",
5756
+ # value: "production",
5757
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
5758
+ # },
5759
+ # ],
5760
+ # }
5761
+ #
5173
5762
  # @example Request syntax with placeholder values
5174
5763
  #
5175
5764
  # resp = client.list_attributes({
@@ -5380,9 +5969,9 @@ module Aws::ECS
5380
5969
  # This operation lists all the service deployments that meet the
5381
5970
  # specified filter criteria.
5382
5971
  #
5383
- # A service deployment happens when you release a softwre update for the
5384
- # service. You route traffic from the running service revisions to the
5385
- # new service revison and control the number of running tasks.
5972
+ # A service deployment happens when you release a software update for
5973
+ # the service. You route traffic from the running service revisions to
5974
+ # the new service revison and control the number of running tasks.
5386
5975
  #
5387
5976
  # This API returns the values that you use for the request parameters in
5388
5977
  # [DescribeServiceRevisions][1].
@@ -5434,6 +6023,32 @@ module Aws::ECS
5434
6023
  # * {Types::ListServiceDeploymentsResponse#service_deployments #service_deployments} => Array&lt;Types::ServiceDeploymentBrief&gt;
5435
6024
  # * {Types::ListServiceDeploymentsResponse#next_token #next_token} => String
5436
6025
  #
6026
+ #
6027
+ # @example Example: To list service deployments that meet the specified criteria
6028
+ #
6029
+ # # This example lists all successful service deployments for the service "sd-example" in the cluster "example".
6030
+ #
6031
+ # resp = client.list_service_deployments({
6032
+ # cluster: "example",
6033
+ # service: "sd-example",
6034
+ # status: [
6035
+ # "SUCCESSFUL",
6036
+ # ],
6037
+ # })
6038
+ #
6039
+ # resp.to_h outputs the following:
6040
+ # {
6041
+ # service_deployments: [
6042
+ # {
6043
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/example",
6044
+ # service_arn: "arn:aws:ecs:us-west-2:123456789012:service/example/sd-example",
6045
+ # service_deployment_arn: "arn:aws:ecs:us-west-2:123456789012:service-deployment/example/sd-example/NCWGC2ZR-taawPAYrIaU5",
6046
+ # status: "SUCCESSFUL",
6047
+ # target_service_revision_arn: "arn:aws:ecs:us-west-2:123456789012:service-revision/example/sd-example/4980306466373577095",
6048
+ # },
6049
+ # ],
6050
+ # }
6051
+ #
5437
6052
  # @example Request syntax with placeholder values
5438
6053
  #
5439
6054
  # resp = client.list_service_deployments({
@@ -6484,6 +7099,33 @@ module Aws::ECS
6484
7099
  #
6485
7100
  # * {Types::PutAttributesResponse#attributes #attributes} => Array&lt;Types::Attribute&gt;
6486
7101
  #
7102
+ #
7103
+ # @example Example: To create or update an attribute on a resource
7104
+ #
7105
+ # # This example adds an attribute "stack" with the value "production" to a container instance.
7106
+ #
7107
+ # resp = client.put_attributes({
7108
+ # attributes: [
7109
+ # {
7110
+ # name: "stack",
7111
+ # value: "production",
7112
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
7113
+ # },
7114
+ # ],
7115
+ # cluster: "MyCluster",
7116
+ # })
7117
+ #
7118
+ # resp.to_h outputs the following:
7119
+ # {
7120
+ # attributes: [
7121
+ # {
7122
+ # name: "stack",
7123
+ # value: "production",
7124
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
7125
+ # },
7126
+ # ],
7127
+ # }
7128
+ #
6487
7129
  # @example Request syntax with placeholder values
6488
7130
  #
6489
7131
  # resp = client.put_attributes({
@@ -6592,6 +7234,260 @@ module Aws::ECS
6592
7234
  #
6593
7235
  # * {Types::PutClusterCapacityProvidersResponse#cluster #cluster} => Types::Cluster
6594
7236
  #
7237
+ #
7238
+ # @example Example: To add an existing capacity provider to a cluuster
7239
+ #
7240
+ # # This example adds an existing capacity provider "MyCapacityProvider2" to a cluster that already has the capacity
7241
+ # # provider "MyCapacityProvider1" associated with it. Both "MyCapacityProvider2" and "MyCapacityProvider1" need to be
7242
+ # # specified.
7243
+ #
7244
+ # resp = client.put_cluster_capacity_providers({
7245
+ # capacity_providers: [
7246
+ # "MyCapacityProvider1",
7247
+ # "MyCapacityProvider2",
7248
+ # ],
7249
+ # cluster: "MyCluster",
7250
+ # default_capacity_provider_strategy: [
7251
+ # {
7252
+ # capacity_provider: "MyCapacityProvider1",
7253
+ # weight: 1,
7254
+ # },
7255
+ # {
7256
+ # capacity_provider: "MyCapacityProvider2",
7257
+ # weight: 1,
7258
+ # },
7259
+ # ],
7260
+ # })
7261
+ #
7262
+ # resp.to_h outputs the following:
7263
+ # {
7264
+ # cluster: {
7265
+ # active_services_count: 0,
7266
+ # attachments: [
7267
+ # {
7268
+ # type: "as_policy",
7269
+ # details: [
7270
+ # {
7271
+ # name: "capacityProviderName",
7272
+ # value: "MyCapacityProvider1",
7273
+ # },
7274
+ # {
7275
+ # name: "scalingPolicyName",
7276
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7277
+ # },
7278
+ # ],
7279
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7280
+ # status: "ACTIVE",
7281
+ # },
7282
+ # {
7283
+ # type: "as_policy",
7284
+ # details: [
7285
+ # {
7286
+ # name: "capacityProviderName",
7287
+ # value: "MyCapacityProvider2",
7288
+ # },
7289
+ # {
7290
+ # name: "scalingPolicyName",
7291
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7292
+ # },
7293
+ # ],
7294
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7295
+ # status: "ACTIVE",
7296
+ # },
7297
+ # ],
7298
+ # attachments_status: "UPDATE_IN_PROGRESS",
7299
+ # capacity_providers: [
7300
+ # "MyCapacityProvider1",
7301
+ # "MyCapacityProvider2",
7302
+ # ],
7303
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7304
+ # cluster_name: "MyCluster",
7305
+ # default_capacity_provider_strategy: [
7306
+ # {
7307
+ # base: 0,
7308
+ # capacity_provider: "MyCapacityProvider1",
7309
+ # weight: 1,
7310
+ # },
7311
+ # {
7312
+ # base: 0,
7313
+ # capacity_provider: "MyCapacityProvider2",
7314
+ # weight: 1,
7315
+ # },
7316
+ # ],
7317
+ # pending_tasks_count: 0,
7318
+ # registered_container_instances_count: 0,
7319
+ # running_tasks_count: 0,
7320
+ # settings: [
7321
+ # {
7322
+ # name: "containerInsights",
7323
+ # value: "enabled",
7324
+ # },
7325
+ # ],
7326
+ # statistics: [
7327
+ # ],
7328
+ # status: "ACTIVE",
7329
+ # tags: [
7330
+ # ],
7331
+ # },
7332
+ # }
7333
+ #
7334
+ # @example Example: To remove a capacity provider from a cluster
7335
+ #
7336
+ # # This example removes a capacity provider "MyCapacityProvider2" from a cluster that has both "MyCapacityProvider2" and
7337
+ # # "MyCapacityProvider1" associated with it. Only "MyCapacityProvider1" needs to be specified in this scenario.
7338
+ #
7339
+ # resp = client.put_cluster_capacity_providers({
7340
+ # capacity_providers: [
7341
+ # "MyCapacityProvider1",
7342
+ # ],
7343
+ # cluster: "MyCluster",
7344
+ # default_capacity_provider_strategy: [
7345
+ # {
7346
+ # base: 0,
7347
+ # capacity_provider: "MyCapacityProvider1",
7348
+ # weight: 1,
7349
+ # },
7350
+ # ],
7351
+ # })
7352
+ #
7353
+ # resp.to_h outputs the following:
7354
+ # {
7355
+ # cluster: {
7356
+ # active_services_count: 0,
7357
+ # attachments: [
7358
+ # {
7359
+ # type: "as_policy",
7360
+ # details: [
7361
+ # {
7362
+ # name: "capacityProviderName",
7363
+ # value: "MyCapacityProvider1",
7364
+ # },
7365
+ # {
7366
+ # name: "scalingPolicyName",
7367
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7368
+ # },
7369
+ # ],
7370
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7371
+ # status: "ACTIVE",
7372
+ # },
7373
+ # {
7374
+ # type: "as_policy",
7375
+ # details: [
7376
+ # {
7377
+ # name: "capacityProviderName",
7378
+ # value: "MyCapacityProvider2",
7379
+ # },
7380
+ # {
7381
+ # name: "scalingPolicyName",
7382
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7383
+ # },
7384
+ # ],
7385
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7386
+ # status: "DELETING",
7387
+ # },
7388
+ # ],
7389
+ # attachments_status: "UPDATE_IN_PROGRESS",
7390
+ # capacity_providers: [
7391
+ # "MyCapacityProvider1",
7392
+ # ],
7393
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7394
+ # cluster_name: "MyCluster",
7395
+ # default_capacity_provider_strategy: [
7396
+ # {
7397
+ # base: 0,
7398
+ # capacity_provider: "MyCapacityProvider1",
7399
+ # weight: 1,
7400
+ # },
7401
+ # ],
7402
+ # pending_tasks_count: 0,
7403
+ # registered_container_instances_count: 0,
7404
+ # running_tasks_count: 0,
7405
+ # settings: [
7406
+ # {
7407
+ # name: "containerInsights",
7408
+ # value: "enabled",
7409
+ # },
7410
+ # ],
7411
+ # statistics: [
7412
+ # ],
7413
+ # status: "ACTIVE",
7414
+ # tags: [
7415
+ # ],
7416
+ # },
7417
+ # }
7418
+ #
7419
+ # @example Example: To remove all capacity providers from a cluster
7420
+ #
7421
+ # # This example removes all capacity providers associated with a cluster.
7422
+ #
7423
+ # resp = client.put_cluster_capacity_providers({
7424
+ # capacity_providers: [
7425
+ # ],
7426
+ # cluster: "MyCluster",
7427
+ # default_capacity_provider_strategy: [
7428
+ # ],
7429
+ # })
7430
+ #
7431
+ # resp.to_h outputs the following:
7432
+ # {
7433
+ # cluster: {
7434
+ # active_services_count: 0,
7435
+ # attachments: [
7436
+ # {
7437
+ # type: "as_policy",
7438
+ # details: [
7439
+ # {
7440
+ # name: "capacityProviderName",
7441
+ # value: "MyCapacityProvider1",
7442
+ # },
7443
+ # {
7444
+ # name: "scalingPolicyName",
7445
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7446
+ # },
7447
+ # ],
7448
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7449
+ # status: "DELETING",
7450
+ # },
7451
+ # {
7452
+ # type: "as_policy",
7453
+ # details: [
7454
+ # {
7455
+ # name: "capacityProviderName",
7456
+ # value: "MyCapacityProvider2",
7457
+ # },
7458
+ # {
7459
+ # name: "scalingPolicyName",
7460
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7461
+ # },
7462
+ # ],
7463
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7464
+ # status: "DELETING",
7465
+ # },
7466
+ # ],
7467
+ # attachments_status: "UPDATE_IN_PROGRESS",
7468
+ # capacity_providers: [
7469
+ # ],
7470
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7471
+ # cluster_name: "MyCluster",
7472
+ # default_capacity_provider_strategy: [
7473
+ # ],
7474
+ # pending_tasks_count: 0,
7475
+ # registered_container_instances_count: 0,
7476
+ # running_tasks_count: 0,
7477
+ # settings: [
7478
+ # {
7479
+ # name: "containerInsights",
7480
+ # value: "enabled",
7481
+ # },
7482
+ # ],
7483
+ # statistics: [
7484
+ # ],
7485
+ # status: "ACTIVE",
7486
+ # tags: [
7487
+ # ],
7488
+ # },
7489
+ # }
7490
+ #
6595
7491
  # @example Request syntax with placeholder values
6596
7492
  #
6597
7493
  # resp = client.put_cluster_capacity_providers({
@@ -6972,10 +7868,10 @@ module Aws::ECS
6972
7868
  #
6973
7869
  # </note>
6974
7870
  #
6975
- # If you're using the EC2 launch type, this field is optional.
6976
- # Supported values are between `128` CPU units (`0.125` vCPUs) and
6977
- # `10240` CPU units (`10` vCPUs). If you do not specify a value, the
6978
- # parameter is ignored.
7871
+ # If you're using the EC2 launch type or external launch type, this
7872
+ # field is optional. Supported values are between `128` CPU units
7873
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
7874
+ # specify a value, the parameter is ignored.
6979
7875
  #
6980
7876
  # If you're using the Fargate launch type, this field is required and
6981
7877
  # you must use one of the following values, which determines your range
@@ -8427,37 +9323,93 @@ module Aws::ECS
8427
9323
  # * {Types::StartTaskResponse#tasks #tasks} => Array&lt;Types::Task&gt;
8428
9324
  # * {Types::StartTaskResponse#failures #failures} => Array&lt;Types::Failure&gt;
8429
9325
  #
8430
- # @example Request syntax with placeholder values
9326
+ #
9327
+ # @example Example: To start a new task
9328
+ #
9329
+ # # This example starts a new task in the cluster "MyCluster" on the specified container instance using the latest revision
9330
+ # # of the "hello-world" task definition.
8431
9331
  #
8432
9332
  # resp = client.start_task({
8433
- # cluster: "String",
8434
- # container_instances: ["String"], # required
8435
- # enable_ecs_managed_tags: false,
8436
- # enable_execute_command: false,
8437
- # group: "String",
8438
- # network_configuration: {
8439
- # awsvpc_configuration: {
8440
- # subnets: ["String"], # required
8441
- # security_groups: ["String"],
8442
- # assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
8443
- # },
8444
- # },
8445
- # overrides: {
8446
- # container_overrides: [
8447
- # {
8448
- # name: "String",
8449
- # command: ["String"],
8450
- # environment: [
8451
- # {
8452
- # name: "String",
8453
- # value: "String",
8454
- # },
8455
- # ],
8456
- # environment_files: [
8457
- # {
8458
- # value: "String", # required
8459
- # type: "s3", # required, accepts s3
8460
- # },
9333
+ # cluster: "MyCluster",
9334
+ # container_instances: [
9335
+ # "4c543eed-f83f-47da-b1d8-3d23f1da4c64",
9336
+ # ],
9337
+ # task_definition: "hello-world",
9338
+ # })
9339
+ #
9340
+ # resp.to_h outputs the following:
9341
+ # {
9342
+ # failures: [
9343
+ # ],
9344
+ # tasks: [
9345
+ # {
9346
+ # version: 1,
9347
+ # cluster_arn: "arn:aws:ecs:us-east-1:012345678910:cluster/default",
9348
+ # container_instance_arn: "arn:aws:ecs:us-east-1:012345678910:container-instance/default/4c543eed-f83f-47da-b1d8-3d23f1da4c64",
9349
+ # containers: [
9350
+ # {
9351
+ # name: "wordpress",
9352
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/e76594d4-27e1-4c74-98b5-46a6435eb769",
9353
+ # last_status: "PENDING",
9354
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9355
+ # },
9356
+ # {
9357
+ # name: "mysql",
9358
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/default/b19106ea-4fa8-4f1d-9767-96922c82b070",
9359
+ # last_status: "PENDING",
9360
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9361
+ # },
9362
+ # ],
9363
+ # created_at: Time.parse(1479765460.842),
9364
+ # desired_status: "RUNNING",
9365
+ # last_status: "PENDING",
9366
+ # overrides: {
9367
+ # container_overrides: [
9368
+ # {
9369
+ # name: "wordpress",
9370
+ # },
9371
+ # {
9372
+ # name: "mysql",
9373
+ # },
9374
+ # ],
9375
+ # },
9376
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9377
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6",
9378
+ # },
9379
+ # ],
9380
+ # }
9381
+ #
9382
+ # @example Request syntax with placeholder values
9383
+ #
9384
+ # resp = client.start_task({
9385
+ # cluster: "String",
9386
+ # container_instances: ["String"], # required
9387
+ # enable_ecs_managed_tags: false,
9388
+ # enable_execute_command: false,
9389
+ # group: "String",
9390
+ # network_configuration: {
9391
+ # awsvpc_configuration: {
9392
+ # subnets: ["String"], # required
9393
+ # security_groups: ["String"],
9394
+ # assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
9395
+ # },
9396
+ # },
9397
+ # overrides: {
9398
+ # container_overrides: [
9399
+ # {
9400
+ # name: "String",
9401
+ # command: ["String"],
9402
+ # environment: [
9403
+ # {
9404
+ # name: "String",
9405
+ # value: "String",
9406
+ # },
9407
+ # ],
9408
+ # environment_files: [
9409
+ # {
9410
+ # value: "String", # required
9411
+ # type: "s3", # required, accepts s3
9412
+ # },
8461
9413
  # ],
8462
9414
  # cpu: 1,
8463
9415
  # memory: 1,
@@ -8683,7 +9635,7 @@ module Aws::ECS
8683
9635
  # cluster is assumed.
8684
9636
  #
8685
9637
  # @option params [required, String] :task
8686
- # The task ID of the task to stop.
9638
+ # Thefull Amazon Resource Name (ARN) of the task.
8687
9639
  #
8688
9640
  # @option params [String] :reason
8689
9641
  # An optional message specified when a task is stopped. For example, if
@@ -8699,6 +9651,68 @@ module Aws::ECS
8699
9651
  #
8700
9652
  # * {Types::StopTaskResponse#task #task} => Types::Task
8701
9653
  #
9654
+ #
9655
+ # @example Example: To stop a task
9656
+ #
9657
+ # # This example stops a task with ID "1dc5c17a-422b-4dc4-b493-371970c6c4d6" in cluster "MyCluster".
9658
+ #
9659
+ # resp = client.stop_task({
9660
+ # cluster: "MyCluster",
9661
+ # reason: "testing stop task.",
9662
+ # task: "1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9663
+ # })
9664
+ #
9665
+ # resp.to_h outputs the following:
9666
+ # {
9667
+ # task: {
9668
+ # version: 0,
9669
+ # cluster_arn: "arn:aws:ecs:us-east-1:012345678910:cluster/MyCluster",
9670
+ # container_instance_arn: "arn:aws:ecs:us-east-1:012345678910:container-instance/MyCluster/5991d8da-1d59-49d2-a31f-4230f9e73140",
9671
+ # containers: [
9672
+ # {
9673
+ # name: "simple-app",
9674
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/4df26bb4-f057-467b-a079-961675296e64",
9675
+ # last_status: "RUNNING",
9676
+ # network_bindings: [
9677
+ # {
9678
+ # bind_ip: "0.0.0.0",
9679
+ # container_port: 80,
9680
+ # host_port: 32774,
9681
+ # protocol: "tcp",
9682
+ # },
9683
+ # ],
9684
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9685
+ # },
9686
+ # {
9687
+ # name: "busybox",
9688
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/e09064f7-7361-4c87-8ab9-8d073bbdbcb9",
9689
+ # last_status: "RUNNING",
9690
+ # network_bindings: [
9691
+ # ],
9692
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9693
+ # },
9694
+ # ],
9695
+ # created_at: Time.parse(1476822811.295),
9696
+ # desired_status: "STOPPED",
9697
+ # last_status: "RUNNING",
9698
+ # overrides: {
9699
+ # container_overrides: [
9700
+ # {
9701
+ # name: "simple-app",
9702
+ # },
9703
+ # {
9704
+ # name: "busybox",
9705
+ # },
9706
+ # ],
9707
+ # },
9708
+ # started_at: Time.parse(1476822833.998),
9709
+ # started_by: "ecs-svc/9223370560032507596",
9710
+ # stopped_reason: "testing stop task.",
9711
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9712
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-dynamic-ports:1",
9713
+ # },
9714
+ # }
9715
+ #
8702
9716
  # @example Request syntax with placeholder values
8703
9717
  #
8704
9718
  # resp = client.stop_task({
@@ -9051,6 +10065,25 @@ module Aws::ECS
9051
10065
  # Currently, the supported resources are Amazon ECS capacity providers,
9052
10066
  # tasks, services, task definitions, clusters, and container instances.
9053
10067
  #
10068
+ # In order to tag a service that has the following ARN format, you need
10069
+ # to migrate the service to the long ARN. For more information, see
10070
+ # [Migrate an Amazon ECS short service ARN to a long ARN][1] in the
10071
+ # *Amazon Elastic Container Service Developer Guide*.
10072
+ #
10073
+ # `arn:aws:ecs:region:aws_account_id:service/service-name`
10074
+ #
10075
+ # After the migration is complete, the service has the long ARN format,
10076
+ # as shown below. Use this ARN to tag the service.
10077
+ #
10078
+ # `arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name`
10079
+ #
10080
+ # If you try to tag a service with a short ARN, you receive an
10081
+ # `InvalidParameterException` error.
10082
+ #
10083
+ #
10084
+ #
10085
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-arn-migration.html
10086
+ #
9054
10087
  # @option params [required, Array<Types::Tag>] :tags
9055
10088
  # The tags to add to the resource. A tag is an array of key-value pairs.
9056
10089
  #
@@ -9178,6 +10211,46 @@ module Aws::ECS
9178
10211
  #
9179
10212
  # * {Types::UpdateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
9180
10213
  #
10214
+ #
10215
+ # @example Example: To update a capacity provider's parameters
10216
+ #
10217
+ # # This example updates the targetCapacity and instanceWarmupPeriod parameters for the capacity provider MyCapacityProvider
10218
+ # # to 90 and 150 respectively.
10219
+ #
10220
+ # resp = client.update_capacity_provider({
10221
+ # name: "MyCapacityProvider",
10222
+ # auto_scaling_group_provider: {
10223
+ # managed_scaling: {
10224
+ # instance_warmup_period: 150,
10225
+ # status: "ENABLED",
10226
+ # target_capacity: 90,
10227
+ # },
10228
+ # },
10229
+ # })
10230
+ #
10231
+ # resp.to_h outputs the following:
10232
+ # {
10233
+ # capacity_provider: {
10234
+ # name: "MyCapacityProvider",
10235
+ # auto_scaling_group_provider: {
10236
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
10237
+ # managed_scaling: {
10238
+ # instance_warmup_period: 150,
10239
+ # maximum_scaling_step_size: 10000,
10240
+ # minimum_scaling_step_size: 1,
10241
+ # status: "ENABLED",
10242
+ # target_capacity: 90,
10243
+ # },
10244
+ # managed_termination_protection: "ENABLED",
10245
+ # },
10246
+ # capacity_provider_arn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider",
10247
+ # status: "ACTIVE",
10248
+ # tags: [
10249
+ # ],
10250
+ # update_status: "UPDATE_COMPLETE",
10251
+ # },
10252
+ # }
10253
+ #
9181
10254
  # @example Request syntax with placeholder values
9182
10255
  #
9183
10256
  # resp = client.update_capacity_provider({
@@ -9260,6 +10333,198 @@ module Aws::ECS
9260
10333
  #
9261
10334
  # * {Types::UpdateClusterResponse#cluster #cluster} => Types::Cluster
9262
10335
  #
10336
+ #
10337
+ # @example Example: To update a cluster's observability settings.
10338
+ #
10339
+ # # This example turns on enhanced containerInsights in an existing cluster.
10340
+ #
10341
+ # resp = client.update_cluster({
10342
+ # cluster: "ECS-project-update-cluster",
10343
+ # settings: [
10344
+ # {
10345
+ # name: "containerInsights",
10346
+ # value: "enhanced",
10347
+ # },
10348
+ # ],
10349
+ # })
10350
+ #
10351
+ # resp.to_h outputs the following:
10352
+ # {
10353
+ # cluster: {
10354
+ # active_services_count: 0,
10355
+ # attachments: [
10356
+ # {
10357
+ # type: "as_policy",
10358
+ # details: [
10359
+ # {
10360
+ # name: "capacityProviderName",
10361
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10362
+ # },
10363
+ # {
10364
+ # name: "scalingPolicyName",
10365
+ # value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93",
10366
+ # },
10367
+ # ],
10368
+ # id: "069d002b-7634-42e4-b1d4-544f4c8f6380",
10369
+ # status: "CREATED",
10370
+ # },
10371
+ # {
10372
+ # type: "managed_draining",
10373
+ # details: [
10374
+ # {
10375
+ # name: "capacityProviderName",
10376
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10377
+ # },
10378
+ # {
10379
+ # name: "autoScalingLifecycleHookName",
10380
+ # value: "ecs-managed-draining-termination-hook",
10381
+ # },
10382
+ # ],
10383
+ # id: "08b5b6ca-45e9-4209-a65d-e962a27c490a",
10384
+ # status: "CREATED",
10385
+ # },
10386
+ # {
10387
+ # type: "sc",
10388
+ # details: [
10389
+ # ],
10390
+ # id: "45d0b36f-8cff-46b6-9380-1288744802ab",
10391
+ # status: "ATTACHED",
10392
+ # },
10393
+ # ],
10394
+ # attachments_status: "UPDATE_COMPLETE",
10395
+ # capacity_providers: [
10396
+ # "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10397
+ # ],
10398
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster",
10399
+ # cluster_name: "ECS-project-update-cluster",
10400
+ # default_capacity_provider_strategy: [
10401
+ # {
10402
+ # base: 0,
10403
+ # capacity_provider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10404
+ # weight: 1,
10405
+ # },
10406
+ # ],
10407
+ # pending_tasks_count: 0,
10408
+ # registered_container_instances_count: 0,
10409
+ # running_tasks_count: 0,
10410
+ # service_connect_defaults: {
10411
+ # namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-igwrsylmy3kwvcdx",
10412
+ # },
10413
+ # settings: [
10414
+ # {
10415
+ # name: "containerInsights",
10416
+ # value: "enhanced",
10417
+ # },
10418
+ # ],
10419
+ # statistics: [
10420
+ # ],
10421
+ # status: "ACTIVE",
10422
+ # tags: [
10423
+ # ],
10424
+ # },
10425
+ # }
10426
+ #
10427
+ # @example Example: To update a cluster's Service Connect defaults.
10428
+ #
10429
+ # # This example sets a default Service Connect namespace.
10430
+ #
10431
+ # resp = client.update_cluster({
10432
+ # cluster: "ECS-project-update-cluster",
10433
+ # service_connect_defaults: {
10434
+ # namespace: "test",
10435
+ # },
10436
+ # })
10437
+ #
10438
+ # resp.to_h outputs the following:
10439
+ # {
10440
+ # cluster: {
10441
+ # active_services_count: 0,
10442
+ # attachments: [
10443
+ # {
10444
+ # type: "as_policy",
10445
+ # details: [
10446
+ # {
10447
+ # name: "capacityProviderName",
10448
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10449
+ # },
10450
+ # {
10451
+ # name: "scalingPolicyName",
10452
+ # value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93",
10453
+ # },
10454
+ # ],
10455
+ # id: "069d002b-7634-42e4-b1d4-544f4c8f6380",
10456
+ # status: "CREATED",
10457
+ # },
10458
+ # {
10459
+ # type: "managed_draining",
10460
+ # details: [
10461
+ # {
10462
+ # name: "capacityProviderName",
10463
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10464
+ # },
10465
+ # {
10466
+ # name: "autoScalingLifecycleHookName",
10467
+ # value: "ecs-managed-draining-termination-hook",
10468
+ # },
10469
+ # ],
10470
+ # id: "08b5b6ca-45e9-4209-a65d-e962a27c490a",
10471
+ # status: "CREATED",
10472
+ # },
10473
+ # {
10474
+ # type: "sc",
10475
+ # details: [
10476
+ # ],
10477
+ # id: "45d0b36f-8cff-46b6-9380-1288744802ab",
10478
+ # status: "DELETED",
10479
+ # },
10480
+ # {
10481
+ # type: "sc",
10482
+ # details: [
10483
+ # ],
10484
+ # id: "3e6890c3-609c-4832-91de-d6ca891b3ef1",
10485
+ # status: "ATTACHED",
10486
+ # },
10487
+ # {
10488
+ # type: "sc",
10489
+ # details: [
10490
+ # ],
10491
+ # id: "961b8ec1-c2f1-4070-8495-e669b7668e90",
10492
+ # status: "DELETED",
10493
+ # },
10494
+ # ],
10495
+ # attachments_status: "UPDATE_COMPLETE",
10496
+ # capacity_providers: [
10497
+ # "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10498
+ # ],
10499
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster",
10500
+ # cluster_name: "ECS-project-update-cluster",
10501
+ # default_capacity_provider_strategy: [
10502
+ # {
10503
+ # base: 0,
10504
+ # capacity_provider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10505
+ # weight: 1,
10506
+ # },
10507
+ # ],
10508
+ # pending_tasks_count: 0,
10509
+ # registered_container_instances_count: 0,
10510
+ # running_tasks_count: 0,
10511
+ # service_connect_defaults: {
10512
+ # namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-dtjmxqpfi46ht7dr",
10513
+ # },
10514
+ # settings: [
10515
+ # {
10516
+ # name: "containerInsights",
10517
+ # value: "enhanced",
10518
+ # },
10519
+ # ],
10520
+ # statistics: [
10521
+ # ],
10522
+ # status: "ACTIVE",
10523
+ # tags: [
10524
+ # ],
10525
+ # },
10526
+ # }
10527
+ #
9263
10528
  # @example Request syntax with placeholder values
9264
10529
  #
9265
10530
  # resp = client.update_cluster({
@@ -9371,6 +10636,44 @@ module Aws::ECS
9371
10636
  #
9372
10637
  # * {Types::UpdateClusterSettingsResponse#cluster #cluster} => Types::Cluster
9373
10638
  #
10639
+ #
10640
+ # @example Example: To update a cluster's settings
10641
+ #
10642
+ # # This example enables CloudWatch Container Insights for the default cluster.
10643
+ #
10644
+ # resp = client.update_cluster_settings({
10645
+ # cluster: "default",
10646
+ # settings: [
10647
+ # {
10648
+ # name: "containerInsights",
10649
+ # value: "enabled",
10650
+ # },
10651
+ # ],
10652
+ # })
10653
+ #
10654
+ # resp.to_h outputs the following:
10655
+ # {
10656
+ # cluster: {
10657
+ # active_services_count: 0,
10658
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
10659
+ # cluster_name: "default",
10660
+ # pending_tasks_count: 0,
10661
+ # registered_container_instances_count: 0,
10662
+ # running_tasks_count: 0,
10663
+ # settings: [
10664
+ # {
10665
+ # name: "containerInsights",
10666
+ # value: "enabled",
10667
+ # },
10668
+ # ],
10669
+ # statistics: [
10670
+ # ],
10671
+ # status: "ACTIVE",
10672
+ # tags: [
10673
+ # ],
10674
+ # },
10675
+ # }
10676
+ #
9374
10677
  # @example Request syntax with placeholder values
9375
10678
  #
9376
10679
  # resp = client.update_cluster_settings({
@@ -9483,6 +10786,29 @@ module Aws::ECS
9483
10786
  #
9484
10787
  # * {Types::UpdateContainerAgentResponse#container_instance #container_instance} => Types::ContainerInstance
9485
10788
  #
10789
+ #
10790
+ # @example Example: To update the container agent version on a container instance
10791
+ #
10792
+ # # This example updates the container agent version on the specified container instance in cluster MyCluster.
10793
+ #
10794
+ # resp = client.update_container_agent({
10795
+ # cluster: "MyCluster",
10796
+ # container_instance: "53ac7152-dcd1-4102-81f5-208962864132",
10797
+ # })
10798
+ #
10799
+ # resp.to_h outputs the following:
10800
+ # {
10801
+ # container_instance: {
10802
+ # agent_connected: true,
10803
+ # agent_update_status: "PENDING",
10804
+ # version_info: {
10805
+ # agent_hash: "4023248",
10806
+ # agent_version: "1.0.0",
10807
+ # docker_version: "DockerVersion: 1.5.0",
10808
+ # },
10809
+ # },
10810
+ # }
10811
+ #
9486
10812
  # @example Request syntax with placeholder values
9487
10813
  #
9488
10814
  # resp = client.update_container_agent({
@@ -9635,6 +10961,179 @@ module Aws::ECS
9635
10961
  # * {Types::UpdateContainerInstancesStateResponse#container_instances #container_instances} => Array&lt;Types::ContainerInstance&gt;
9636
10962
  # * {Types::UpdateContainerInstancesStateResponse#failures #failures} => Array&lt;Types::Failure&gt;
9637
10963
  #
10964
+ #
10965
+ # @example Example: To update the state of a container instance
10966
+ #
10967
+ # # This example updates the state of the specified container instance in the default cluster to DRAINING.
10968
+ #
10969
+ # resp = client.update_container_instances_state({
10970
+ # cluster: "default",
10971
+ # container_instances: [
10972
+ # "1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
10973
+ # ],
10974
+ # status: "DRAINING",
10975
+ # })
10976
+ #
10977
+ # resp.to_h outputs the following:
10978
+ # {
10979
+ # container_instances: [
10980
+ # {
10981
+ # version: 30,
10982
+ # agent_connected: true,
10983
+ # attributes: [
10984
+ # {
10985
+ # name: "ecs.availability-zone",
10986
+ # value: "us-west-2b",
10987
+ # },
10988
+ # {
10989
+ # name: "com.amazonaws.ecs.capability.logging-driver.syslog",
10990
+ # },
10991
+ # {
10992
+ # name: "ecs.instance-type",
10993
+ # value: "c4.xlarge",
10994
+ # },
10995
+ # {
10996
+ # name: "ecs.ami-id",
10997
+ # value: "ami-a2ca61c2",
10998
+ # },
10999
+ # {
11000
+ # name: "com.amazonaws.ecs.capability.task-iam-role-network-host",
11001
+ # },
11002
+ # {
11003
+ # name: "com.amazonaws.ecs.capability.logging-driver.awslogs",
11004
+ # },
11005
+ # {
11006
+ # name: "com.amazonaws.ecs.capability.logging-driver.json-file",
11007
+ # },
11008
+ # {
11009
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.17",
11010
+ # },
11011
+ # {
11012
+ # name: "com.amazonaws.ecs.capability.privileged-container",
11013
+ # },
11014
+ # {
11015
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.18",
11016
+ # },
11017
+ # {
11018
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.19",
11019
+ # },
11020
+ # {
11021
+ # name: "com.amazonaws.ecs.capability.ecr-auth",
11022
+ # },
11023
+ # {
11024
+ # name: "ecs.os-type",
11025
+ # value: "linux",
11026
+ # },
11027
+ # {
11028
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.20",
11029
+ # },
11030
+ # {
11031
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.21",
11032
+ # },
11033
+ # {
11034
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.22",
11035
+ # },
11036
+ # {
11037
+ # name: "com.amazonaws.ecs.capability.task-iam-role",
11038
+ # },
11039
+ # {
11040
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.23",
11041
+ # },
11042
+ # ],
11043
+ # container_instance_arn: "arn:aws:ecs:us-west-2:012345678910:container-instance/default/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
11044
+ # ec2_instance_id: "i-05d99c76955727ec6",
11045
+ # pending_tasks_count: 0,
11046
+ # registered_resources: [
11047
+ # {
11048
+ # name: "CPU",
11049
+ # type: "INTEGER",
11050
+ # double_value: 0,
11051
+ # integer_value: 4096,
11052
+ # long_value: 0,
11053
+ # },
11054
+ # {
11055
+ # name: "MEMORY",
11056
+ # type: "INTEGER",
11057
+ # double_value: 0,
11058
+ # integer_value: 7482,
11059
+ # long_value: 0,
11060
+ # },
11061
+ # {
11062
+ # name: "PORTS",
11063
+ # type: "STRINGSET",
11064
+ # double_value: 0,
11065
+ # integer_value: 0,
11066
+ # long_value: 0,
11067
+ # string_set_value: [
11068
+ # "22",
11069
+ # "2376",
11070
+ # "2375",
11071
+ # "51678",
11072
+ # "51679",
11073
+ # ],
11074
+ # },
11075
+ # {
11076
+ # name: "PORTS_UDP",
11077
+ # type: "STRINGSET",
11078
+ # double_value: 0,
11079
+ # integer_value: 0,
11080
+ # long_value: 0,
11081
+ # string_set_value: [
11082
+ # ],
11083
+ # },
11084
+ # ],
11085
+ # remaining_resources: [
11086
+ # {
11087
+ # name: "CPU",
11088
+ # type: "INTEGER",
11089
+ # double_value: 0,
11090
+ # integer_value: 4096,
11091
+ # long_value: 0,
11092
+ # },
11093
+ # {
11094
+ # name: "MEMORY",
11095
+ # type: "INTEGER",
11096
+ # double_value: 0,
11097
+ # integer_value: 7482,
11098
+ # long_value: 0,
11099
+ # },
11100
+ # {
11101
+ # name: "PORTS",
11102
+ # type: "STRINGSET",
11103
+ # double_value: 0,
11104
+ # integer_value: 0,
11105
+ # long_value: 0,
11106
+ # string_set_value: [
11107
+ # "22",
11108
+ # "2376",
11109
+ # "2375",
11110
+ # "51678",
11111
+ # "51679",
11112
+ # ],
11113
+ # },
11114
+ # {
11115
+ # name: "PORTS_UDP",
11116
+ # type: "STRINGSET",
11117
+ # double_value: 0,
11118
+ # integer_value: 0,
11119
+ # long_value: 0,
11120
+ # string_set_value: [
11121
+ # ],
11122
+ # },
11123
+ # ],
11124
+ # running_tasks_count: 0,
11125
+ # status: "DRAINING",
11126
+ # version_info: {
11127
+ # agent_hash: "efe53c6",
11128
+ # agent_version: "1.13.1",
11129
+ # docker_version: "DockerVersion: 1.11.2",
11130
+ # },
11131
+ # },
11132
+ # ],
11133
+ # failures: [
11134
+ # ],
11135
+ # }
11136
+ #
9638
11137
  # @example Request syntax with placeholder values
9639
11138
  #
9640
11139
  # resp = client.update_container_instances_state({
@@ -9931,8 +11430,8 @@ module Aws::ECS
9931
11430
  # service.
9932
11431
  #
9933
11432
  # For more information, see [Balancing an Amazon ECS service across
9934
- # Availability Zones][1] in the *Amazon Elastic Container Service
9935
- # Developer Guide*.
11433
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
11434
+ # Developer Guide</i> </i>.
9936
11435
  #
9937
11436
  #
9938
11437
  #
@@ -10500,6 +11999,54 @@ module Aws::ECS
10500
11999
  #
10501
12000
  # * {Types::UpdateServicePrimaryTaskSetResponse#task_set #task_set} => Types::TaskSet
10502
12001
  #
12002
+ #
12003
+ # @example Example: To update the primary task set for a service
12004
+ #
12005
+ # # This example updates the primary task set for a service MyService that uses the EXTERNAL deployment controller type.
12006
+ #
12007
+ # resp = client.update_service_primary_task_set({
12008
+ # cluster: "MyCluster",
12009
+ # primary_task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12010
+ # service: "MyService",
12011
+ # })
12012
+ #
12013
+ # resp.to_h outputs the following:
12014
+ # {
12015
+ # task_set: {
12016
+ # computed_desired_count: 1,
12017
+ # created_at: Time.parse(1557128360.711),
12018
+ # id: "ecs-svc/1234567890123456789",
12019
+ # launch_type: "EC2",
12020
+ # load_balancers: [
12021
+ # ],
12022
+ # network_configuration: {
12023
+ # awsvpc_configuration: {
12024
+ # assign_public_ip: "DISABLED",
12025
+ # security_groups: [
12026
+ # "sg-12344312",
12027
+ # ],
12028
+ # subnets: [
12029
+ # "subnet-12344321",
12030
+ # ],
12031
+ # },
12032
+ # },
12033
+ # pending_count: 0,
12034
+ # running_count: 0,
12035
+ # scale: {
12036
+ # value: 50,
12037
+ # unit: "PERCENT",
12038
+ # },
12039
+ # service_registries: [
12040
+ # ],
12041
+ # stability_status: "STABILIZING",
12042
+ # stability_status_at: Time.parse(1557129279.914),
12043
+ # status: "PRIMARY",
12044
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
12045
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12046
+ # updated_at: Time.parse(1557129412.653),
12047
+ # },
12048
+ # }
12049
+ #
10503
12050
  # @example Request syntax with placeholder values
10504
12051
  #
10505
12052
  # resp = client.update_service_primary_task_set({
@@ -10764,6 +12311,58 @@ module Aws::ECS
10764
12311
  #
10765
12312
  # * {Types::UpdateTaskSetResponse#task_set #task_set} => Types::TaskSet
10766
12313
  #
12314
+ #
12315
+ # @example Example: To update a task set
12316
+ #
12317
+ # # This example updates the task set to adjust the scale.
12318
+ #
12319
+ # resp = client.update_task_set({
12320
+ # cluster: "MyCluster",
12321
+ # scale: {
12322
+ # value: 50,
12323
+ # unit: "PERCENT",
12324
+ # },
12325
+ # service: "MyService",
12326
+ # task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12327
+ # })
12328
+ #
12329
+ # resp.to_h outputs the following:
12330
+ # {
12331
+ # task_set: {
12332
+ # computed_desired_count: 0,
12333
+ # created_at: Time.parse(1557128360.711),
12334
+ # id: "ecs-svc/1234567890123456789",
12335
+ # launch_type: "EC2",
12336
+ # load_balancers: [
12337
+ # ],
12338
+ # network_configuration: {
12339
+ # awsvpc_configuration: {
12340
+ # assign_public_ip: "DISABLED",
12341
+ # security_groups: [
12342
+ # "sg-12344321",
12343
+ # ],
12344
+ # subnets: [
12345
+ # "subnet-12344321",
12346
+ # ],
12347
+ # },
12348
+ # },
12349
+ # pending_count: 0,
12350
+ # running_count: 0,
12351
+ # scale: {
12352
+ # value: 50,
12353
+ # unit: "PERCENT",
12354
+ # },
12355
+ # service_registries: [
12356
+ # ],
12357
+ # stability_status: "STABILIZING",
12358
+ # stability_status_at: Time.parse(1557129279.914),
12359
+ # status: "ACTIVE",
12360
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
12361
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12362
+ # updated_at: Time.parse(1557129279.914),
12363
+ # },
12364
+ # }
12365
+ #
10767
12366
  # @example Request syntax with placeholder values
10768
12367
  #
10769
12368
  # resp = client.update_task_set({
@@ -10849,7 +12448,7 @@ module Aws::ECS
10849
12448
  tracer: tracer
10850
12449
  )
10851
12450
  context[:gem_name] = 'aws-sdk-ecs'
10852
- context[:gem_version] = '1.173.0'
12451
+ context[:gem_version] = '1.181.0'
10853
12452
  Seahorse::Client::Request.new(handlers, context)
10854
12453
  end
10855
12454