aws-sdk-ecs 1.29.0 → 1.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c721a7075fd0bfbbfe1bae626373f057a2703642
4
- data.tar.gz: 8e62a4083dacb39aadc34621ac4f4fa280da62af
3
+ metadata.gz: 815aed4597af0af7990bf50bcfe5053227ea14cb
4
+ data.tar.gz: 01c1624af942cc553de0c5c8e885b14317c88d15
5
5
  SHA512:
6
- metadata.gz: bca68b74dfa71c7359b9d94a6a547e3e38b75c1bfd2d26613c0e5d0b95a81dfe46cd391dbe8daf61ec3a0bc3a27b843b35feb94b7c39c29fb2cda76742d01f70
7
- data.tar.gz: 7217472645413f781061eeaabe2205ca62aea4ce6e99b333d6ac3e2f325ccf30a49563e0140c099f64778d48e5b37bc033135f305098e50abc96dff8d86c2995
6
+ metadata.gz: 19adf8916c1f06d7a9a6948e27e7ef9ef065c055ab41471ae6636643191b9b26f771e9738cc637fed4d8e5a256538c52b95ad3ae2b7958b937384200b351b140
7
+ data.tar.gz: 36d369fa3b3571d5f566f10a5ddfa6465e6011f1b1f06d90a570ab0fbf5bf6e559b9fbecbbdf6c60125c8a5bd7df21787aed54ccbfd8a29c8799545091fceb70
data/lib/aws-sdk-ecs.rb CHANGED
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-ecs/customizations'
43
43
  # @service
44
44
  module Aws::ECS
45
45
 
46
- GEM_VERSION = '1.29.0'
46
+ GEM_VERSION = '1.30.0'
47
47
 
48
48
  end
@@ -399,7 +399,7 @@ module Aws::ECS
399
399
  #
400
400
  #
401
401
  #
402
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html
402
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-load-balancing.html
403
403
  #
404
404
  # @option params [String] :cluster
405
405
  # The short name or full Amazon Resource Name (ARN) of the cluster on
@@ -493,7 +493,7 @@ module Aws::ECS
493
493
  #
494
494
  #
495
495
  #
496
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
496
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
497
497
  #
498
498
  # @option params [String] :platform_version
499
499
  # The platform version on which your tasks in the service are running. A
@@ -505,7 +505,7 @@ module Aws::ECS
505
505
  #
506
506
  #
507
507
  #
508
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
508
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
509
509
  #
510
510
  # @option params [String] :role
511
511
  # The name or full Amazon Resource Name (ARN) of the IAM role that
@@ -533,7 +533,7 @@ module Aws::ECS
533
533
  #
534
534
  #
535
535
  # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/using-service-linked-roles.html
536
- # [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names
536
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names
537
537
  #
538
538
  # @option params [Types::DeploymentConfiguration] :deployment_configuration
539
539
  # Optional deployment parameters that control how many tasks run during
@@ -945,6 +945,43 @@ module Aws::ECS
945
945
  #
946
946
  # * {Types::DeleteAccountSettingResponse#setting #setting} => Types::Setting
947
947
  #
948
+ #
949
+ # @example Example: To delete your account setting
950
+ #
951
+ # # This example deletes the account setting for your user for the specified resource type.
952
+ #
953
+ # resp = client.delete_account_setting({
954
+ # name: "serviceLongArnFormat",
955
+ # })
956
+ #
957
+ # resp.to_h outputs the following:
958
+ # {
959
+ # setting: {
960
+ # name: "serviceLongArnFormat",
961
+ # value: "enabled",
962
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
963
+ # },
964
+ # }
965
+ #
966
+ # @example Example: To delete the account settings for a specific IAM user or IAM role
967
+ #
968
+ # # This example deletes the account setting for a specific IAM user or IAM role for the specified resource type. Only the
969
+ # # root user can view or modify the account settings for another user.
970
+ #
971
+ # resp = client.delete_account_setting({
972
+ # name: "containerInstanceLongArnFormat",
973
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
974
+ # })
975
+ #
976
+ # resp.to_h outputs the following:
977
+ # {
978
+ # setting: {
979
+ # name: "containerInstanceLongArnFormat",
980
+ # value: "enabled",
981
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
982
+ # },
983
+ # }
984
+ #
948
985
  # @example Request syntax with placeholder values
949
986
  #
950
987
  # resp = client.delete_account_setting({
@@ -2498,6 +2535,66 @@ module Aws::ECS
2498
2535
  # * {Types::ListAccountSettingsResponse#settings #settings} => Array&lt;Types::Setting&gt;
2499
2536
  # * {Types::ListAccountSettingsResponse#next_token #next_token} => String
2500
2537
  #
