aws-sdk-ecs 1.173.0 → 1.182.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({
@@ -6096,11 +6711,6 @@ module Aws::ECS
6096
6711
  # You must turn on this setting to use Amazon ECS features such as
6097
6712
  # resource tagging.
6098
6713
  #
6099
- # * `fargateFIPSMode` - When turned on, you can run Fargate workloads in
6100
- # a manner that is compliant with Federal Information Processing
6101
- # Standard (FIPS-140). For more information, see [Fargate Federal
6102
- # Information Processing Standard (FIPS-140)][1].
6103
- #
6104
6714
  # * `containerInstanceLongArnFormat` - When modified, the Amazon
6105
6715
  # Resource Name (ARN) and resource ID format of the resource type for
6106
6716
  # a specified user, role, or the root user for an account is affected.
@@ -6115,7 +6725,7 @@ module Aws::ECS
6115
6725
  # is changed. If `awsvpcTrunking` is turned on, any new container
6116
6726
  # instances that support the feature are launched have the increased
6117
6727
  # ENI limits available to them. For more information, see [Elastic
6118
- # Network Interface Trunking][2] in the *Amazon Elastic Container
6728
+ # Network Interface Trunking][1] in the *Amazon Elastic Container
6119
6729
  # Service Developer Guide*.
6120
6730
  #
6121
6731
  # * `containerInsights` - Container Insights with enhanced observability
@@ -6136,15 +6746,15 @@ module Aws::ECS
6136
6746
  # setting to `enabled`.
6137
6747
  #
6138
6748
  # For more information, see [Monitor Amazon ECS containers using
6139
- # Container Insights with enhanced observability][3] in the *Amazon
6749
+ # Container Insights with enhanced observability][2] in the *Amazon
6140
6750
  # Elastic Container Service Developer Guide*.
6141
6751
  #
6142
6752
  # * `dualStackIPv6` - When turned on, when using a VPC in dual stack
6143
6753
  # mode, your tasks using the `awsvpc` network mode can have an IPv6
6144
6754
  # address assigned. For more information on using IPv6 with tasks
6145
6755
  # launched on Amazon EC2 instances, see [Using a VPC in dual-stack
6146
- # mode][4]. For more information on using IPv6 with tasks launched on
6147
- # Fargate, see [Using a VPC in dual-stack mode][5].
6756
+ # mode][3]. For more information on using IPv6 with tasks launched on
6757
+ # Fargate, see [Using a VPC in dual-stack mode][4].
6148
6758
  #
6149
6759
  # * `fargateTaskRetirementWaitPeriod` - When Amazon Web Services
6150
6760
  # determines that a security or infrastructure update is needed for an
@@ -6152,7 +6762,7 @@ module Aws::ECS
6152
6762
  # new tasks launched to replace them. Use
6153
6763
  # `fargateTaskRetirementWaitPeriod` to configure the wait time to
6154
6764
  # retire a Fargate task. For information about the Fargate tasks
6155
- # maintenance, see [Amazon Web Services Fargate task maintenance][6]
6765
+ # maintenance, see [Amazon Web Services Fargate task maintenance][5]
6156
6766
  # in the *Amazon ECS Developer Guide*.
6157
6767
  #
6158
6768
  # * `tagResourceAuthorization` - Amazon ECS is introducing tagging
@@ -6162,7 +6772,7 @@ module Aws::ECS
6162
6772
  # performs additional authorization to verify if users or roles have
6163
6773
  # permissions to create tags. Therefore, you must grant explicit
6164
6774
  # permissions to use the `ecs:TagResource` action. For more
6165
- # information, see [Grant permission to tag resources on creation][7]
6775
+ # information, see [Grant permission to tag resources on creation][6]
6166
6776
  # in the *Amazon ECS Developer Guide*.
6167
6777
  #
6168
6778
  # * `guardDutyActivate` - The `guardDutyActivate` parameter is read-only
@@ -6170,18 +6780,17 @@ module Aws::ECS
6170
6780
  # enabled or disabled by your security administrator in your Amazon
6171
6781
  # ECS account. Amazon GuardDuty controls this account setting on your
6172
6782
  # behalf. For more information, see [Protecting Amazon ECS workloads
6173
- # with Amazon ECS Runtime Monitoring][8].
6783
+ # with Amazon ECS Runtime Monitoring][7].
6174
6784
  #
6175
6785
  #
6176
6786
  #
6177
- # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-fips-compliance.html
6178
- # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
6179
- # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
6180
- # [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking-awsvpc.html#task-networking-vpc-dual-stack
6181
- # [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-networking.html#fargate-task-networking-vpc-dual-stack
6182
- # [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
6183
- # [7]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
6184
- # [8]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
6787
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-eni.html
6788
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
6789
+ # [3]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking-awsvpc.html#task-networking-vpc-dual-stack
6790
+ # [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-networking.html#fargate-task-networking-vpc-dual-stack
6791
+ # [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-maintenance.html
6792
+ # [6]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/supported-iam-actions-tagging.html
6793
+ # [7]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-guard-duty-integration.html
6185
6794
  #
6186
6795
  # @option params [required, String] :value
6187
6796
  # The account setting value for the specified principal ARN. Accepted
@@ -6484,6 +7093,33 @@ module Aws::ECS
6484
7093
  #
6485
7094
  # * {Types::PutAttributesResponse#attributes #attributes} => Array&lt;Types::Attribute&gt;
6486
7095
  #
7096
+ #
7097
+ # @example Example: To create or update an attribute on a resource
7098
+ #
7099
+ # # This example adds an attribute "stack" with the value "production" to a container instance.
7100
+ #
7101
+ # resp = client.put_attributes({
7102
+ # attributes: [
7103
+ # {
7104
+ # name: "stack",
7105
+ # value: "production",
7106
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
7107
+ # },
7108
+ # ],
7109
+ # cluster: "MyCluster",
7110
+ # })
7111
+ #
7112
+ # resp.to_h outputs the following:
7113
+ # {
7114
+ # attributes: [
7115
+ # {
7116
+ # name: "stack",
7117
+ # value: "production",
7118
+ # target_id: "arn:aws:ecs:us-west-2:123456789012:container-instance/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
7119
+ # },
7120
+ # ],
7121
+ # }
7122
+ #
6487
7123
  # @example Request syntax with placeholder values
6488
7124
  #
6489
7125
  # resp = client.put_attributes({
@@ -6592,6 +7228,260 @@ module Aws::ECS
6592
7228
  #
6593
7229
  # * {Types::PutClusterCapacityProvidersResponse#cluster #cluster} => Types::Cluster
6594
7230
  #
7231
+ #
7232
+ # @example Example: To add an existing capacity provider to a cluuster
7233
+ #
7234
+ # # This example adds an existing capacity provider "MyCapacityProvider2" to a cluster that already has the capacity
7235
+ # # provider "MyCapacityProvider1" associated with it. Both "MyCapacityProvider2" and "MyCapacityProvider1" need to be
7236
+ # # specified.
7237
+ #
7238
+ # resp = client.put_cluster_capacity_providers({
7239
+ # capacity_providers: [
7240
+ # "MyCapacityProvider1",
7241
+ # "MyCapacityProvider2",
7242
+ # ],
7243
+ # cluster: "MyCluster",
7244
+ # default_capacity_provider_strategy: [
7245
+ # {
7246
+ # capacity_provider: "MyCapacityProvider1",
7247
+ # weight: 1,
7248
+ # },
7249
+ # {
7250
+ # capacity_provider: "MyCapacityProvider2",
7251
+ # weight: 1,
7252
+ # },
7253
+ # ],
7254
+ # })
7255
+ #
7256
+ # resp.to_h outputs the following:
7257
+ # {
7258
+ # cluster: {
7259
+ # active_services_count: 0,
7260
+ # attachments: [
7261
+ # {
7262
+ # type: "as_policy",
7263
+ # details: [
7264
+ # {
7265
+ # name: "capacityProviderName",
7266
+ # value: "MyCapacityProvider1",
7267
+ # },
7268
+ # {
7269
+ # name: "scalingPolicyName",
7270
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7271
+ # },
7272
+ # ],
7273
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7274
+ # status: "ACTIVE",
7275
+ # },
7276
+ # {
7277
+ # type: "as_policy",
7278
+ # details: [
7279
+ # {
7280
+ # name: "capacityProviderName",
7281
+ # value: "MyCapacityProvider2",
7282
+ # },
7283
+ # {
7284
+ # name: "scalingPolicyName",
7285
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7286
+ # },
7287
+ # ],
7288
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7289
+ # status: "ACTIVE",
7290
+ # },
7291
+ # ],
7292
+ # attachments_status: "UPDATE_IN_PROGRESS",
7293
+ # capacity_providers: [
7294
+ # "MyCapacityProvider1",
7295
+ # "MyCapacityProvider2",
7296
+ # ],
7297
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7298
+ # cluster_name: "MyCluster",
7299
+ # default_capacity_provider_strategy: [
7300
+ # {
7301
+ # base: 0,
7302
+ # capacity_provider: "MyCapacityProvider1",
7303
+ # weight: 1,
7304
+ # },
7305
+ # {
7306
+ # base: 0,
7307
+ # capacity_provider: "MyCapacityProvider2",
7308
+ # weight: 1,
7309
+ # },
7310
+ # ],
7311
+ # pending_tasks_count: 0,
7312
+ # registered_container_instances_count: 0,
7313
+ # running_tasks_count: 0,
7314
+ # settings: [
7315
+ # {
7316
+ # name: "containerInsights",
7317
+ # value: "enabled",
7318
+ # },
7319
+ # ],
7320
+ # statistics: [
7321
+ # ],
7322
+ # status: "ACTIVE",
7323
+ # tags: [
7324
+ # ],
7325
+ # },
7326
+ # }
7327
+ #
7328
+ # @example Example: To remove a capacity provider from a cluster
7329
+ #
7330
+ # # This example removes a capacity provider "MyCapacityProvider2" from a cluster that has both "MyCapacityProvider2" and
7331
+ # # "MyCapacityProvider1" associated with it. Only "MyCapacityProvider1" needs to be specified in this scenario.
7332
+ #
7333
+ # resp = client.put_cluster_capacity_providers({
7334
+ # capacity_providers: [
7335
+ # "MyCapacityProvider1",
7336
+ # ],
7337
+ # cluster: "MyCluster",
7338
+ # default_capacity_provider_strategy: [
7339
+ # {
7340
+ # base: 0,
7341
+ # capacity_provider: "MyCapacityProvider1",
7342
+ # weight: 1,
7343
+ # },
7344
+ # ],
7345
+ # })
7346
+ #
7347
+ # resp.to_h outputs the following:
7348
+ # {
7349
+ # cluster: {
7350
+ # active_services_count: 0,
7351
+ # attachments: [
7352
+ # {
7353
+ # type: "as_policy",
7354
+ # details: [
7355
+ # {
7356
+ # name: "capacityProviderName",
7357
+ # value: "MyCapacityProvider1",
7358
+ # },
7359
+ # {
7360
+ # name: "scalingPolicyName",
7361
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7362
+ # },
7363
+ # ],
7364
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7365
+ # status: "ACTIVE",
7366
+ # },
7367
+ # {
7368
+ # type: "as_policy",
7369
+ # details: [
7370
+ # {
7371
+ # name: "capacityProviderName",
7372
+ # value: "MyCapacityProvider2",
7373
+ # },
7374
+ # {
7375
+ # name: "scalingPolicyName",
7376
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7377
+ # },
7378
+ # ],
7379
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7380
+ # status: "DELETING",
7381
+ # },
7382
+ # ],
7383
+ # attachments_status: "UPDATE_IN_PROGRESS",
7384
+ # capacity_providers: [
7385
+ # "MyCapacityProvider1",
7386
+ # ],
7387
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7388
+ # cluster_name: "MyCluster",
7389
+ # default_capacity_provider_strategy: [
7390
+ # {
7391
+ # base: 0,
7392
+ # capacity_provider: "MyCapacityProvider1",
7393
+ # weight: 1,
7394
+ # },
7395
+ # ],
7396
+ # pending_tasks_count: 0,
7397
+ # registered_container_instances_count: 0,
7398
+ # running_tasks_count: 0,
7399
+ # settings: [
7400
+ # {
7401
+ # name: "containerInsights",
7402
+ # value: "enabled",
7403
+ # },
7404
+ # ],
7405
+ # statistics: [
7406
+ # ],
7407
+ # status: "ACTIVE",
7408
+ # tags: [
7409
+ # ],
7410
+ # },
7411
+ # }
7412
+ #
7413
+ # @example Example: To remove all capacity providers from a cluster
7414
+ #
7415
+ # # This example removes all capacity providers associated with a cluster.
7416
+ #
7417
+ # resp = client.put_cluster_capacity_providers({
7418
+ # capacity_providers: [
7419
+ # ],
7420
+ # cluster: "MyCluster",
7421
+ # default_capacity_provider_strategy: [
7422
+ # ],
7423
+ # })
7424
+ #
7425
+ # resp.to_h outputs the following:
7426
+ # {
7427
+ # cluster: {
7428
+ # active_services_count: 0,
7429
+ # attachments: [
7430
+ # {
7431
+ # type: "as_policy",
7432
+ # details: [
7433
+ # {
7434
+ # name: "capacityProviderName",
7435
+ # value: "MyCapacityProvider1",
7436
+ # },
7437
+ # {
7438
+ # name: "scalingPolicyName",
7439
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
7440
+ # },
7441
+ # ],
7442
+ # id: "0fb0c8f4-6edd-4de1-9b09-17e470ee1918",
7443
+ # status: "DELETING",
7444
+ # },
7445
+ # {
7446
+ # type: "as_policy",
7447
+ # details: [
7448
+ # {
7449
+ # name: "capacityProviderName",
7450
+ # value: "MyCapacityProvider2",
7451
+ # },
7452
+ # {
7453
+ # name: "scalingPolicyName",
7454
+ # value: "ECSManagedAutoScalingPolicy-a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
7455
+ # },
7456
+ # ],
7457
+ # id: "ae592060-2382-4663-9476-b015c685593c",
7458
+ # status: "DELETING",
7459
+ # },
7460
+ # ],
7461
+ # attachments_status: "UPDATE_IN_PROGRESS",
7462
+ # capacity_providers: [
7463
+ # ],
7464
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
7465
+ # cluster_name: "MyCluster",
7466
+ # default_capacity_provider_strategy: [
7467
+ # ],
7468
+ # pending_tasks_count: 0,
7469
+ # registered_container_instances_count: 0,
7470
+ # running_tasks_count: 0,
7471
+ # settings: [
7472
+ # {
7473
+ # name: "containerInsights",
7474
+ # value: "enabled",
7475
+ # },
7476
+ # ],
7477
+ # statistics: [
7478
+ # ],
7479
+ # status: "ACTIVE",
7480
+ # tags: [
7481
+ # ],
7482
+ # },
7483
+ # }
7484
+ #
6595
7485
  # @example Request syntax with placeholder values
6596
7486
  #
6597
7487
  # resp = client.put_cluster_capacity_providers({
@@ -6972,10 +7862,10 @@ module Aws::ECS
6972
7862
  #
6973
7863
  # </note>
6974
7864
  #
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.
7865
+ # If you're using the EC2 launch type or external launch type, this
7866
+ # field is optional. Supported values are between `128` CPU units
7867
+ # (`0.125` vCPUs) and `196608` CPU units (`192` vCPUs). If you do not
7868
+ # specify a value, the parameter is ignored.
6979
7869
  #
6980
7870
  # If you're using the Fargate launch type, this field is required and
6981
7871
  # you must use one of the following values, which determines your range
@@ -8427,22 +9317,78 @@ module Aws::ECS
8427
9317
  # * {Types::StartTaskResponse#tasks #tasks} => Array&lt;Types::Task&gt;
8428
9318
  # * {Types::StartTaskResponse#failures #failures} => Array&lt;Types::Failure&gt;
8429
9319
  #
8430
- # @example Request syntax with placeholder values
9320
+ #
9321
+ # @example Example: To start a new task
9322
+ #
9323
+ # # This example starts a new task in the cluster "MyCluster" on the specified container instance using the latest revision
9324
+ # # of the "hello-world" task definition.
8431
9325
  #
8432
9326
  # 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: {
9327
+ # cluster: "MyCluster",
9328
+ # container_instances: [
9329
+ # "4c543eed-f83f-47da-b1d8-3d23f1da4c64",
9330
+ # ],
9331
+ # task_definition: "hello-world",
9332
+ # })
9333
+ #
9334
+ # resp.to_h outputs the following:
9335
+ # {
9336
+ # failures: [
9337
+ # ],
9338
+ # tasks: [
9339
+ # {
9340
+ # version: 1,
9341
+ # cluster_arn: "arn:aws:ecs:us-east-1:012345678910:cluster/default",
9342
+ # container_instance_arn: "arn:aws:ecs:us-east-1:012345678910:container-instance/default/4c543eed-f83f-47da-b1d8-3d23f1da4c64",
9343
+ # containers: [
9344
+ # {
9345
+ # name: "wordpress",
9346
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/e76594d4-27e1-4c74-98b5-46a6435eb769",
9347
+ # last_status: "PENDING",
9348
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9349
+ # },
9350
+ # {
9351
+ # name: "mysql",
9352
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/default/b19106ea-4fa8-4f1d-9767-96922c82b070",
9353
+ # last_status: "PENDING",
9354
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9355
+ # },
9356
+ # ],
9357
+ # created_at: Time.parse(1479765460.842),
9358
+ # desired_status: "RUNNING",
9359
+ # last_status: "PENDING",
9360
+ # overrides: {
9361
+ # container_overrides: [
9362
+ # {
9363
+ # name: "wordpress",
9364
+ # },
9365
+ # {
9366
+ # name: "mysql",
9367
+ # },
9368
+ # ],
9369
+ # },
9370
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/default/fdf2c302-468c-4e55-b884-5331d816e7fb",
9371
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/hello_world:6",
9372
+ # },
9373
+ # ],
9374
+ # }
9375
+ #
9376
+ # @example Request syntax with placeholder values
9377
+ #
9378
+ # resp = client.start_task({
9379
+ # cluster: "String",
9380
+ # container_instances: ["String"], # required
9381
+ # enable_ecs_managed_tags: false,
9382
+ # enable_execute_command: false,
9383
+ # group: "String",
9384
+ # network_configuration: {
9385
+ # awsvpc_configuration: {
9386
+ # subnets: ["String"], # required
9387
+ # security_groups: ["String"],
9388
+ # assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
9389
+ # },
9390
+ # },
9391
+ # overrides: {
8446
9392
  # container_overrides: [
8447
9393
  # {
8448
9394
  # name: "String",
@@ -8683,7 +9629,7 @@ module Aws::ECS
8683
9629
  # cluster is assumed.
8684
9630
  #
8685
9631
  # @option params [required, String] :task
8686
- # The task ID of the task to stop.
9632
+ # Thefull Amazon Resource Name (ARN) of the task.
8687
9633
  #
8688
9634
  # @option params [String] :reason
8689
9635
  # An optional message specified when a task is stopped. For example, if
@@ -8699,6 +9645,68 @@ module Aws::ECS
8699
9645
  #
8700
9646
  # * {Types::StopTaskResponse#task #task} => Types::Task
8701
9647
  #
9648
+ #
9649
+ # @example Example: To stop a task
9650
+ #
9651
+ # # This example stops a task with ID "1dc5c17a-422b-4dc4-b493-371970c6c4d6" in cluster "MyCluster".
9652
+ #
9653
+ # resp = client.stop_task({
9654
+ # cluster: "MyCluster",
9655
+ # reason: "testing stop task.",
9656
+ # task: "1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9657
+ # })
9658
+ #
9659
+ # resp.to_h outputs the following:
9660
+ # {
9661
+ # task: {
9662
+ # version: 0,
9663
+ # cluster_arn: "arn:aws:ecs:us-east-1:012345678910:cluster/MyCluster",
9664
+ # container_instance_arn: "arn:aws:ecs:us-east-1:012345678910:container-instance/MyCluster/5991d8da-1d59-49d2-a31f-4230f9e73140",
9665
+ # containers: [
9666
+ # {
9667
+ # name: "simple-app",
9668
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/4df26bb4-f057-467b-a079-961675296e64",
9669
+ # last_status: "RUNNING",
9670
+ # network_bindings: [
9671
+ # {
9672
+ # bind_ip: "0.0.0.0",
9673
+ # container_port: 80,
9674
+ # host_port: 32774,
9675
+ # protocol: "tcp",
9676
+ # },
9677
+ # ],
9678
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9679
+ # },
9680
+ # {
9681
+ # name: "busybox",
9682
+ # container_arn: "arn:aws:ecs:us-east-1:012345678910:container/e09064f7-7361-4c87-8ab9-8d073bbdbcb9",
9683
+ # last_status: "RUNNING",
9684
+ # network_bindings: [
9685
+ # ],
9686
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/MyCluster/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9687
+ # },
9688
+ # ],
9689
+ # created_at: Time.parse(1476822811.295),
9690
+ # desired_status: "STOPPED",
9691
+ # last_status: "RUNNING",
9692
+ # overrides: {
9693
+ # container_overrides: [
9694
+ # {
9695
+ # name: "simple-app",
9696
+ # },
9697
+ # {
9698
+ # name: "busybox",
9699
+ # },
9700
+ # ],
9701
+ # },
9702
+ # started_at: Time.parse(1476822833.998),
9703
+ # started_by: "ecs-svc/9223370560032507596",
9704
+ # stopped_reason: "testing stop task.",
9705
+ # task_arn: "arn:aws:ecs:us-east-1:012345678910:task/1dc5c17a-422b-4dc4-b493-371970c6c4d6",
9706
+ # task_definition_arn: "arn:aws:ecs:us-east-1:012345678910:task-definition/console-sample-app-dynamic-ports:1",
9707
+ # },
9708
+ # }
9709
+ #
8702
9710
  # @example Request syntax with placeholder values
8703
9711
  #
8704
9712
  # resp = client.stop_task({
@@ -9051,6 +10059,25 @@ module Aws::ECS
9051
10059
  # Currently, the supported resources are Amazon ECS capacity providers,
9052
10060
  # tasks, services, task definitions, clusters, and container instances.
9053
10061
  #
10062
+ # In order to tag a service that has the following ARN format, you need
10063
+ # to migrate the service to the long ARN. For more information, see
10064
+ # [Migrate an Amazon ECS short service ARN to a long ARN][1] in the
10065
+ # *Amazon Elastic Container Service Developer Guide*.
10066
+ #
10067
+ # `arn:aws:ecs:region:aws_account_id:service/service-name`
10068
+ #
10069
+ # After the migration is complete, the service has the long ARN format,
10070
+ # as shown below. Use this ARN to tag the service.
10071
+ #
10072
+ # `arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name`
10073
+ #
10074
+ # If you try to tag a service with a short ARN, you receive an
10075
+ # `InvalidParameterException` error.
10076
+ #
10077
+ #
10078
+ #
10079
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-arn-migration.html
10080
+ #
9054
10081
  # @option params [required, Array<Types::Tag>] :tags
9055
10082
  # The tags to add to the resource. A tag is an array of key-value pairs.
9056
10083
  #
@@ -9178,6 +10205,46 @@ module Aws::ECS
9178
10205
  #
9179
10206
  # * {Types::UpdateCapacityProviderResponse#capacity_provider #capacity_provider} => Types::CapacityProvider
9180
10207
  #
10208
+ #
10209
+ # @example Example: To update a capacity provider's parameters
10210
+ #
10211
+ # # This example updates the targetCapacity and instanceWarmupPeriod parameters for the capacity provider MyCapacityProvider
10212
+ # # to 90 and 150 respectively.
10213
+ #
10214
+ # resp = client.update_capacity_provider({
10215
+ # name: "MyCapacityProvider",
10216
+ # auto_scaling_group_provider: {
10217
+ # managed_scaling: {
10218
+ # instance_warmup_period: 150,
10219
+ # status: "ENABLED",
10220
+ # target_capacity: 90,
10221
+ # },
10222
+ # },
10223
+ # })
10224
+ #
10225
+ # resp.to_h outputs the following:
10226
+ # {
10227
+ # capacity_provider: {
10228
+ # name: "MyCapacityProvider",
10229
+ # auto_scaling_group_provider: {
10230
+ # auto_scaling_group_arn: "arn:aws:autoscaling:us-east-1:132456789012:autoScalingGroup:57ffcb94-11f0-4d6d-bf60-3bac5EXAMPLE:autoScalingGroupName/MyASG",
10231
+ # managed_scaling: {
10232
+ # instance_warmup_period: 150,
10233
+ # maximum_scaling_step_size: 10000,
10234
+ # minimum_scaling_step_size: 1,
10235
+ # status: "ENABLED",
10236
+ # target_capacity: 90,
10237
+ # },
10238
+ # managed_termination_protection: "ENABLED",
10239
+ # },
10240
+ # capacity_provider_arn: "arn:aws:ecs:us-east-1:123456789012:capacity-provider/MyCapacityProvider",
10241
+ # status: "ACTIVE",
10242
+ # tags: [
10243
+ # ],
10244
+ # update_status: "UPDATE_COMPLETE",
10245
+ # },
10246
+ # }
10247
+ #
9181
10248
  # @example Request syntax with placeholder values
9182
10249
  #
9183
10250
  # resp = client.update_capacity_provider({
@@ -9260,6 +10327,198 @@ module Aws::ECS
9260
10327
  #
9261
10328
  # * {Types::UpdateClusterResponse#cluster #cluster} => Types::Cluster
9262
10329
  #
10330
+ #
10331
+ # @example Example: To update a cluster's observability settings.
10332
+ #
10333
+ # # This example turns on enhanced containerInsights in an existing cluster.
10334
+ #
10335
+ # resp = client.update_cluster({
10336
+ # cluster: "ECS-project-update-cluster",
10337
+ # settings: [
10338
+ # {
10339
+ # name: "containerInsights",
10340
+ # value: "enhanced",
10341
+ # },
10342
+ # ],
10343
+ # })
10344
+ #
10345
+ # resp.to_h outputs the following:
10346
+ # {
10347
+ # cluster: {
10348
+ # active_services_count: 0,
10349
+ # attachments: [
10350
+ # {
10351
+ # type: "as_policy",
10352
+ # details: [
10353
+ # {
10354
+ # name: "capacityProviderName",
10355
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10356
+ # },
10357
+ # {
10358
+ # name: "scalingPolicyName",
10359
+ # value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93",
10360
+ # },
10361
+ # ],
10362
+ # id: "069d002b-7634-42e4-b1d4-544f4c8f6380",
10363
+ # status: "CREATED",
10364
+ # },
10365
+ # {
10366
+ # type: "managed_draining",
10367
+ # details: [
10368
+ # {
10369
+ # name: "capacityProviderName",
10370
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10371
+ # },
10372
+ # {
10373
+ # name: "autoScalingLifecycleHookName",
10374
+ # value: "ecs-managed-draining-termination-hook",
10375
+ # },
10376
+ # ],
10377
+ # id: "08b5b6ca-45e9-4209-a65d-e962a27c490a",
10378
+ # status: "CREATED",
10379
+ # },
10380
+ # {
10381
+ # type: "sc",
10382
+ # details: [
10383
+ # ],
10384
+ # id: "45d0b36f-8cff-46b6-9380-1288744802ab",
10385
+ # status: "ATTACHED",
10386
+ # },
10387
+ # ],
10388
+ # attachments_status: "UPDATE_COMPLETE",
10389
+ # capacity_providers: [
10390
+ # "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10391
+ # ],
10392
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster",
10393
+ # cluster_name: "ECS-project-update-cluster",
10394
+ # default_capacity_provider_strategy: [
10395
+ # {
10396
+ # base: 0,
10397
+ # capacity_provider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10398
+ # weight: 1,
10399
+ # },
10400
+ # ],
10401
+ # pending_tasks_count: 0,
10402
+ # registered_container_instances_count: 0,
10403
+ # running_tasks_count: 0,
10404
+ # service_connect_defaults: {
10405
+ # namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-igwrsylmy3kwvcdx",
10406
+ # },
10407
+ # settings: [
10408
+ # {
10409
+ # name: "containerInsights",
10410
+ # value: "enhanced",
10411
+ # },
10412
+ # ],
10413
+ # statistics: [
10414
+ # ],
10415
+ # status: "ACTIVE",
10416
+ # tags: [
10417
+ # ],
10418
+ # },
10419
+ # }
10420
+ #
10421
+ # @example Example: To update a cluster's Service Connect defaults.
10422
+ #
10423
+ # # This example sets a default Service Connect namespace.
10424
+ #
10425
+ # resp = client.update_cluster({
10426
+ # cluster: "ECS-project-update-cluster",
10427
+ # service_connect_defaults: {
10428
+ # namespace: "test",
10429
+ # },
10430
+ # })
10431
+ #
10432
+ # resp.to_h outputs the following:
10433
+ # {
10434
+ # cluster: {
10435
+ # active_services_count: 0,
10436
+ # attachments: [
10437
+ # {
10438
+ # type: "as_policy",
10439
+ # details: [
10440
+ # {
10441
+ # name: "capacityProviderName",
10442
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10443
+ # },
10444
+ # {
10445
+ # name: "scalingPolicyName",
10446
+ # value: "ECSManagedAutoScalingPolicy-152363a6-8c65-484c-b721-42c3e070ae93",
10447
+ # },
10448
+ # ],
10449
+ # id: "069d002b-7634-42e4-b1d4-544f4c8f6380",
10450
+ # status: "CREATED",
10451
+ # },
10452
+ # {
10453
+ # type: "managed_draining",
10454
+ # details: [
10455
+ # {
10456
+ # name: "capacityProviderName",
10457
+ # value: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10458
+ # },
10459
+ # {
10460
+ # name: "autoScalingLifecycleHookName",
10461
+ # value: "ecs-managed-draining-termination-hook",
10462
+ # },
10463
+ # ],
10464
+ # id: "08b5b6ca-45e9-4209-a65d-e962a27c490a",
10465
+ # status: "CREATED",
10466
+ # },
10467
+ # {
10468
+ # type: "sc",
10469
+ # details: [
10470
+ # ],
10471
+ # id: "45d0b36f-8cff-46b6-9380-1288744802ab",
10472
+ # status: "DELETED",
10473
+ # },
10474
+ # {
10475
+ # type: "sc",
10476
+ # details: [
10477
+ # ],
10478
+ # id: "3e6890c3-609c-4832-91de-d6ca891b3ef1",
10479
+ # status: "ATTACHED",
10480
+ # },
10481
+ # {
10482
+ # type: "sc",
10483
+ # details: [
10484
+ # ],
10485
+ # id: "961b8ec1-c2f1-4070-8495-e669b7668e90",
10486
+ # status: "DELETED",
10487
+ # },
10488
+ # ],
10489
+ # attachments_status: "UPDATE_COMPLETE",
10490
+ # capacity_providers: [
10491
+ # "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10492
+ # ],
10493
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/ECS-project-update-cluster",
10494
+ # cluster_name: "ECS-project-update-cluster",
10495
+ # default_capacity_provider_strategy: [
10496
+ # {
10497
+ # base: 0,
10498
+ # capacity_provider: "Infra-ECS-Cluster-ECS-project-update-cluster-d6bb6d5b-EC2CapacityProvider-3fIpdkLywwFt",
10499
+ # weight: 1,
10500
+ # },
10501
+ # ],
10502
+ # pending_tasks_count: 0,
10503
+ # registered_container_instances_count: 0,
10504
+ # running_tasks_count: 0,
10505
+ # service_connect_defaults: {
10506
+ # namespace: "arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-dtjmxqpfi46ht7dr",
10507
+ # },
10508
+ # settings: [
10509
+ # {
10510
+ # name: "containerInsights",
10511
+ # value: "enhanced",
10512
+ # },
10513
+ # ],
10514
+ # statistics: [
10515
+ # ],
10516
+ # status: "ACTIVE",
10517
+ # tags: [
10518
+ # ],
10519
+ # },
10520
+ # }
10521
+ #
9263
10522
  # @example Request syntax with placeholder values
9264
10523
  #
9265
10524
  # resp = client.update_cluster({
@@ -9371,6 +10630,44 @@ module Aws::ECS
9371
10630
  #
9372
10631
  # * {Types::UpdateClusterSettingsResponse#cluster #cluster} => Types::Cluster
9373
10632
  #
10633
+ #
10634
+ # @example Example: To update a cluster's settings
10635
+ #
10636
+ # # This example enables CloudWatch Container Insights for the default cluster.
10637
+ #
10638
+ # resp = client.update_cluster_settings({
10639
+ # cluster: "default",
10640
+ # settings: [
10641
+ # {
10642
+ # name: "containerInsights",
10643
+ # value: "enabled",
10644
+ # },
10645
+ # ],
10646
+ # })
10647
+ #
10648
+ # resp.to_h outputs the following:
10649
+ # {
10650
+ # cluster: {
10651
+ # active_services_count: 0,
10652
+ # cluster_arn: "arn:aws:ecs:us-west-2:123456789012:cluster/MyCluster",
10653
+ # cluster_name: "default",
10654
+ # pending_tasks_count: 0,
10655
+ # registered_container_instances_count: 0,
10656
+ # running_tasks_count: 0,
10657
+ # settings: [
10658
+ # {
10659
+ # name: "containerInsights",
10660
+ # value: "enabled",
10661
+ # },
10662
+ # ],
10663
+ # statistics: [
10664
+ # ],
10665
+ # status: "ACTIVE",
10666
+ # tags: [
10667
+ # ],
10668
+ # },
10669
+ # }
10670
+ #
9374
10671
  # @example Request syntax with placeholder values
9375
10672
  #
9376
10673
  # resp = client.update_cluster_settings({
@@ -9483,6 +10780,29 @@ module Aws::ECS
9483
10780
  #
9484
10781
  # * {Types::UpdateContainerAgentResponse#container_instance #container_instance} => Types::ContainerInstance
9485
10782
  #
10783
+ #
10784
+ # @example Example: To update the container agent version on a container instance
10785
+ #
10786
+ # # This example updates the container agent version on the specified container instance in cluster MyCluster.
10787
+ #
10788
+ # resp = client.update_container_agent({
10789
+ # cluster: "MyCluster",
10790
+ # container_instance: "53ac7152-dcd1-4102-81f5-208962864132",
10791
+ # })
10792
+ #
10793
+ # resp.to_h outputs the following:
10794
+ # {
10795
+ # container_instance: {
10796
+ # agent_connected: true,
10797
+ # agent_update_status: "PENDING",
10798
+ # version_info: {
10799
+ # agent_hash: "4023248",
10800
+ # agent_version: "1.0.0",
10801
+ # docker_version: "DockerVersion: 1.5.0",
10802
+ # },
10803
+ # },
10804
+ # }
10805
+ #
9486
10806
  # @example Request syntax with placeholder values
9487
10807
  #
9488
10808
  # resp = client.update_container_agent({
@@ -9635,6 +10955,179 @@ module Aws::ECS
9635
10955
  # * {Types::UpdateContainerInstancesStateResponse#container_instances #container_instances} => Array&lt;Types::ContainerInstance&gt;
9636
10956
  # * {Types::UpdateContainerInstancesStateResponse#failures #failures} => Array&lt;Types::Failure&gt;
9637
10957
  #
10958
+ #
10959
+ # @example Example: To update the state of a container instance
10960
+ #
10961
+ # # This example updates the state of the specified container instance in the default cluster to DRAINING.
10962
+ #
10963
+ # resp = client.update_container_instances_state({
10964
+ # cluster: "default",
10965
+ # container_instances: [
10966
+ # "1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
10967
+ # ],
10968
+ # status: "DRAINING",
10969
+ # })
10970
+ #
10971
+ # resp.to_h outputs the following:
10972
+ # {
10973
+ # container_instances: [
10974
+ # {
10975
+ # version: 30,
10976
+ # agent_connected: true,
10977
+ # attributes: [
10978
+ # {
10979
+ # name: "ecs.availability-zone",
10980
+ # value: "us-west-2b",
10981
+ # },
10982
+ # {
10983
+ # name: "com.amazonaws.ecs.capability.logging-driver.syslog",
10984
+ # },
10985
+ # {
10986
+ # name: "ecs.instance-type",
10987
+ # value: "c4.xlarge",
10988
+ # },
10989
+ # {
10990
+ # name: "ecs.ami-id",
10991
+ # value: "ami-a2ca61c2",
10992
+ # },
10993
+ # {
10994
+ # name: "com.amazonaws.ecs.capability.task-iam-role-network-host",
10995
+ # },
10996
+ # {
10997
+ # name: "com.amazonaws.ecs.capability.logging-driver.awslogs",
10998
+ # },
10999
+ # {
11000
+ # name: "com.amazonaws.ecs.capability.logging-driver.json-file",
11001
+ # },
11002
+ # {
11003
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.17",
11004
+ # },
11005
+ # {
11006
+ # name: "com.amazonaws.ecs.capability.privileged-container",
11007
+ # },
11008
+ # {
11009
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.18",
11010
+ # },
11011
+ # {
11012
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.19",
11013
+ # },
11014
+ # {
11015
+ # name: "com.amazonaws.ecs.capability.ecr-auth",
11016
+ # },
11017
+ # {
11018
+ # name: "ecs.os-type",
11019
+ # value: "linux",
11020
+ # },
11021
+ # {
11022
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.20",
11023
+ # },
11024
+ # {
11025
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.21",
11026
+ # },
11027
+ # {
11028
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.22",
11029
+ # },
11030
+ # {
11031
+ # name: "com.amazonaws.ecs.capability.task-iam-role",
11032
+ # },
11033
+ # {
11034
+ # name: "com.amazonaws.ecs.capability.docker-remote-api.1.23",
11035
+ # },
11036
+ # ],
11037
+ # container_instance_arn: "arn:aws:ecs:us-west-2:012345678910:container-instance/default/1c3be8ed-df30-47b4-8f1e-6e68ebd01f34",
11038
+ # ec2_instance_id: "i-05d99c76955727ec6",
11039
+ # pending_tasks_count: 0,
11040
+ # registered_resources: [
11041
+ # {
11042
+ # name: "CPU",
11043
+ # type: "INTEGER",
11044
+ # double_value: 0,
11045
+ # integer_value: 4096,
11046
+ # long_value: 0,
11047
+ # },
11048
+ # {
11049
+ # name: "MEMORY",
11050
+ # type: "INTEGER",
11051
+ # double_value: 0,
11052
+ # integer_value: 7482,
11053
+ # long_value: 0,
11054
+ # },
11055
+ # {
11056
+ # name: "PORTS",
11057
+ # type: "STRINGSET",
11058
+ # double_value: 0,
11059
+ # integer_value: 0,
11060
+ # long_value: 0,
11061
+ # string_set_value: [
11062
+ # "22",
11063
+ # "2376",
11064
+ # "2375",
11065
+ # "51678",
11066
+ # "51679",
11067
+ # ],
11068
+ # },
11069
+ # {
11070
+ # name: "PORTS_UDP",
11071
+ # type: "STRINGSET",
11072
+ # double_value: 0,
11073
+ # integer_value: 0,
11074
+ # long_value: 0,
11075
+ # string_set_value: [
11076
+ # ],
11077
+ # },
11078
+ # ],
11079
+ # remaining_resources: [
11080
+ # {
11081
+ # name: "CPU",
11082
+ # type: "INTEGER",
11083
+ # double_value: 0,
11084
+ # integer_value: 4096,
11085
+ # long_value: 0,
11086
+ # },
11087
+ # {
11088
+ # name: "MEMORY",
11089
+ # type: "INTEGER",
11090
+ # double_value: 0,
11091
+ # integer_value: 7482,
11092
+ # long_value: 0,
11093
+ # },
11094
+ # {
11095
+ # name: "PORTS",
11096
+ # type: "STRINGSET",
11097
+ # double_value: 0,
11098
+ # integer_value: 0,
11099
+ # long_value: 0,
11100
+ # string_set_value: [
11101
+ # "22",
11102
+ # "2376",
11103
+ # "2375",
11104
+ # "51678",
11105
+ # "51679",
11106
+ # ],
11107
+ # },
11108
+ # {
11109
+ # name: "PORTS_UDP",
11110
+ # type: "STRINGSET",
11111
+ # double_value: 0,
11112
+ # integer_value: 0,
11113
+ # long_value: 0,
11114
+ # string_set_value: [
11115
+ # ],
11116
+ # },
11117
+ # ],
11118
+ # running_tasks_count: 0,
11119
+ # status: "DRAINING",
11120
+ # version_info: {
11121
+ # agent_hash: "efe53c6",
11122
+ # agent_version: "1.13.1",
11123
+ # docker_version: "DockerVersion: 1.11.2",
11124
+ # },
11125
+ # },
11126
+ # ],
11127
+ # failures: [
11128
+ # ],
11129
+ # }
11130
+ #
9638
11131
  # @example Request syntax with placeholder values
9639
11132
  #
9640
11133
  # resp = client.update_container_instances_state({
@@ -9931,8 +11424,8 @@ module Aws::ECS
9931
11424
  # service.
9932
11425
  #
9933
11426
  # For more information, see [Balancing an Amazon ECS service across
9934
- # Availability Zones][1] in the *Amazon Elastic Container Service
9935
- # Developer Guide*.
11427
+ # Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
11428
+ # Developer Guide</i> </i>.
9936
11429
  #
9937
11430
  #
9938
11431
  #
@@ -10500,6 +11993,54 @@ module Aws::ECS
10500
11993
  #
10501
11994
  # * {Types::UpdateServicePrimaryTaskSetResponse#task_set #task_set} => Types::TaskSet
10502
11995
  #
11996
+ #
11997
+ # @example Example: To update the primary task set for a service
11998
+ #
11999
+ # # This example updates the primary task set for a service MyService that uses the EXTERNAL deployment controller type.
12000
+ #
12001
+ # resp = client.update_service_primary_task_set({
12002
+ # cluster: "MyCluster",
12003
+ # primary_task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12004
+ # service: "MyService",
12005
+ # })
12006
+ #
12007
+ # resp.to_h outputs the following:
12008
+ # {
12009
+ # task_set: {
12010
+ # computed_desired_count: 1,
12011
+ # created_at: Time.parse(1557128360.711),
12012
+ # id: "ecs-svc/1234567890123456789",
12013
+ # launch_type: "EC2",
12014
+ # load_balancers: [
12015
+ # ],
12016
+ # network_configuration: {
12017
+ # awsvpc_configuration: {
12018
+ # assign_public_ip: "DISABLED",
12019
+ # security_groups: [
12020
+ # "sg-12344312",
12021
+ # ],
12022
+ # subnets: [
12023
+ # "subnet-12344321",
12024
+ # ],
12025
+ # },
12026
+ # },
12027
+ # pending_count: 0,
12028
+ # running_count: 0,
12029
+ # scale: {
12030
+ # value: 50,
12031
+ # unit: "PERCENT",
12032
+ # },
12033
+ # service_registries: [
12034
+ # ],
12035
+ # stability_status: "STABILIZING",
12036
+ # stability_status_at: Time.parse(1557129279.914),
12037
+ # status: "PRIMARY",
12038
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
12039
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12040
+ # updated_at: Time.parse(1557129412.653),
12041
+ # },
12042
+ # }
12043
+ #
10503
12044
  # @example Request syntax with placeholder values
10504
12045
  #
10505
12046
  # resp = client.update_service_primary_task_set({
@@ -10764,6 +12305,58 @@ module Aws::ECS
10764
12305
  #
10765
12306
  # * {Types::UpdateTaskSetResponse#task_set #task_set} => Types::TaskSet
10766
12307
  #
12308
+ #
12309
+ # @example Example: To update a task set
12310
+ #
12311
+ # # This example updates the task set to adjust the scale.
12312
+ #
12313
+ # resp = client.update_task_set({
12314
+ # cluster: "MyCluster",
12315
+ # scale: {
12316
+ # value: 50,
12317
+ # unit: "PERCENT",
12318
+ # },
12319
+ # service: "MyService",
12320
+ # task_set: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12321
+ # })
12322
+ #
12323
+ # resp.to_h outputs the following:
12324
+ # {
12325
+ # task_set: {
12326
+ # computed_desired_count: 0,
12327
+ # created_at: Time.parse(1557128360.711),
12328
+ # id: "ecs-svc/1234567890123456789",
12329
+ # launch_type: "EC2",
12330
+ # load_balancers: [
12331
+ # ],
12332
+ # network_configuration: {
12333
+ # awsvpc_configuration: {
12334
+ # assign_public_ip: "DISABLED",
12335
+ # security_groups: [
12336
+ # "sg-12344321",
12337
+ # ],
12338
+ # subnets: [
12339
+ # "subnet-12344321",
12340
+ # ],
12341
+ # },
12342
+ # },
12343
+ # pending_count: 0,
12344
+ # running_count: 0,
12345
+ # scale: {
12346
+ # value: 50,
12347
+ # unit: "PERCENT",
12348
+ # },
12349
+ # service_registries: [
12350
+ # ],
12351
+ # stability_status: "STABILIZING",
12352
+ # stability_status_at: Time.parse(1557129279.914),
12353
+ # status: "ACTIVE",
12354
+ # task_definition: "arn:aws:ecs:us-west-2:123456789012:task-definition/sample-fargate:2",
12355
+ # task_set_arn: "arn:aws:ecs:us-west-2:123456789012:task-set/MyCluster/MyService/ecs-svc/1234567890123456789",
12356
+ # updated_at: Time.parse(1557129279.914),
12357
+ # },
12358
+ # }
12359
+ #
10767
12360
  # @example Request syntax with placeholder values
10768
12361
  #
10769
12362
  # resp = client.update_task_set({
@@ -10849,7 +12442,7 @@ module Aws::ECS
10849
12442
  tracer: tracer
10850
12443
  )
10851
12444
  context[:gem_name] = 'aws-sdk-ecs'
10852
- context[:gem_version] = '1.173.0'
12445
+ context[:gem_version] = '1.182.0'
10853
12446
  Seahorse::Client::Request.new(handlers, context)
10854
12447
  end
10855
12448