aws-sdk-ecs 1.203.0 → 1.205.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecs/client.rb +44 -21
- data/lib/aws-sdk-ecs/client_api.rb +2 -0
- data/lib/aws-sdk-ecs/customizations.rb +0 -8
- data/lib/aws-sdk-ecs/types.rb +70 -32
- data/lib/aws-sdk-ecs.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efcb22e2ac4d043597f1353ad23f4ee49ca1c3c0a2ce05bd2b5901820d12da2f
|
4
|
+
data.tar.gz: e378a98df4a0fd037c174541728e261f5697b52fd51e15b676347a7bb88aed42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a2ee5a3fc4a0c99c6c6e5e9c753b50fa8c2894362248ae2108ccea98da0047c3886a45e91ea75e369ea0581eb280ea64fdccfab7110a75e3b8ab1e586345c03
|
7
|
+
data.tar.gz: 0ce427cc8fa23bb3da8db00a9971969b30f7f2698ba37c23638e9f5316dc9e1a1f4a9c2b4d99ae506294d70767edad95aac1312e9dc166d70cf31758d09bb3cf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.205.0 (2025-09-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release supports hook details for Amazon ECS lifecycle hooks.
|
8
|
+
|
9
|
+
1.204.0 (2025-09-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This is a documentation only release that adds additional information for Amazon ECS Availability Zone rebalancing.
|
13
|
+
|
4
14
|
1.203.0 (2025-08-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.205.0
|
data/lib/aws-sdk-ecs/client.rb
CHANGED
@@ -1093,6 +1093,19 @@ module Aws::ECS
|
|
1093
1093
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
|
1094
1094
|
# Developer Guide</i> </i>.
|
1095
1095
|
#
|
1096
|
+
# The default behavior of `AvailabilityZoneRebalancing` differs between
|
1097
|
+
# create and update requests:
|
1098
|
+
#
|
1099
|
+
# * For create service requests, when no value is specified for
|
1100
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults the value to
|
1101
|
+
# `ENABLED`.
|
1102
|
+
#
|
1103
|
+
# * For update service requests, when no value is specified for
|
1104
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults to the existing
|
1105
|
+
# service’s `AvailabilityZoneRebalancing` value. If the service never
|
1106
|
+
# had an `AvailabilityZoneRebalancing` value set, Amazon ECS treats
|
1107
|
+
# this as `DISABLED`.
|
1108
|
+
#
|
1096
1109
|
#
|
1097
1110
|
#
|
1098
1111
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
|
@@ -1102,13 +1115,13 @@ module Aws::ECS
|
|
1102
1115
|
# your service. For more information, see [Service load balancing][1] in
|
1103
1116
|
# the *Amazon Elastic Container Service Developer Guide*.
|
1104
1117
|
#
|
1105
|
-
# If the service uses the
|
1106
|
-
#
|
1107
|
-
#
|
1108
|
-
#
|
1109
|
-
#
|
1110
|
-
#
|
1111
|
-
#
|
1118
|
+
# If the service uses the `ECS` deployment controller and using either
|
1119
|
+
# an Application Load Balancer or Network Load Balancer, you must
|
1120
|
+
# specify one or more target group ARNs to attach to the service. The
|
1121
|
+
# service-linked role is required for services that use multiple target
|
1122
|
+
# groups. For more information, see [Using service-linked roles for
|
1123
|
+
# Amazon ECS][2] in the *Amazon Elastic Container Service Developer
|
1124
|
+
# Guide*.
|
1112
1125
|
#
|
1113
1126
|
# If the service uses the `CODE_DEPLOY` deployment controller, the
|
1114
1127
|
# service is required to use either an Application Load Balancer or
|
@@ -1288,20 +1301,13 @@ module Aws::ECS
|
|
1288
1301
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-networking.html
|
1289
1302
|
#
|
1290
1303
|
# @option params [Integer] :health_check_grace_period_seconds
|
1291
|
-
# The period of time, in seconds, that the Amazon ECS service
|
1292
|
-
# ignores unhealthy Elastic Load Balancing, VPC Lattice, and
|
1293
|
-
# health checks after a task has first started. If you
|
1294
|
-
# health check grace period value, the default value of
|
1295
|
-
# you
|
1304
|
+
# The period of time, in seconds, that the Amazon Amazon ECS service
|
1305
|
+
# scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and
|
1306
|
+
# container health checks after a task has first started. If you do not
|
1307
|
+
# specify a health check grace period value, the default value of 0 is
|
1308
|
+
# used. If you do not use any of the health checks, then
|
1296
1309
|
# `healthCheckGracePeriodSeconds` is unused.
|
1297
1310
|
#
|
1298
|
-
# If your service's tasks take a while to start and respond to health
|
1299
|
-
# checks, you can specify a health check grace period of up to
|
1300
|
-
# 2,147,483,647 seconds (about 69 years). During that time, the Amazon
|
1301
|
-
# ECS service scheduler ignores health check status. This grace period
|
1302
|
-
# can prevent the service scheduler from marking tasks as unhealthy and
|
1303
|
-
# stopping them before they have time to come up.
|
1304
|
-
#
|
1305
1311
|
# @option params [String] :scheduling_strategy
|
1306
1312
|
# The scheduling strategy to use for the service. For more information,
|
1307
1313
|
# see [Services][1].
|
@@ -1611,6 +1617,8 @@ module Aws::ECS
|
|
1611
1617
|
# hook_target_arn: "String",
|
1612
1618
|
# role_arn: "IAMRoleArn",
|
1613
1619
|
# lifecycle_stages: ["RECONCILE_SERVICE"], # accepts RECONCILE_SERVICE, PRE_SCALE_UP, POST_SCALE_UP, TEST_TRAFFIC_SHIFT, POST_TEST_TRAFFIC_SHIFT, PRODUCTION_TRAFFIC_SHIFT, POST_PRODUCTION_TRAFFIC_SHIFT
|
1620
|
+
# hook_details: {
|
1621
|
+
# },
|
1614
1622
|
# },
|
1615
1623
|
# ],
|
1616
1624
|
# },
|
@@ -9081,7 +9089,7 @@ module Aws::ECS
|
|
9081
9089
|
# @option params [Array<Types::TaskVolumeConfiguration>] :volume_configurations
|
9082
9090
|
# The details of the volume that was `configuredAtLaunch`. You can
|
9083
9091
|
# configure the size, volumeType, IOPS, throughput, snapshot and
|
9084
|
-
# encryption in
|
9092
|
+
# encryption in [TaskManagedEBSVolumeConfiguration][1]. The `name` of
|
9085
9093
|
# the volume must match the `name` from the task definition.
|
9086
9094
|
#
|
9087
9095
|
#
|
@@ -11703,6 +11711,19 @@ module Aws::ECS
|
|
11703
11711
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container Service
|
11704
11712
|
# Developer Guide</i> </i>.
|
11705
11713
|
#
|
11714
|
+
# The default behavior of `AvailabilityZoneRebalancing` differs between
|
11715
|
+
# create and update requests:
|
11716
|
+
#
|
11717
|
+
# * For create service requests, when no value is specified for
|
11718
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults the value to
|
11719
|
+
# `ENABLED`.
|
11720
|
+
#
|
11721
|
+
# * For update service requests, when no value is specified for
|
11722
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults to the existing
|
11723
|
+
# service’s `AvailabilityZoneRebalancing` value. If the service never
|
11724
|
+
# had an `AvailabilityZoneRebalancing` value set, Amazon ECS treats
|
11725
|
+
# this as `DISABLED`.
|
11726
|
+
#
|
11706
11727
|
# This parameter doesn't trigger a new service deployment.
|
11707
11728
|
#
|
11708
11729
|
#
|
@@ -11986,6 +12007,8 @@ module Aws::ECS
|
|
11986
12007
|
# hook_target_arn: "String",
|
11987
12008
|
# role_arn: "IAMRoleArn",
|
11988
12009
|
# lifecycle_stages: ["RECONCILE_SERVICE"], # accepts RECONCILE_SERVICE, PRE_SCALE_UP, POST_SCALE_UP, TEST_TRAFFIC_SHIFT, POST_TEST_TRAFFIC_SHIFT, PRODUCTION_TRAFFIC_SHIFT, POST_PRODUCTION_TRAFFIC_SHIFT
|
12010
|
+
# hook_details: {
|
12011
|
+
# },
|
11989
12012
|
# },
|
11990
12013
|
# ],
|
11991
12014
|
# },
|
@@ -12814,7 +12837,7 @@ module Aws::ECS
|
|
12814
12837
|
tracer: tracer
|
12815
12838
|
)
|
12816
12839
|
context[:gem_name] = 'aws-sdk-ecs'
|
12817
|
-
context[:gem_version] = '1.
|
12840
|
+
context[:gem_version] = '1.205.0'
|
12818
12841
|
Seahorse::Client::Request.new(handlers, context)
|
12819
12842
|
end
|
12820
12843
|
|
@@ -188,6 +188,7 @@ module Aws::ECS
|
|
188
188
|
GpuIds = Shapes::ListShape.new(name: 'GpuIds')
|
189
189
|
HealthCheck = Shapes::StructureShape.new(name: 'HealthCheck')
|
190
190
|
HealthStatus = Shapes::StringShape.new(name: 'HealthStatus')
|
191
|
+
HookDetails = Shapes::DocumentShape.new(name: 'HookDetails', document: true)
|
191
192
|
HostEntry = Shapes::StructureShape.new(name: 'HostEntry')
|
192
193
|
HostEntryList = Shapes::ListShape.new(name: 'HostEntryList')
|
193
194
|
HostVolumeProperties = Shapes::StructureShape.new(name: 'HostVolumeProperties')
|
@@ -896,6 +897,7 @@ module Aws::ECS
|
|
896
897
|
DeploymentLifecycleHook.add_member(:hook_target_arn, Shapes::ShapeRef.new(shape: String, location_name: "hookTargetArn"))
|
897
898
|
DeploymentLifecycleHook.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "roleArn"))
|
898
899
|
DeploymentLifecycleHook.add_member(:lifecycle_stages, Shapes::ShapeRef.new(shape: DeploymentLifecycleHookStageList, location_name: "lifecycleStages"))
|
900
|
+
DeploymentLifecycleHook.add_member(:hook_details, Shapes::ShapeRef.new(shape: HookDetails, location_name: "hookDetails"))
|
899
901
|
DeploymentLifecycleHook.struct_class = Types::DeploymentLifecycleHook
|
900
902
|
|
901
903
|
DeploymentLifecycleHookList.member = Shapes::ShapeRef.new(shape: DeploymentLifecycleHook)
|
data/lib/aws-sdk-ecs/types.rb
CHANGED
@@ -334,7 +334,7 @@ module Aws::ECS
|
|
334
334
|
end
|
335
335
|
|
336
336
|
# Your Amazon Web Services account was blocked. For more information,
|
337
|
-
# contact [ Amazon Web
|
337
|
+
# contact [ Amazon Web Services Support][1].
|
338
338
|
#
|
339
339
|
#
|
340
340
|
#
|
@@ -966,7 +966,7 @@ module Aws::ECS
|
|
966
966
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html
|
967
967
|
#
|
968
968
|
# @!attribute [rw] name
|
969
|
-
# The name of the cluster setting. The value is `containerInsights
|
969
|
+
# The name of the cluster setting. The value is `containerInsights`.
|
970
970
|
# @return [String]
|
971
971
|
#
|
972
972
|
# @!attribute [rw] value
|
@@ -1328,12 +1328,12 @@ module Aws::ECS
|
|
1328
1328
|
# so you can't access a container's mapped port from the host
|
1329
1329
|
# itself.
|
1330
1330
|
#
|
1331
|
-
# This parameter maps to `PortBindings` in the
|
1332
|
-
#
|
1333
|
-
#
|
1334
|
-
#
|
1335
|
-
#
|
1336
|
-
#
|
1331
|
+
# This parameter maps to `PortBindings` in the docker container create
|
1332
|
+
# command and the `--publish` option to docker run. If the network
|
1333
|
+
# mode of a task definition is set to `none`, then you can't specify
|
1334
|
+
# port mappings. If the network mode of a task definition is set to
|
1335
|
+
# `host`, then host ports must either be undefined or they must match
|
1336
|
+
# the container port in the port mapping.
|
1337
1337
|
#
|
1338
1338
|
# <note markdown="1"> After a task reaches the `RUNNING` status, manual and automatic host
|
1339
1339
|
# and container port assignments are visible in the **Network
|
@@ -2725,6 +2725,19 @@ module Aws::ECS
|
|
2725
2725
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container
|
2726
2726
|
# Service Developer Guide</i> </i>.
|
2727
2727
|
#
|
2728
|
+
# The default behavior of `AvailabilityZoneRebalancing` differs
|
2729
|
+
# between create and update requests:
|
2730
|
+
#
|
2731
|
+
# * For create service requests, when no value is specified for
|
2732
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults the value to
|
2733
|
+
# `ENABLED`.
|
2734
|
+
#
|
2735
|
+
# * For update service requests, when no value is specified for
|
2736
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults to the existing
|
2737
|
+
# service’s `AvailabilityZoneRebalancing` value. If the service
|
2738
|
+
# never had an `AvailabilityZoneRebalancing` value set, Amazon ECS
|
2739
|
+
# treats this as `DISABLED`.
|
2740
|
+
#
|
2728
2741
|
#
|
2729
2742
|
#
|
2730
2743
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
|
@@ -2735,13 +2748,13 @@ module Aws::ECS
|
|
2735
2748
|
# your service. For more information, see [Service load balancing][1]
|
2736
2749
|
# in the *Amazon Elastic Container Service Developer Guide*.
|
2737
2750
|
#
|
2738
|
-
# If the service uses the
|
2739
|
-
#
|
2740
|
-
#
|
2741
|
-
#
|
2742
|
-
#
|
2743
|
-
#
|
2744
|
-
#
|
2751
|
+
# If the service uses the `ECS` deployment controller and using either
|
2752
|
+
# an Application Load Balancer or Network Load Balancer, you must
|
2753
|
+
# specify one or more target group ARNs to attach to the service. The
|
2754
|
+
# service-linked role is required for services that use multiple
|
2755
|
+
# target groups. For more information, see [Using service-linked roles
|
2756
|
+
# for Amazon ECS][2] in the *Amazon Elastic Container Service
|
2757
|
+
# Developer Guide*.
|
2745
2758
|
#
|
2746
2759
|
# If the service uses the `CODE_DEPLOY` deployment controller, the
|
2747
2760
|
# service is required to use either an Application Load Balancer or
|
@@ -2937,19 +2950,12 @@ module Aws::ECS
|
|
2937
2950
|
# @return [Types::NetworkConfiguration]
|
2938
2951
|
#
|
2939
2952
|
# @!attribute [rw] health_check_grace_period_seconds
|
2940
|
-
# The period of time, in seconds, that the Amazon ECS service
|
2953
|
+
# The period of time, in seconds, that the Amazon Amazon ECS service
|
2941
2954
|
# scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and
|
2942
|
-
# container health checks after a task has first started. If you
|
2943
|
-
#
|
2944
|
-
#
|
2955
|
+
# container health checks after a task has first started. If you do
|
2956
|
+
# not specify a health check grace period value, the default value of
|
2957
|
+
# 0 is used. If you do not use any of the health checks, then
|
2945
2958
|
# `healthCheckGracePeriodSeconds` is unused.
|
2946
|
-
#
|
2947
|
-
# If your service's tasks take a while to start and respond to health
|
2948
|
-
# checks, you can specify a health check grace period of up to
|
2949
|
-
# 2,147,483,647 seconds (about 69 years). During that time, the Amazon
|
2950
|
-
# ECS service scheduler ignores health check status. This grace period
|
2951
|
-
# can prevent the service scheduler from marking tasks as unhealthy
|
2952
|
-
# and stopping them before they have time to come up.
|
2953
2959
|
# @return [Integer]
|
2954
2960
|
#
|
2955
2961
|
# @!attribute [rw] scheduling_strategy
|
@@ -3970,7 +3976,7 @@ module Aws::ECS
|
|
3970
3976
|
# stops the unhealthy tasks one-by-one — using the
|
3971
3977
|
# `minimumHealthyPercent` as a constraint — to clear up capacity to
|
3972
3978
|
# launch replacement tasks. For more information about how the
|
3973
|
-
# scheduler replaces unhealthy tasks, see [Amazon ECS services][1]
|
3979
|
+
# scheduler replaces unhealthy tasks, see [Amazon ECS services][1].
|
3974
3980
|
#
|
3975
3981
|
# For services that *do not* use a load balancer, the following should
|
3976
3982
|
# be noted:
|
@@ -4301,12 +4307,18 @@ module Aws::ECS
|
|
4301
4307
|
# lifecycle hook.
|
4302
4308
|
# @return [Array<String>]
|
4303
4309
|
#
|
4310
|
+
# @!attribute [rw] hook_details
|
4311
|
+
# Use this field to specify custom parameters that Amazon ECS will
|
4312
|
+
# pass to your hook target invocations (such as a Lambda function).
|
4313
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
4314
|
+
#
|
4304
4315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DeploymentLifecycleHook AWS API Documentation
|
4305
4316
|
#
|
4306
4317
|
class DeploymentLifecycleHook < Struct.new(
|
4307
4318
|
:hook_target_arn,
|
4308
4319
|
:role_arn,
|
4309
|
-
:lifecycle_stages
|
4320
|
+
:lifecycle_stages,
|
4321
|
+
:hook_details)
|
4310
4322
|
SENSITIVE = []
|
4311
4323
|
include Aws::Structure
|
4312
4324
|
end
|
@@ -9594,8 +9606,8 @@ module Aws::ECS
|
|
9594
9606
|
# @!attribute [rw] volume_configurations
|
9595
9607
|
# The details of the volume that was `configuredAtLaunch`. You can
|
9596
9608
|
# configure the size, volumeType, IOPS, throughput, snapshot and
|
9597
|
-
# encryption in
|
9598
|
-
#
|
9609
|
+
# encryption in [TaskManagedEBSVolumeConfiguration][1]. The `name` of
|
9610
|
+
# the volume must match the `name` from the task definition.
|
9599
9611
|
#
|
9600
9612
|
#
|
9601
9613
|
#
|
@@ -9933,8 +9945,8 @@ module Aws::ECS
|
|
9933
9945
|
#
|
9934
9946
|
# @!attribute [rw] health_check_grace_period_seconds
|
9935
9947
|
# The period of time, in seconds, that the Amazon ECS service
|
9936
|
-
# scheduler ignores unhealthy Elastic Load Balancing
|
9937
|
-
# checks after a task has first started.
|
9948
|
+
# scheduler ignores unhealthy Elastic Load Balancing, VPC Lattice, and
|
9949
|
+
# container health checks after a task has first started.
|
9938
9950
|
# @return [Integer]
|
9939
9951
|
#
|
9940
9952
|
# @!attribute [rw] scheduling_strategy
|
@@ -10035,6 +10047,19 @@ module Aws::ECS
|
|
10035
10047
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container
|
10036
10048
|
# Service Developer Guide</i> </i>.
|
10037
10049
|
#
|
10050
|
+
# The default behavior of `AvailabilityZoneRebalancing` differs
|
10051
|
+
# between create and update requests:
|
10052
|
+
#
|
10053
|
+
# * For create service requests, when no value is specified for
|
10054
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults the value to
|
10055
|
+
# `ENABLED`.
|
10056
|
+
#
|
10057
|
+
# * For update service requests, when no value is specified for
|
10058
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults to the existing
|
10059
|
+
# service’s `AvailabilityZoneRebalancing` value. If the service
|
10060
|
+
# never had an `AvailabilityZoneRebalancing` value set, Amazon ECS
|
10061
|
+
# treats this as `DISABLED`.
|
10062
|
+
#
|
10038
10063
|
#
|
10039
10064
|
#
|
10040
10065
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-rebalancing.html
|
@@ -13944,6 +13969,19 @@ module Aws::ECS
|
|
13944
13969
|
# Availability Zones][1] in the <i> <i>Amazon Elastic Container
|
13945
13970
|
# Service Developer Guide</i> </i>.
|
13946
13971
|
#
|
13972
|
+
# The default behavior of `AvailabilityZoneRebalancing` differs
|
13973
|
+
# between create and update requests:
|
13974
|
+
#
|
13975
|
+
# * For create service requests, when no value is specified for
|
13976
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults the value to
|
13977
|
+
# `ENABLED`.
|
13978
|
+
#
|
13979
|
+
# * For update service requests, when no value is specified for
|
13980
|
+
# `AvailabilityZoneRebalancing`, Amazon ECS defaults to the existing
|
13981
|
+
# service’s `AvailabilityZoneRebalancing` value. If the service
|
13982
|
+
# never had an `AvailabilityZoneRebalancing` value set, Amazon ECS
|
13983
|
+
# treats this as `DISABLED`.
|
13984
|
+
#
|
13947
13985
|
# This parameter doesn't trigger a new service deployment.
|
13948
13986
|
#
|
13949
13987
|
#
|
data/lib/aws-sdk-ecs.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -219,7 +219,9 @@ module Aws
|
|
219
219
|
{
|
220
220
|
hook_target_arn: ::String?,
|
221
221
|
role_arn: ::String?,
|
222
|
-
lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]
|
222
|
+
lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]?,
|
223
|
+
hook_details: {
|
224
|
+
}?
|
223
225
|
},
|
224
226
|
]?
|
225
227
|
},
|
@@ -1688,7 +1690,9 @@ module Aws
|
|
1688
1690
|
{
|
1689
1691
|
hook_target_arn: ::String?,
|
1690
1692
|
role_arn: ::String?,
|
1691
|
-
lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]
|
1693
|
+
lifecycle_stages: Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]?,
|
1694
|
+
hook_details: {
|
1695
|
+
}?
|
1692
1696
|
},
|
1693
1697
|
]?
|
1694
1698
|
},
|
data/sig/types.rbs
CHANGED
@@ -521,6 +521,7 @@ module Aws::ECS
|
|
521
521
|
attr_accessor hook_target_arn: ::String
|
522
522
|
attr_accessor role_arn: ::String
|
523
523
|
attr_accessor lifecycle_stages: ::Array[("RECONCILE_SERVICE" | "PRE_SCALE_UP" | "POST_SCALE_UP" | "TEST_TRAFFIC_SHIFT" | "POST_TEST_TRAFFIC_SHIFT" | "PRODUCTION_TRAFFIC_SHIFT" | "POST_PRODUCTION_TRAFFIC_SHIFT")]
|
524
|
+
attr_accessor hook_details: untyped
|
524
525
|
SENSITIVE: []
|
525
526
|
end
|
526
527
|
|