2538
+ #
2539
+ # @example Example: To view your effective account settings
2540
+ #
2541
+ # # This example displays the effective account settings for your account.
2542
+ #
2543
+ # resp = client.list_account_settings({
2544
+ # effective_settings: true,
2545
+ # })
2546
+ #
2547
+ # resp.to_h outputs the following:
2548
+ # {
2549
+ # settings: [
2550
+ # {
2551
+ # name: "containerInstanceLongArnFormat",
2552
+ # value: "disabled",
2553
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2554
+ # },
2555
+ # {
2556
+ # name: "serviceLongArnFormat",
2557
+ # value: "enabled",
2558
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2559
+ # },
2560
+ # {
2561
+ # name: "taskLongArnFormat",
2562
+ # value: "disabled",
2563
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2564
+ # },
2565
+ # ],
2566
+ # }
2567
+ #
2568
+ # @example Example: To view the effective account settings for a specific IAM user or IAM role
2569
+ #
2570
+ # # This example displays the effective account settings for the specified user or role.
2571
+ #
2572
+ # resp = client.list_account_settings({
2573
+ # effective_settings: true,
2574
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2575
+ # })
2576
+ #
2577
+ # resp.to_h outputs the following:
2578
+ # {
2579
+ # settings: [
2580
+ # {
2581
+ # name: "containerInstanceLongArnFormat",
2582
+ # value: "disabled",
2583
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2584
+ # },
2585
+ # {
2586
+ # name: "serviceLongArnFormat",
2587
+ # value: "enabled",
2588
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2589
+ # },
2590
+ # {
2591
+ # name: "taskLongArnFormat",
2592
+ # value: "disabled",
2593
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
2594
+ # },
2595
+ # ],
2596
+ # }
2597
+ #
2501
2598
  # @example Request syntax with placeholder values
2502
2599
  #
2503
2600
  # resp = client.list_account_settings({
@@ -2681,7 +2778,7 @@ module Aws::ECS
2681
2778
  #
2682
2779
  #
2683
2780
  #
2684
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
2781
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
2685
2782
  #
2686
2783
  # @option params [String] :cluster
2687
2784
  # The short name or full Amazon Resource Name (ARN) of the cluster that
@@ -2696,7 +2793,7 @@ module Aws::ECS
2696
2793
  #
2697
2794
  #
2698
2795
  #
2699
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
2796
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
2700
2797
  #
2701
2798
  # @option params [String] :next_token
2702
2799
  # The `nextToken` value returned from a previous paginated
@@ -3282,11 +3379,21 @@ module Aws::ECS
3282
3379
  req.send_request(options)
3283
3380
  end
3284
3381
 
3285
- # Modifies the ARN and resource ID format of a resource for a specified
3286
- # IAM user, IAM role, or the root user for an account. You can specify
3287
- # whether the new ARN and resource ID format are enabled for new
3288
- # resources that are created. Enabling this setting is required to use
3289
- # new Amazon ECS features such as resource tagging.
3382
+ # Modifies the ARN and resource ID format of a resource type for a
3383
+ # specified IAM user, IAM role, or the root user for an account. If the
3384
+ # account setting for the root user is changed, it sets the default
3385
+ # setting for all of the IAM users and roles for which no individual
3386
+ # account setting has been set. The opt-in and opt-out account setting
3387
+ # can be set for each Amazon ECS resource separately. The ARN and
3388
+ # resource ID format of a resource will be defined by the opt-in status
3389
+ # of the IAM user or role that created the resource. Enabling this
3390
+ # setting is required to use new Amazon ECS features such as resource
3391
+ # tagging. For more information, see [Amazon Resource Names (ARNs) and
3392
+ # IDs][1] in the *Amazon Elastic Container Service Developer Guide*.
3393
+ #
3394
+ #
3395
+ #
3396
+ # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-resource-ids.html
3290
3397
  #
3291
3398
  # @option params [required, String] :name
3292
3399
  # The resource name for which to enable the new format. If
@@ -3305,13 +3412,55 @@ module Aws::ECS
3305
3412
  # root user. If you specify the root user, it modifies the ARN and
3306
3413
  # resource ID format for all IAM users, IAM roles, and the root user of
3307
3414
  # the account unless an IAM user or role explicitly overrides these
3308
- # settings for themselves. If this field is omitted, the setting are
3415
+ # settings for themselves. If this field is omitted, the settings are
3309
3416
  # changed only for the authenticated user.
3310
3417
  #
3311
3418
  # @return [Types::PutAccountSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3312
3419
  #
3313
3420
  # * {Types::PutAccountSettingResponse#setting #setting} => Types::Setting
3314
3421
  #
3422
+ #
3423
+ # @example Example: To modify your account settings
3424
+ #
3425
+ # # This example modifies your account settings to opt in to the new ARN and resource ID format for Amazon ECS services. If
3426
+ # # you’re using this command as the root user, then changes apply to the entire AWS account, unless an IAM user or role
3427
+ # # explicitly overrides these settings for themselves.
3428
+ #
3429
+ # resp = client.put_account_setting({
3430
+ # name: "serviceLongArnFormat",
3431
+ # value: "enabled",
3432
+ # })
3433
+ #
3434
+ # resp.to_h outputs the following:
3435
+ # {
3436
+ # setting: {
3437
+ # name: "serviceLongArnFormat",
3438
+ # value: "enabled",
3439
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
3440
+ # },
3441
+ # }
3442
+ #
3443
+ # @example Example: To modify the account settings for a specific IAM user or IAM role
3444
+ #
3445
+ # # This example modifies the account setting for a specific IAM user or IAM role to opt in to the new ARN and resource ID
3446
+ # # format for Amazon ECS container instances. If you’re using this command as the root user, then changes apply to the
3447
+ # # entire AWS account, unless an IAM user or role explicitly overrides these settings for themselves.
3448
+ #
3449
+ # resp = client.put_account_setting({
3450
+ # name: "containerInstanceLongArnFormat",
3451
+ # value: "enabled",
3452
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
3453
+ # })
3454
+ #
3455
+ # resp.to_h outputs the following:
3456
+ # {
3457
+ # setting: {
3458
+ # name: "containerInstanceLongArnFormat",
3459
+ # value: "enabled",
3460
+ # principal_arn: "arn:aws:iam::<aws_account_id>:user/principalName",
3461
+ # },
3462
+ # }
3463
+ #
3315
3464
  # @example Request syntax with placeholder values
3316
3465
  #
3317
3466
  # resp = client.put_account_setting({
@@ -3335,6 +3484,70 @@ module Aws::ECS
3335
3484
  req.send_request(options)
3336
3485
  end
3337
3486
 
3487
+ # Modifies the ARN and resource ID format of a resource type for all IAM
3488
+ # users on an account for which no individual account setting has been
3489
+ # set. Enabling this setting is required to use new Amazon ECS features
3490
+ # such as resource tagging.
3491
+ #
3492
+ # @option params [required, String] :name
3493
+ # The resource type to enable the new format for. If
3494
+ # `serviceLongArnFormat` is specified, the ARN for your Amazon ECS
3495
+ # services is affected. If `taskLongArnFormat` is specified, the ARN and
3496
+ # resource ID for your Amazon ECS tasks are affected. If
3497
+ # `containerInstanceLongArnFormat` is specified, the ARN and resource ID
3498
+ # for your Amazon ECS container instances are affected.
3499
+ #
3500
+ # @option params [required, String] :value
3501
+ # The account setting value for the specified principal ARN. Accepted
3502
+ # values are `enabled` and `disabled`.
3503
+ #
3504
+ # @return [Types::PutAccountSettingDefaultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3505
+ #
3506
+ # * {Types::PutAccountSettingDefaultResponse#setting #setting} => Types::Setting
3507
+ #
3508
+ #
3509
+ # @example Example: To modify the default account settings for all IAM users or roles on an account
3510
+ #
3511
+ # # This example modifies the default account setting for the specified resource for all IAM users or roles on an account.
3512
+ # # These changes apply to the entire AWS account, unless an IAM user or role explicitly overrides these settings for
3513
+ # # themselves.
3514
+ #
3515
+ # resp = client.put_account_setting_default({
3516
+ # name: "serviceLongArnFormat",
3517
+ # value: "enabled",
3518
+ # })
3519
+ #
3520
+ # resp.to_h outputs the following:
3521
+ # {
3522
+ # setting: {
3523
+ # name: "serviceLongArnFormat",
3524
+ # value: "enabled",
3525
+ # principal_arn: "arn:aws:iam::<aws_account_id>:root",
3526
+ # },
3527
+ # }
3528
+ #
3529
+ # @example Request syntax with placeholder values
3530
+ #
3531
+ # resp = client.put_account_setting_default({
3532
+ # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat
3533
+ # value: "String", # required
3534
+ # })
3535
+ #
3536
+ # @example Response structure
3537
+ #
3538
+ # resp.setting.name #=> String, one of "serviceLongArnFormat", "taskLongArnFormat", "containerInstanceLongArnFormat"
3539
+ # resp.setting.value #=> String
3540
+ # resp.setting.principal_arn #=> String
3541
+ #
3542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAccountSettingDefault AWS API Documentation
3543
+ #
3544
+ # @overload put_account_setting_default(params = {})
3545
+ # @param [Hash] params ({})
3546
+ def put_account_setting_default(params = {}, options = {})
3547
+ req = build_request(:put_account_setting_default, params)
3548
+ req.send_request(options)
3549
+ end
3550
+
3338
3551
  # Create or update an attribute on an Amazon ECS resource. If the
3339
3552
  # attribute does not exist, it is created. If the attribute exists, its
3340
3553
  # value is replaced with the specified value. To delete an attribute,
@@ -3343,7 +3556,7 @@ module Aws::ECS
3343
3556
  #
3344
3557
  #
3345
3558
  #
3346
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html#attributes
3559
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html#attributes
3347
3560
  #
3348
3561
  # @option params [String] :cluster
3349
3562
  # The short name or full Amazon Resource Name (ARN) of the cluster that
@@ -3569,8 +3782,8 @@ module Aws::ECS
3569
3782
  #
3570
3783
  #
3571
3784
  #
3572
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html
3573
- # [2]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
3785
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html
3786
+ # [2]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
3574
3787
  # [3]: https://docs.docker.com/engine/reference/run/#/network-settings
3575
3788
  # [4]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html
3576
3789
  #
@@ -3589,7 +3802,7 @@ module Aws::ECS
3589
3802
  #
3590
3803
  #
3591
3804
  #
3592
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
3805
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
3593
3806
  #
3594
3807
  # @option params [String] :execution_role_arn
3595
3808
  # The Amazon Resource Name (ARN) of the task execution role that the
@@ -4198,7 +4411,7 @@ module Aws::ECS
4198
4411
  #
4199
4412
  #
4200
4413
  #
4201
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/scheduling_tasks.html
4414
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/scheduling_tasks.html
4202
4415
  #
4203
4416
  # @option params [String] :cluster
4204
4417
  # The short name or full Amazon Resource Name (ARN) of the cluster on
@@ -4262,7 +4475,7 @@ module Aws::ECS
4262
4475
  #
4263
4476
  #
4264
4477
  #
4265
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
4478
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
4266
4479
  #
4267
4480
  # @option params [String] :platform_version
4268
4481
  # The platform version the task should run. A platform version is only
@@ -4273,7 +4486,7 @@ module Aws::ECS
4273
4486
  #
4274
4487
  #
4275
4488
  #
4276
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
4489
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
4277
4490
  #
4278
4491
  # @option params [Types::NetworkConfiguration] :network_configuration
4279
4492
  # The network configuration for the task. This parameter is required for
@@ -4517,7 +4730,7 @@ module Aws::ECS
4517
4730
  #
4518
4731
  #
4519
4732
  #
4520
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/scheduling_tasks.html
4733
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/scheduling_tasks.html
4521
4734
  #
4522
4735
  # @option params [String] :cluster
4523
4736
  # The short name or full Amazon Resource Name (ARN) of the cluster on
@@ -4754,7 +4967,7 @@ module Aws::ECS
4754
4967
  #
4755
4968
  #
4756
4969
  #
4757
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
4970
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
4758
4971
  #
4759
4972
  # @option params [String] :cluster
4760
4973
  # The short name or full Amazon Resource Name (ARN) of the cluster that
@@ -5134,7 +5347,7 @@ module Aws::ECS
5134
5347
  #
5135
5348
  #
5136
5349
  #
5137
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html#manually_update_agent
5350
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html#manually_update_agent
5138
5351
  #
5139
5352
  # @option params [String] :cluster
5140
5353
  # The short name or full Amazon Resource Name (ARN) of the cluster that
@@ -5503,7 +5716,7 @@ module Aws::ECS
5503
5716
  #
5504
5717
  #
5505
5718
  #
5506
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5719
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5507
5720
  #
5508
5721
  # @option params [Boolean] :force_new_deployment
5509
5722
  # Whether to force a new deployment of the service. Deployments are not
@@ -5696,7 +5909,7 @@ module Aws::ECS
5696
5909
  params: params,
5697
5910
  config: config)
5698
5911
  context[:gem_name] = 'aws-sdk-ecs'
5699
- context[:gem_version] = '1.29.0'
5912
+ context[:gem_version] = '1.30.0'
5700
5913
  Seahorse::Client::Request.new(handlers, context)
5701
5914
  end
5702
5915
 
@@ -158,6 +158,8 @@ module Aws::ECS
158
158
  PortMapping = Shapes::StructureShape.new(name: 'PortMapping')
159
159
  PortMappingList = Shapes::ListShape.new(name: 'PortMappingList')
160
160
  PropagateTags = Shapes::StringShape.new(name: 'PropagateTags')
161
+ PutAccountSettingDefaultRequest = Shapes::StructureShape.new(name: 'PutAccountSettingDefaultRequest')
162
+ PutAccountSettingDefaultResponse = Shapes::StructureShape.new(name: 'PutAccountSettingDefaultResponse')
161
163
  PutAccountSettingRequest = Shapes::StructureShape.new(name: 'PutAccountSettingRequest')
162
164
  PutAccountSettingResponse = Shapes::StructureShape.new(name: 'PutAccountSettingResponse')
163
165
  PutAttributesRequest = Shapes::StructureShape.new(name: 'PutAttributesRequest')
@@ -770,6 +772,13 @@ module Aws::ECS
770
772
 
771
773
  PortMappingList.member = Shapes::ShapeRef.new(shape: PortMapping)
772
774
 
775
+ PutAccountSettingDefaultRequest.add_member(:name, Shapes::ShapeRef.new(shape: SettingName, required: true, location_name: "name"))
776
+ PutAccountSettingDefaultRequest.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "value"))
777
+ PutAccountSettingDefaultRequest.struct_class = Types::PutAccountSettingDefaultRequest
778
+
779
+ PutAccountSettingDefaultResponse.add_member(:setting, Shapes::ShapeRef.new(shape: Setting, location_name: "setting"))
780
+ PutAccountSettingDefaultResponse.struct_class = Types::PutAccountSettingDefaultResponse
781
+
773
782
  PutAccountSettingRequest.add_member(:name, Shapes::ShapeRef.new(shape: SettingName, required: true, location_name: "name"))
774
783
  PutAccountSettingRequest.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "value"))
775
784
  PutAccountSettingRequest.add_member(:principal_arn, Shapes::ShapeRef.new(shape: String, location_name: "principalArn"))
@@ -1496,6 +1505,17 @@ module Aws::ECS
1496
1505
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1497
1506
  end)
1498
1507
 
1508
+ api.add_operation(:put_account_setting_default, Seahorse::Model::Operation.new.tap do |o|
1509
+ o.name = "PutAccountSettingDefault"
1510
+ o.http_method = "POST"
1511
+ o.http_request_uri = "/"
1512
+ o.input = Shapes::ShapeRef.new(shape: PutAccountSettingDefaultRequest)
1513
+ o.output = Shapes::ShapeRef.new(shape: PutAccountSettingDefaultResponse)
1514
+ o.errors << Shapes::ShapeRef.new(shape: ServerException)
1515
+ o.errors << Shapes::ShapeRef.new(shape: ClientException)
1516
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1517
+ end)
1518
+
1499
1519
  api.add_operation(:put_attributes, Seahorse::Model::Operation.new.tap do |o|
1500
1520
  o.name = "PutAttributes"
1501
1521
  o.http_method = "POST"
@@ -74,7 +74,7 @@ module Aws::ECS
74
74
  #
75
75
  #
76
76
  #
77
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html#attributes
77
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html#attributes
78
78
  #
79
79
  # @note When making an API call, you may pass Attribute
80
80
  # data as a hash:
@@ -131,7 +131,7 @@ module Aws::ECS
131
131
  #
132
132
  # @!attribute [rw] subnets
133
133
  # The subnets associated with the task or service. There is a limit of
134
- # 16 subnets able to be specified per `AwsVpcConfiguration`.
134
+ # 16 subnets that can be specified per `AwsVpcConfiguration`.
135
135
  #
136
136
  # <note markdown="1"> All specified subnets must be from the same VPC.
137
137
  #
@@ -141,8 +141,8 @@ module Aws::ECS
141
141
  # @!attribute [rw] security_groups
142
142
  # The security groups associated with the task or service. If you do
143
143
  # not specify a security group, the default security group for the VPC
144
- # is used. There is a limit of five security groups able to be
145
- # specified per `AwsVpcConfiguration`.
144
+ # is used. There is a limit of 5 security groups that can be specified
145
+ # per `AwsVpcConfiguration`.
146
146
  #
147
147
  # <note markdown="1"> All specified security groups must be from the same VPC.
148
148
  #
@@ -739,7 +739,7 @@ module Aws::ECS
739
739
  #
740
740
  #
741
741
  #
742
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html
742
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html
743
743
  # @return [Boolean]
744
744
  #
745
745
  # @!attribute [rw] entry_point
@@ -767,7 +767,9 @@ module Aws::ECS
767
767
  # `Cmd` in the [Create a container][1] section of the [Docker Remote
768
768
  # API][2] and the `COMMAND` parameter to [docker run][3]. For more
769
769
  # information, see
770
- # [https://docs.docker.com/engine/reference/builder/#cmd][4].
770
+ # [https://docs.docker.com/engine/reference/builder/#cmd][4]. If there
771
+ # are multiple arguments, each argument should be a separated string
772
+ # in the array.
771
773
  #
772
774
  #
773
775
  #
@@ -832,7 +834,13 @@ module Aws::ECS
832
834
  # @return [Types::LinuxParameters]
833
835
  #
834
836
  # @!attribute [rw] secrets
835
- # The secrets to pass to the container.
837
+ # The secrets to pass to the container. For more information, see
838
+ # [Specifying Sensitive Data][1] in the *Amazon Elastic Container
839
+ # Service Developer Guide*.
840
+ #
841
+ #
842
+ #
843
+ # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html
836
844
  # @return [Array<Types::Secret>]
837
845
  #
838
846
  # @!attribute [rw] hostname
@@ -1009,7 +1017,7 @@ module Aws::ECS
1009
1017
  # [1]: https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate
1010
1018
  # [2]: https://docs.docker.com/engine/api/v1.35/
1011
1019
  # [3]: https://docs.docker.com/engine/reference/run/
1012
- # [4]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1020
+ # [4]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1013
1021
  # @return [Array<String>]
1014
1022
  #
1015
1023
  # @!attribute [rw] interactive
@@ -1124,7 +1132,7 @@ module Aws::ECS
1124
1132
  # [2]: https://docs.docker.com/engine/api/v1.35/
1125
1133
  # [3]: https://docs.docker.com/engine/reference/run/
1126
1134
  # [4]: https://docs.docker.com/engine/admin/logging/overview/
1127
- # [5]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1135
+ # [5]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
1128
1136
  # @return [Types::LogConfiguration]
1129
1137
  #
1130
1138
  # @!attribute [rw] health_check
@@ -1275,7 +1283,7 @@ module Aws::ECS
1275
1283
  #
1276
1284
  #
1277
1285
  #
1278
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-draining.html
1286
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/container-instance-draining.html
1279
1287
  # @return [String]
1280
1288
  #
1281
1289
  # @!attribute [rw] agent_connected
@@ -1693,7 +1701,7 @@ module Aws::ECS
1693
1701
  #
1694
1702
  #
1695
1703
  #
1696
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
1704
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
1697
1705
  # @return [String]
1698
1706
  #
1699
1707
  # @!attribute [rw] platform_version
@@ -1706,7 +1714,7 @@ module Aws::ECS
1706
1714
  #
1707
1715
  #
1708
1716
  #
1709
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
1717
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
1710
1718
  # @return [String]
1711
1719
  #
1712
1720
  # @!attribute [rw] role
@@ -1736,7 +1744,7 @@ module Aws::ECS
1736
1744
  #
1737
1745
  #
1738
1746
  # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/using-service-linked-roles.html
1739
- # [2]: http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names
1747
+ # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html#identifiers-friendly-names
1740
1748
  # @return [String]
1741
1749
  #
1742
1750
  # @!attribute [rw] deployment_configuration
@@ -2120,7 +2128,7 @@ module Aws::ECS
2120
2128
  #
2121
2129
  #
2122
2130
  #
2123
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
2131
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
2124
2132
  # @return [String]
2125
2133
  #
2126
2134
  # @!attribute [rw] platform_version
@@ -2133,7 +2141,7 @@ module Aws::ECS
2133
2141
  #
2134
2142
  #
2135
2143
  #
2136
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
2144
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
2137
2145
  # @return [String]
2138
2146
  #
2139
2147
  # @!attribute [rw] network_configuration
@@ -3461,7 +3469,7 @@ module Aws::ECS
3461
3469
  #
3462
3470
  #
3463
3471
  #
3464
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
3472
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
3465
3473
  # @return [String]
3466
3474
  #
3467
3475
  # @!attribute [rw] next_token
@@ -4062,7 +4070,7 @@ module Aws::ECS
4062
4070
  #
4063
4071
  #
4064
4072
  #
4065
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_awslogs.html
4073
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_awslogs.html
4066
4074
  # [2]: https://github.com/aws/amazon-ecs-agent
4067
4075
  # @return [String]
4068
4076
  #
@@ -4221,7 +4229,7 @@ module Aws::ECS
4221
4229
  #
4222
4230
  #
4223
4231
  #
4224
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
4232
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
4225
4233
  #
4226
4234
  # @note When making an API call, you may pass PlacementConstraint
4227
4235
  # data as a hash:
@@ -4248,7 +4256,7 @@ module Aws::ECS
4248
4256
  #
4249
4257
  #
4250
4258
  #
4251
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
4259
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
4252
4260
  # @return [String]
4253
4261
  #
4254
4262
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PlacementConstraint AWS API Documentation
@@ -4265,7 +4273,7 @@ module Aws::ECS
4265
4273
  #
4266
4274
  #
4267
4275
  #
4268
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html
4276
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html
4269
4277
  #
4270
4278
  # @note When making an API call, you may pass PlacementStrategy
4271
4279
  # data as a hash:
@@ -4403,14 +4411,14 @@ module Aws::ECS
4403
4411
  # </note>
4404
4412
  #
4405
4413
  # The default reserved ports are 22 for SSH, the Docker ports 2375 and
4406
- # 2376, and the Amazon ECS container agent ports 51678 and 51679. Any
4407
- # host port that was previously specified in a running task is also
4414
+ # 2376, and the Amazon ECS container agent ports 51678-51680. Any host
4415
+ # port that was previously specified in a running task is also
4408
4416
  # reserved while the task is running (after a task stops, the host
4409
4417
  # port is released). The current reserved ports are displayed in the
4410
4418
  # `remainingResources` of DescribeContainerInstances output. A
4411
- # container instance may have up to 100 reserved ports at a time,
4412
- # including the default reserved ports. Aautomatically assigned ports
4413
- # do not count toward the 100 reserved ports limit.
4419
+ # container instance can have up to 100 reserved ports at a time,
4420
+ # including the default reserved ports. Automatically assigned ports
4421
+ # don't count toward the 100 reserved ports limit.
4414
4422
  # @return [Integer]
4415
4423
  #
4416
4424
  # @!attribute [rw] protocol
@@ -4427,6 +4435,47 @@ module Aws::ECS
4427
4435
  include Aws::Structure
4428
4436
  end
4429
4437
 
4438
+ # @note When making an API call, you may pass PutAccountSettingDefaultRequest
4439
+ # data as a hash:
4440
+ #
4441
+ # {
4442
+ # name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat
4443
+ # value: "String", # required
4444
+ # }
4445
+ #
4446
+ # @!attribute [rw] name
4447
+ # The resource type to enable the new format for. If
4448
+ # `serviceLongArnFormat` is specified, the ARN for your Amazon ECS
4449
+ # services is affected. If `taskLongArnFormat` is specified, the ARN
4450
+ # and resource ID for your Amazon ECS tasks are affected. If
4451
+ # `containerInstanceLongArnFormat` is specified, the ARN and resource
4452
+ # ID for your Amazon ECS container instances are affected.
4453
+ # @return [String]
4454
+ #
4455
+ # @!attribute [rw] value
4456
+ # The account setting value for the specified principal ARN. Accepted
4457
+ # values are `enabled` and `disabled`.
4458
+ # @return [String]
4459
+ #
4460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAccountSettingDefaultRequest AWS API Documentation
4461
+ #
4462
+ class PutAccountSettingDefaultRequest < Struct.new(
4463
+ :name,
4464
+ :value)
4465
+ include Aws::Structure
4466
+ end
4467
+
4468
+ # @!attribute [rw] setting
4469
+ # The current account setting for a resource.
4470
+ # @return [Types::Setting]
4471
+ #
4472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/PutAccountSettingDefaultResponse AWS API Documentation
4473
+ #
4474
+ class PutAccountSettingDefaultResponse < Struct.new(
4475
+ :setting)
4476
+ include Aws::Structure
4477
+ end
4478
+
4430
4479
  # @note When making an API call, you may pass PutAccountSettingRequest
4431
4480
  # data as a hash:
4432
4481
  #
@@ -4455,7 +4504,7 @@ module Aws::ECS
4455
4504
  # root user. If you specify the root user, it modifies the ARN and
4456
4505
  # resource ID format for all IAM users, IAM roles, and the root user
4457
4506
  # of the account unless an IAM user or role explicitly overrides these
4458
- # settings for themselves. If this field is omitted, the setting are
4507
+ # settings for themselves. If this field is omitted, the settings are
4459
4508
  # changed only for the authenticated user.
4460
4509
  # @return [String]
4461
4510
  #
@@ -4832,7 +4881,7 @@ module Aws::ECS
4832
4881
  #
4833
4882
  #
4834
4883
  #
4835
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
4884
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html
4836
4885
  # @return [String]
4837
4886
  #
4838
4887
  # @!attribute [rw] execution_role_arn
@@ -5181,7 +5230,13 @@ module Aws::ECS
5181
5230
  end
5182
5231
 
5183
5232
  # The type and amount of a resource to assign to a container. The only
5184
- # supported resource is a GPU.
5233
+ # supported resource is a GPU. For more information, see [Working with
5234
+ # GPUs on Amazon ECS][1] in the *Amazon Elastic Container Service
5235
+ # Developer Guide*
5236
+ #
5237
+ #
5238
+ #
5239
+ # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html
5185
5240
  #
5186
5241
  # @note When making an API call, you may pass ResourceRequirement
5187
5242
  # data as a hash:
@@ -5192,12 +5247,15 @@ module Aws::ECS
5192
5247
  # }
5193
5248
  #
5194
5249
  # @!attribute [rw] value
5195
- # The number of GPUs to assign to a container.
5250
+ # The number of physical `GPUs` the Amazon ECS container agent will
5251
+ # reserve for the container. The number of GPUs reserved for all
5252
+ # containers in a task should not exceed the number of available GPUs
5253
+ # on the container instance the task is launched on.
5196
5254
  # @return [String]
5197
5255
  #
5198
5256
  # @!attribute [rw] type
5199
- # The type of resource a container desires. The only supported value
5200
- # is `GPU`.
5257
+ # The type of resource to assign to a container. The only supported
5258
+ # value is `GPU`.
5201
5259
  # @return [String]
5202
5260
  #
5203
5261
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ResourceRequirement AWS API Documentation
@@ -5343,7 +5401,7 @@ module Aws::ECS
5343
5401
  #
5344
5402
  #
5345
5403
  #
5346
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
5404
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
5347
5405
  # @return [String]
5348
5406
  #
5349
5407
  # @!attribute [rw] platform_version
@@ -5355,7 +5413,7 @@ module Aws::ECS
5355
5413
  #
5356
5414
  #
5357
5415
  #
5358
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5416
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5359
5417
  # @return [String]
5360
5418
  #
5361
5419
  # @!attribute [rw] network_configuration
@@ -5458,7 +5516,13 @@ module Aws::ECS
5458
5516
  include Aws::Structure
5459
5517
  end
5460
5518
 
5461
- # An object representing the secret to expose to your container.
5519
+ # An object representing the secret to expose to your container. For
5520
+ # more information, see [Specifying Sensitive Data][1] in the *Amazon
5521
+ # Elastic Container Service Developer Guide*.
5522
+ #
5523
+ #
5524
+ #
5525
+ # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html
5462
5526
  #
5463
5527
  # @note When making an API call, you may pass Secret
5464
5528
  # data as a hash:
@@ -5473,9 +5537,19 @@ module Aws::ECS
5473
5537
  # @return [String]
5474
5538
  #
5475
5539
  # @!attribute [rw] value_from
5476
- # The secret to expose to the container. Supported values are either
5477
- # the full ARN or the name of the parameter in the AWS Systems Manager
5478
- # Parameter Store.
5540
+ # The secret to expose to the container. If your task is using the EC2
5541
+ # launch type, then supported values are either the full ARN of the
5542
+ # AWS Secrets Manager secret or the full ARN of the parameter in the
5543
+ # AWS Systems Manager Parameter Store. If your task is using the
5544
+ # Fargate launch type, then the only supported value is the full ARN
5545
+ # of the parameter in the AWS Systems Manager Parameter Store.
5546
+ #
5547
+ # <note markdown="1"> If the AWS Systems Manager Parameter Store parameter exists in the
5548
+ # same Region as the task you are launching, then you can use either
5549
+ # the full ARN or name of the parameter. If the parameter exists in a
5550
+ # different Region, then the full ARN must be specified.
5551
+ #
5552
+ # </note>
5479
5553
  # @return [String]
5480
5554
  #
5481
5555
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/Secret AWS API Documentation
@@ -5554,7 +5628,7 @@ module Aws::ECS
5554
5628
  #
5555
5629
  #
5556
5630
  #
5557
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
5631
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
5558
5632
  # @return [String]
5559
5633
  #
5560
5634
  # @!attribute [rw] platform_version
@@ -5567,7 +5641,7 @@ module Aws::ECS
5567
5641
  #
5568
5642
  #
5569
5643
  #
5570
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5644
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
5571
5645
  # @return [String]
5572
5646
  #
5573
5647
  # @!attribute [rw] task_definition
@@ -6526,7 +6600,7 @@ module Aws::ECS
6526
6600
  #
6527
6601
  #
6528
6602
  #
6529
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
6603
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
6530
6604
  # @return [String]
6531
6605
  #
6532
6606
  # @!attribute [rw] platform_version
@@ -6539,7 +6613,7 @@ module Aws::ECS
6539
6613
  #
6540
6614
  #
6541
6615
  #
6542
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
6616
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
6543
6617
  # @return [String]
6544
6618
  #
6545
6619
  # @!attribute [rw] attachments
@@ -6623,7 +6697,7 @@ module Aws::ECS
6623
6697
  #
6624
6698
  #
6625
6699
  #
6626
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html
6700
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html
6627
6701
  # @return [Array<Types::ContainerDefinition>]
6628
6702
  #
6629
6703
  # @!attribute [rw] family
@@ -6644,7 +6718,7 @@ module Aws::ECS
6644
6718
  #
6645
6719
  #
6646
6720
  #
6647
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows_task_IAM_roles.html
6721
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/windows_task_IAM_roles.html
6648
6722
  # @return [String]
6649
6723
  #
6650
6724
  # @!attribute [rw] execution_role_arn
@@ -6723,7 +6797,7 @@ module Aws::ECS
6723
6797
  #
6724
6798
  #
6725
6799
  #
6726
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definitions.html
6800
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definitions.html
6727
6801
  # @return [Array<Types::Volume>]
6728
6802
  #
6729
6803
  # @!attribute [rw] status
@@ -6748,7 +6822,7 @@ module Aws::ECS
6748
6822
  #
6749
6823
  #
6750
6824
  #
6751
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
6825
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
6752
6826
  # @return [Array<String>]
6753
6827
  #
6754
6828
  # @!attribute [rw] requires_compatibilities
@@ -6903,7 +6977,7 @@ module Aws::ECS
6903
6977
  #
6904
6978
  #
6905
6979
  #
6906
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
6980
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
6907
6981
  #
6908
6982
  # @note When making an API call, you may pass TaskDefinitionPlacementConstraint
6909
6983
  # data as a hash:
@@ -6927,7 +7001,7 @@ module Aws::ECS
6927
7001
  #
6928
7002
  #
6929
7003
  #
6930
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
7004
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
6931
7005
  # @return [String]
6932
7006
  #
6933
7007
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/TaskDefinitionPlacementConstraint AWS API Documentation
@@ -7073,7 +7147,7 @@ module Aws::ECS
7073
7147
  #
7074
7148
  #
7075
7149
  #
7076
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
7150
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html
7077
7151
  # @return [String]
7078
7152
  #
7079
7153
  # @!attribute [rw] platform_version
@@ -7086,7 +7160,7 @@ module Aws::ECS
7086
7160
  #
7087
7161
  #
7088
7162
  #
7089
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
7163
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
7090
7164
  # @return [String]
7091
7165
  #
7092
7166
  # @!attribute [rw] network_configuration
@@ -7425,7 +7499,7 @@ module Aws::ECS
7425
7499
  #
7426
7500
  #
7427
7501
  #
7428
- # [1]: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
7502
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html
7429
7503
  # @return [String]
7430
7504
  #
7431
7505
  # @!attribute [rw] force_new_deployment
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-04 00:00:00.000000000 Z
11
+ date: 2019-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core