@aws-sdk/client-ecs 3.844.0 → 3.846.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.
- package/dist-cjs/index.js +33 -0
- package/dist-es/models/models_0.js +25 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +165 -39
- package/dist-types/commands/CreateTaskSetCommand.d.ts +12 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +31 -0
- package/dist-types/commands/DeleteTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +22 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +31 -0
- package/dist-types/commands/DescribeTaskSetsCommand.d.ts +6 -0
- package/dist-types/commands/StopTaskCommand.d.ts +2 -1
- package/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
- package/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
- package/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateServiceCommand.d.ts +59 -0
- package/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTaskSetCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +428 -274
- package/dist-types/models/models_1.d.ts +246 -1
- package/dist-types/ts3.4/commands/StopTaskCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +66 -57
- package/dist-types/ts3.4/models/models_1.d.ts +62 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -57,7 +57,9 @@ __export(index_exports, {
|
|
|
57
57
|
DeleteTaskDefinitionsCommand: () => DeleteTaskDefinitionsCommand,
|
|
58
58
|
DeleteTaskSetCommand: () => DeleteTaskSetCommand,
|
|
59
59
|
DeploymentControllerType: () => DeploymentControllerType,
|
|
60
|
+
DeploymentLifecycleHookStage: () => DeploymentLifecycleHookStage,
|
|
60
61
|
DeploymentRolloutState: () => DeploymentRolloutState,
|
|
62
|
+
DeploymentStrategy: () => DeploymentStrategy,
|
|
61
63
|
DeregisterContainerInstanceCommand: () => DeregisterContainerInstanceCommand,
|
|
62
64
|
DeregisterTaskDefinitionCommand: () => DeregisterTaskDefinitionCommand,
|
|
63
65
|
DescribeCapacityProvidersCommand: () => DescribeCapacityProvidersCommand,
|
|
@@ -134,6 +136,7 @@ __export(index_exports, {
|
|
|
134
136
|
SchedulingStrategy: () => SchedulingStrategy,
|
|
135
137
|
Scope: () => Scope,
|
|
136
138
|
ServerException: () => ServerException,
|
|
139
|
+
ServiceDeploymentLifecycleStage: () => ServiceDeploymentLifecycleStage,
|
|
137
140
|
ServiceDeploymentNotFoundException: () => ServiceDeploymentNotFoundException,
|
|
138
141
|
ServiceDeploymentRollbackMonitorsStatus: () => ServiceDeploymentRollbackMonitorsStatus,
|
|
139
142
|
ServiceDeploymentStatus: () => ServiceDeploymentStatus,
|
|
@@ -561,6 +564,19 @@ var AvailabilityZoneRebalancing = {
|
|
|
561
564
|
DISABLED: "DISABLED",
|
|
562
565
|
ENABLED: "ENABLED"
|
|
563
566
|
};
|
|
567
|
+
var DeploymentLifecycleHookStage = {
|
|
568
|
+
POST_PRODUCTION_TRAFFIC_SHIFT: "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
569
|
+
POST_SCALE_UP: "POST_SCALE_UP",
|
|
570
|
+
POST_TEST_TRAFFIC_SHIFT: "POST_TEST_TRAFFIC_SHIFT",
|
|
571
|
+
PRE_SCALE_UP: "PRE_SCALE_UP",
|
|
572
|
+
PRODUCTION_TRAFFIC_SHIFT: "PRODUCTION_TRAFFIC_SHIFT",
|
|
573
|
+
RECONCILE_SERVICE: "RECONCILE_SERVICE",
|
|
574
|
+
TEST_TRAFFIC_SHIFT: "TEST_TRAFFIC_SHIFT"
|
|
575
|
+
};
|
|
576
|
+
var DeploymentStrategy = {
|
|
577
|
+
BLUE_GREEN: "BLUE_GREEN",
|
|
578
|
+
ROLLING: "ROLLING"
|
|
579
|
+
};
|
|
564
580
|
var DeploymentControllerType = {
|
|
565
581
|
CODE_DEPLOY: "CODE_DEPLOY",
|
|
566
582
|
ECS: "ECS",
|
|
@@ -963,6 +979,18 @@ var ServiceDeploymentRollbackMonitorsStatus = {
|
|
|
963
979
|
MONITORING_COMPLETE: "MONITORING_COMPLETE",
|
|
964
980
|
TRIGGERED: "TRIGGERED"
|
|
965
981
|
};
|
|
982
|
+
var ServiceDeploymentLifecycleStage = {
|
|
983
|
+
BAKE_TIME: "BAKE_TIME",
|
|
984
|
+
CLEAN_UP: "CLEAN_UP",
|
|
985
|
+
POST_PRODUCTION_TRAFFIC_SHIFT: "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
986
|
+
POST_SCALE_UP: "POST_SCALE_UP",
|
|
987
|
+
POST_TEST_TRAFFIC_SHIFT: "POST_TEST_TRAFFIC_SHIFT",
|
|
988
|
+
PRE_SCALE_UP: "PRE_SCALE_UP",
|
|
989
|
+
PRODUCTION_TRAFFIC_SHIFT: "PRODUCTION_TRAFFIC_SHIFT",
|
|
990
|
+
RECONCILE_SERVICE: "RECONCILE_SERVICE",
|
|
991
|
+
SCALE_UP: "SCALE_UP",
|
|
992
|
+
TEST_TRAFFIC_SHIFT: "TEST_TRAFFIC_SHIFT"
|
|
993
|
+
};
|
|
966
994
|
var ServiceDeploymentStatus = {
|
|
967
995
|
IN_PROGRESS: "IN_PROGRESS",
|
|
968
996
|
PENDING: "PENDING",
|
|
@@ -3120,6 +3148,7 @@ var de_ServiceDeployment = /* @__PURE__ */ __name((output, context) => {
|
|
|
3120
3148
|
deploymentCircuitBreaker: import_smithy_client._json,
|
|
3121
3149
|
deploymentConfiguration: import_smithy_client._json,
|
|
3122
3150
|
finishedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "finishedAt"),
|
|
3151
|
+
lifecycleStage: import_smithy_client.expectString,
|
|
3123
3152
|
rollback: /* @__PURE__ */ __name((_) => de_Rollback(_, context), "rollback"),
|
|
3124
3153
|
serviceArn: import_smithy_client.expectString,
|
|
3125
3154
|
serviceDeploymentArn: import_smithy_client.expectString,
|
|
@@ -3183,6 +3212,7 @@ var de_ServiceRevision = /* @__PURE__ */ __name((output, context) => {
|
|
|
3183
3212
|
networkConfiguration: import_smithy_client._json,
|
|
3184
3213
|
platformFamily: import_smithy_client.expectString,
|
|
3185
3214
|
platformVersion: import_smithy_client.expectString,
|
|
3215
|
+
resolvedConfiguration: import_smithy_client._json,
|
|
3186
3216
|
serviceArn: import_smithy_client.expectString,
|
|
3187
3217
|
serviceConnectConfiguration: import_smithy_client._json,
|
|
3188
3218
|
serviceRegistries: import_smithy_client._json,
|
|
@@ -4740,6 +4770,8 @@ var waitUntilTasksStopped = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
4740
4770
|
NamespaceNotFoundException,
|
|
4741
4771
|
ClusterNotFoundException,
|
|
4742
4772
|
AvailabilityZoneRebalancing,
|
|
4773
|
+
DeploymentLifecycleHookStage,
|
|
4774
|
+
DeploymentStrategy,
|
|
4743
4775
|
DeploymentControllerType,
|
|
4744
4776
|
LaunchType,
|
|
4745
4777
|
AssignPublicIp,
|
|
@@ -4793,6 +4825,7 @@ var waitUntilTasksStopped = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
4793
4825
|
ClusterField,
|
|
4794
4826
|
ContainerInstanceField,
|
|
4795
4827
|
ServiceDeploymentRollbackMonitorsStatus,
|
|
4828
|
+
ServiceDeploymentLifecycleStage,
|
|
4796
4829
|
ServiceDeploymentStatus,
|
|
4797
4830
|
ServiceField,
|
|
4798
4831
|
TaskDefinitionField,
|
|
@@ -140,6 +140,19 @@ export const AvailabilityZoneRebalancing = {
|
|
|
140
140
|
DISABLED: "DISABLED",
|
|
141
141
|
ENABLED: "ENABLED",
|
|
142
142
|
};
|
|
143
|
+
export const DeploymentLifecycleHookStage = {
|
|
144
|
+
POST_PRODUCTION_TRAFFIC_SHIFT: "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
145
|
+
POST_SCALE_UP: "POST_SCALE_UP",
|
|
146
|
+
POST_TEST_TRAFFIC_SHIFT: "POST_TEST_TRAFFIC_SHIFT",
|
|
147
|
+
PRE_SCALE_UP: "PRE_SCALE_UP",
|
|
148
|
+
PRODUCTION_TRAFFIC_SHIFT: "PRODUCTION_TRAFFIC_SHIFT",
|
|
149
|
+
RECONCILE_SERVICE: "RECONCILE_SERVICE",
|
|
150
|
+
TEST_TRAFFIC_SHIFT: "TEST_TRAFFIC_SHIFT",
|
|
151
|
+
};
|
|
152
|
+
export const DeploymentStrategy = {
|
|
153
|
+
BLUE_GREEN: "BLUE_GREEN",
|
|
154
|
+
ROLLING: "ROLLING",
|
|
155
|
+
};
|
|
143
156
|
export const DeploymentControllerType = {
|
|
144
157
|
CODE_DEPLOY: "CODE_DEPLOY",
|
|
145
158
|
ECS: "ECS",
|
|
@@ -482,6 +495,18 @@ export const ServiceDeploymentRollbackMonitorsStatus = {
|
|
|
482
495
|
MONITORING_COMPLETE: "MONITORING_COMPLETE",
|
|
483
496
|
TRIGGERED: "TRIGGERED",
|
|
484
497
|
};
|
|
498
|
+
export const ServiceDeploymentLifecycleStage = {
|
|
499
|
+
BAKE_TIME: "BAKE_TIME",
|
|
500
|
+
CLEAN_UP: "CLEAN_UP",
|
|
501
|
+
POST_PRODUCTION_TRAFFIC_SHIFT: "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
502
|
+
POST_SCALE_UP: "POST_SCALE_UP",
|
|
503
|
+
POST_TEST_TRAFFIC_SHIFT: "POST_TEST_TRAFFIC_SHIFT",
|
|
504
|
+
PRE_SCALE_UP: "PRE_SCALE_UP",
|
|
505
|
+
PRODUCTION_TRAFFIC_SHIFT: "PRODUCTION_TRAFFIC_SHIFT",
|
|
506
|
+
RECONCILE_SERVICE: "RECONCILE_SERVICE",
|
|
507
|
+
SCALE_UP: "SCALE_UP",
|
|
508
|
+
TEST_TRAFFIC_SHIFT: "TEST_TRAFFIC_SHIFT",
|
|
509
|
+
};
|
|
485
510
|
export const ServiceDeploymentStatus = {
|
|
486
511
|
IN_PROGRESS: "IN_PROGRESS",
|
|
487
512
|
PENDING: "PENDING",
|
|
@@ -1926,6 +1926,7 @@ const de_ServiceDeployment = (output, context) => {
|
|
|
1926
1926
|
deploymentCircuitBreaker: _json,
|
|
1927
1927
|
deploymentConfiguration: _json,
|
|
1928
1928
|
finishedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1929
|
+
lifecycleStage: __expectString,
|
|
1929
1930
|
rollback: (_) => de_Rollback(_, context),
|
|
1930
1931
|
serviceArn: __expectString,
|
|
1931
1932
|
serviceDeploymentArn: __expectString,
|
|
@@ -1995,6 +1996,7 @@ const de_ServiceRevision = (output, context) => {
|
|
|
1995
1996
|
networkConfiguration: _json,
|
|
1996
1997
|
platformFamily: __expectString,
|
|
1997
1998
|
platformVersion: __expectString,
|
|
1999
|
+
resolvedConfiguration: _json,
|
|
1998
2000
|
serviceArn: __expectString,
|
|
1999
2001
|
serviceConnectConfiguration: _json,
|
|
2000
2002
|
serviceRegistries: _json,
|
|
@@ -66,47 +66,117 @@ declare const CreateServiceCommand_base: {
|
|
|
66
66
|
* evaluates the task placement constraints for running tasks. It also stops tasks
|
|
67
67
|
* that don't meet the placement constraints. When using this strategy, you don't
|
|
68
68
|
* need to specify a desired number of tasks, a task placement strategy, or use
|
|
69
|
-
* Service Auto Scaling policies. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html">
|
|
69
|
+
* Service Auto Scaling policies. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html">Amazon ECS services</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
70
|
+
* </li>
|
|
71
|
+
* </ul>
|
|
72
|
+
* <p>The deployment controller is the mechanism that determines how tasks are deployed for
|
|
73
|
+
* your service. The valid options are:</p>
|
|
74
|
+
* <ul>
|
|
75
|
+
* <li>
|
|
76
|
+
* <p>ECS</p>
|
|
77
|
+
* <p> When you create a service which uses the <code>ECS</code> deployment controller, you can
|
|
78
|
+
* choose between the following deployment strategies (which you can set in the
|
|
79
|
+
* “<code>strategy</code>” field in “<code>deploymentConfiguration</code>”):
|
|
80
|
+
* :</p>
|
|
81
|
+
* <ul>
|
|
82
|
+
* <li>
|
|
83
|
+
* <p>
|
|
84
|
+
* <code>ROLLING</code>: When you create a service which uses the <i>rolling update</i>
|
|
85
|
+
* (<code>ROLLING</code>) deployment strategy, the Amazon ECS service scheduler replaces the
|
|
86
|
+
* currently running tasks with new tasks. The number of tasks that Amazon ECS adds or
|
|
87
|
+
* removes from the service during a rolling update is controlled by the service
|
|
88
|
+
* deployment configuration. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html">Deploy Amazon ECS services by replacing tasks</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
89
|
+
* <p>Rolling update deployments are best suited for the following scenarios:</p>
|
|
90
|
+
* <ul>
|
|
91
|
+
* <li>
|
|
92
|
+
* <p>Gradual service updates: You need to
|
|
93
|
+
* update your service incrementally without taking the entire service
|
|
94
|
+
* offline at once.</p>
|
|
95
|
+
* </li>
|
|
96
|
+
* <li>
|
|
97
|
+
* <p>Limited resource requirements: You
|
|
98
|
+
* want to avoid the additional resource costs of running two complete
|
|
99
|
+
* environments simultaneously (as required by blue/green
|
|
100
|
+
* deployments).</p>
|
|
101
|
+
* </li>
|
|
102
|
+
* <li>
|
|
103
|
+
* <p>Acceptable deployment time: Your
|
|
104
|
+
* application can tolerate a longer deployment process, as rolling updates
|
|
105
|
+
* replace tasks one by one.</p>
|
|
106
|
+
* </li>
|
|
107
|
+
* <li>
|
|
108
|
+
* <p>No need for instant roll back: Your
|
|
109
|
+
* service can tolerate a rollback process that takes minutes rather than
|
|
110
|
+
* seconds.</p>
|
|
111
|
+
* </li>
|
|
112
|
+
* <li>
|
|
113
|
+
* <p>Simple deployment process: You prefer
|
|
114
|
+
* a straightforward deployment approach without the complexity of managing
|
|
115
|
+
* multiple environments, target groups, and listeners.</p>
|
|
116
|
+
* </li>
|
|
117
|
+
* <li>
|
|
118
|
+
* <p>No load balancer requirement: Your
|
|
119
|
+
* service doesn't use or require a load balancer, Application Load Balancer, Network Load Balancer, or Service Connect (which are required
|
|
120
|
+
* for blue/green deployments).</p>
|
|
121
|
+
* </li>
|
|
122
|
+
* <li>
|
|
123
|
+
* <p>Stateful applications: Your
|
|
124
|
+
* application maintains state that makes it difficult to run two parallel
|
|
125
|
+
* environments.</p>
|
|
126
|
+
* </li>
|
|
127
|
+
* <li>
|
|
128
|
+
* <p>Cost sensitivity: You want to
|
|
129
|
+
* minimize deployment costs by not running duplicate environments during
|
|
130
|
+
* deployment.</p>
|
|
131
|
+
* </li>
|
|
132
|
+
* </ul>
|
|
133
|
+
* <p>Rolling updates are the default deployment strategy for services and provide a
|
|
134
|
+
* balance between deployment safety and resource efficiency for many common
|
|
135
|
+
* application scenarios.</p>
|
|
136
|
+
* </li>
|
|
137
|
+
* <li>
|
|
138
|
+
* <p>
|
|
139
|
+
* <code>BLUE_GREEN</code>: A <i>blue/green</i> deployment strategy (<code>BLUE_GREEN</code>) is a release methodology that reduces downtime and
|
|
140
|
+
* risk by running two identical production environments called blue and green.
|
|
141
|
+
* With Amazon ECS blue/green deployments, you can validate new service revisions before
|
|
142
|
+
* directing production traffic to them. This approach provides a safer way to
|
|
143
|
+
* deploy changes with the ability to quickly roll back if needed. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-blue-green.html">Amazon ECS blue/green deployments</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
144
|
+
* <p>Amazon ECS blue/green deployments are best suited for the following scenarios:</p>
|
|
145
|
+
* <ul>
|
|
146
|
+
* <li>
|
|
147
|
+
* <p>Service validation: When you need to
|
|
148
|
+
* validate new service revisions before directing production traffic to
|
|
149
|
+
* them</p>
|
|
150
|
+
* </li>
|
|
151
|
+
* <li>
|
|
152
|
+
* <p>Zero downtime: When your service
|
|
153
|
+
* requires zero-downtime deployments</p>
|
|
154
|
+
* </li>
|
|
155
|
+
* <li>
|
|
156
|
+
* <p>Instant roll back: When you
|
|
157
|
+
* need the ability to quickly roll back if issues are detected</p>
|
|
158
|
+
* </li>
|
|
159
|
+
* <li>
|
|
160
|
+
* <p>Load balancer requirement: When your
|
|
161
|
+
* service uses Application Load Balancer, Network Load Balancer, or Service Connect</p>
|
|
162
|
+
* </li>
|
|
163
|
+
* </ul>
|
|
164
|
+
* </li>
|
|
165
|
+
* </ul>
|
|
166
|
+
* </li>
|
|
167
|
+
* <li>
|
|
168
|
+
* <p>External</p>
|
|
169
|
+
* <p>Use a third-party deployment controller.</p>
|
|
170
|
+
* </li>
|
|
171
|
+
* <li>
|
|
172
|
+
* <p>Blue/green deployment (powered by CodeDeploy)</p>
|
|
173
|
+
* <p>CodeDeploy installs an updated version of the application as a new replacement task
|
|
174
|
+
* set and reroutes production traffic from the original application task set to
|
|
175
|
+
* the replacement task set. The original task set is terminated after a successful
|
|
176
|
+
* deployment. Use this deployment controller to verify a new deployment of a service
|
|
177
|
+
* before sending production traffic to it.</p>
|
|
70
178
|
* </li>
|
|
71
179
|
* </ul>
|
|
72
|
-
* <p>You can optionally specify a deployment configuration for your service. The deployment
|
|
73
|
-
* is initiated by changing properties. For example, the deployment might be initiated by
|
|
74
|
-
* the task definition or by your desired count of a service. You can use <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_UpdateService.html">UpdateService</a>. The default value for a replica service for
|
|
75
|
-
* <code>minimumHealthyPercent</code> is 100%. The default value for a daemon service
|
|
76
|
-
* for <code>minimumHealthyPercent</code> is 0%.</p>
|
|
77
|
-
* <p>If a service uses the <code>ECS</code> deployment controller, the minimum healthy
|
|
78
|
-
* percent represents a lower limit on the number of tasks in a service that must remain in
|
|
79
|
-
* the <code>RUNNING</code> state during a deployment. Specifically, it represents it as a
|
|
80
|
-
* percentage of your desired number of tasks (rounded up to the nearest integer). This
|
|
81
|
-
* happens when any of your container instances are in the <code>DRAINING</code> state if
|
|
82
|
-
* the service contains tasks using the EC2 launch type. Using this
|
|
83
|
-
* parameter, you can deploy without using additional cluster capacity. For example, if you
|
|
84
|
-
* set your service to have desired number of four tasks and a minimum healthy percent of
|
|
85
|
-
* 50%, the scheduler might stop two existing tasks to free up cluster capacity before
|
|
86
|
-
* starting two new tasks. If they're in the <code>RUNNING</code> state, tasks for services
|
|
87
|
-
* that don't use a load balancer are considered healthy . If they're in the
|
|
88
|
-
* <code>RUNNING</code> state and reported as healthy by the load balancer, tasks for
|
|
89
|
-
* services that <i>do</i> use a load balancer are considered healthy . The
|
|
90
|
-
* default value for minimum healthy percent is 100%.</p>
|
|
91
|
-
* <p>If a service uses the <code>ECS</code> deployment controller, the <b>maximum percent</b> parameter represents an upper limit on the
|
|
92
|
-
* number of tasks in a service that are allowed in the <code>RUNNING</code> or
|
|
93
|
-
* <code>PENDING</code> state during a deployment. Specifically, it represents it as a
|
|
94
|
-
* percentage of the desired number of tasks (rounded down to the nearest integer). This
|
|
95
|
-
* happens when any of your container instances are in the <code>DRAINING</code> state if
|
|
96
|
-
* the service contains tasks using the EC2 launch type. Using this
|
|
97
|
-
* parameter, you can define the deployment batch size. For example, if your service has a
|
|
98
|
-
* desired number of four tasks and a maximum percent value of 200%, the scheduler may
|
|
99
|
-
* start four new tasks before stopping the four older tasks (provided that the cluster
|
|
100
|
-
* resources required to do this are available). The default value for maximum percent is
|
|
101
|
-
* 200%.</p>
|
|
102
|
-
* <p>If a service uses either the <code>CODE_DEPLOY</code> or <code>EXTERNAL</code>
|
|
103
|
-
* deployment controller types and tasks that use the EC2 launch type, the
|
|
104
|
-
* <b>minimum healthy percent</b> and <b>maximum percent</b> values are used only to define the lower and upper limit
|
|
105
|
-
* on the number of the tasks in the service that remain in the <code>RUNNING</code> state.
|
|
106
|
-
* This is while the container instances are in the <code>DRAINING</code> state. If the
|
|
107
|
-
* tasks in the service use the Fargate launch type, the minimum healthy
|
|
108
|
-
* percent and maximum percent values aren't used. This is the case even if they're
|
|
109
|
-
* currently visible when describing your service.</p>
|
|
110
180
|
* <p>When creating a service that uses the <code>EXTERNAL</code> deployment controller, you
|
|
111
181
|
* can specify only parameters that aren't controlled at the task set level. The only
|
|
112
182
|
* required parameter is the service name. You control your services using the <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CreateTaskSet.html">CreateTaskSet</a>. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
@@ -131,6 +201,12 @@ declare const CreateServiceCommand_base: {
|
|
|
131
201
|
* loadBalancerName: "STRING_VALUE",
|
|
132
202
|
* containerName: "STRING_VALUE",
|
|
133
203
|
* containerPort: Number("int"),
|
|
204
|
+
* advancedConfiguration: { // AdvancedConfiguration
|
|
205
|
+
* alternateTargetGroupArn: "STRING_VALUE",
|
|
206
|
+
* productionListenerRule: "STRING_VALUE",
|
|
207
|
+
* testListenerRule: "STRING_VALUE",
|
|
208
|
+
* roleArn: "STRING_VALUE",
|
|
209
|
+
* },
|
|
134
210
|
* },
|
|
135
211
|
* ],
|
|
136
212
|
* serviceRegistries: [ // ServiceRegistries
|
|
@@ -167,6 +243,17 @@ declare const CreateServiceCommand_base: {
|
|
|
167
243
|
* rollback: true || false, // required
|
|
168
244
|
* enable: true || false, // required
|
|
169
245
|
* },
|
|
246
|
+
* strategy: "ROLLING" || "BLUE_GREEN",
|
|
247
|
+
* bakeTimeInMinutes: Number("int"),
|
|
248
|
+
* lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
249
|
+
* { // DeploymentLifecycleHook
|
|
250
|
+
* hookTargetArn: "STRING_VALUE",
|
|
251
|
+
* roleArn: "STRING_VALUE",
|
|
252
|
+
* lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
253
|
+
* "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
254
|
+
* ],
|
|
255
|
+
* },
|
|
256
|
+
* ],
|
|
170
257
|
* },
|
|
171
258
|
* placementConstraints: [ // PlacementConstraints
|
|
172
259
|
* { // PlacementConstraint
|
|
@@ -216,6 +303,14 @@ declare const CreateServiceCommand_base: {
|
|
|
216
303
|
* { // ServiceConnectClientAlias
|
|
217
304
|
* port: Number("int"), // required
|
|
218
305
|
* dnsName: "STRING_VALUE",
|
|
306
|
+
* testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
307
|
+
* header: { // ServiceConnectTestTrafficHeaderRules
|
|
308
|
+
* name: "STRING_VALUE", // required
|
|
309
|
+
* value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
310
|
+
* exact: "STRING_VALUE", // required
|
|
311
|
+
* },
|
|
312
|
+
* },
|
|
313
|
+
* },
|
|
219
314
|
* },
|
|
220
315
|
* ],
|
|
221
316
|
* ingressPortOverride: Number("int"),
|
|
@@ -295,6 +390,12 @@ declare const CreateServiceCommand_base: {
|
|
|
295
390
|
* // loadBalancerName: "STRING_VALUE",
|
|
296
391
|
* // containerName: "STRING_VALUE",
|
|
297
392
|
* // containerPort: Number("int"),
|
|
393
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
394
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
395
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
396
|
+
* // testListenerRule: "STRING_VALUE",
|
|
397
|
+
* // roleArn: "STRING_VALUE",
|
|
398
|
+
* // },
|
|
298
399
|
* // },
|
|
299
400
|
* // ],
|
|
300
401
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -334,6 +435,17 @@ declare const CreateServiceCommand_base: {
|
|
|
334
435
|
* // rollback: true || false, // required
|
|
335
436
|
* // enable: true || false, // required
|
|
336
437
|
* // },
|
|
438
|
+
* // strategy: "ROLLING" || "BLUE_GREEN",
|
|
439
|
+
* // bakeTimeInMinutes: Number("int"),
|
|
440
|
+
* // lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
441
|
+
* // { // DeploymentLifecycleHook
|
|
442
|
+
* // hookTargetArn: "STRING_VALUE",
|
|
443
|
+
* // roleArn: "STRING_VALUE",
|
|
444
|
+
* // lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
445
|
+
* // "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
446
|
+
* // ],
|
|
447
|
+
* // },
|
|
448
|
+
* // ],
|
|
337
449
|
* // },
|
|
338
450
|
* // taskSets: [ // TaskSets
|
|
339
451
|
* // { // TaskSet
|
|
@@ -377,6 +489,12 @@ declare const CreateServiceCommand_base: {
|
|
|
377
489
|
* // loadBalancerName: "STRING_VALUE",
|
|
378
490
|
* // containerName: "STRING_VALUE",
|
|
379
491
|
* // containerPort: Number("int"),
|
|
492
|
+
* // advancedConfiguration: {
|
|
493
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
494
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
495
|
+
* // testListenerRule: "STRING_VALUE",
|
|
496
|
+
* // roleArn: "STRING_VALUE",
|
|
497
|
+
* // },
|
|
380
498
|
* // },
|
|
381
499
|
* // ],
|
|
382
500
|
* // serviceRegistries: [
|
|
@@ -449,6 +567,14 @@ declare const CreateServiceCommand_base: {
|
|
|
449
567
|
* // { // ServiceConnectClientAlias
|
|
450
568
|
* // port: Number("int"), // required
|
|
451
569
|
* // dnsName: "STRING_VALUE",
|
|
570
|
+
* // testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
571
|
+
* // header: { // ServiceConnectTestTrafficHeaderRules
|
|
572
|
+
* // name: "STRING_VALUE", // required
|
|
573
|
+
* // value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
574
|
+
* // exact: "STRING_VALUE", // required
|
|
575
|
+
* // },
|
|
576
|
+
* // },
|
|
577
|
+
* // },
|
|
452
578
|
* // },
|
|
453
579
|
* // ],
|
|
454
580
|
* // ingressPortOverride: Number("int"),
|
|
@@ -64,6 +64,12 @@ declare const CreateTaskSetCommand_base: {
|
|
|
64
64
|
* loadBalancerName: "STRING_VALUE",
|
|
65
65
|
* containerName: "STRING_VALUE",
|
|
66
66
|
* containerPort: Number("int"),
|
|
67
|
+
* advancedConfiguration: { // AdvancedConfiguration
|
|
68
|
+
* alternateTargetGroupArn: "STRING_VALUE",
|
|
69
|
+
* productionListenerRule: "STRING_VALUE",
|
|
70
|
+
* testListenerRule: "STRING_VALUE",
|
|
71
|
+
* roleArn: "STRING_VALUE",
|
|
72
|
+
* },
|
|
67
73
|
* },
|
|
68
74
|
* ],
|
|
69
75
|
* serviceRegistries: [ // ServiceRegistries
|
|
@@ -139,6 +145,12 @@ declare const CreateTaskSetCommand_base: {
|
|
|
139
145
|
* // loadBalancerName: "STRING_VALUE",
|
|
140
146
|
* // containerName: "STRING_VALUE",
|
|
141
147
|
* // containerPort: Number("int"),
|
|
148
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
149
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
150
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
151
|
+
* // testListenerRule: "STRING_VALUE",
|
|
152
|
+
* // roleArn: "STRING_VALUE",
|
|
153
|
+
* // },
|
|
142
154
|
* // },
|
|
143
155
|
* // ],
|
|
144
156
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -72,6 +72,12 @@ declare const DeleteServiceCommand_base: {
|
|
|
72
72
|
* // loadBalancerName: "STRING_VALUE",
|
|
73
73
|
* // containerName: "STRING_VALUE",
|
|
74
74
|
* // containerPort: Number("int"),
|
|
75
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
76
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
77
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
78
|
+
* // testListenerRule: "STRING_VALUE",
|
|
79
|
+
* // roleArn: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
75
81
|
* // },
|
|
76
82
|
* // ],
|
|
77
83
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -111,6 +117,17 @@ declare const DeleteServiceCommand_base: {
|
|
|
111
117
|
* // rollback: true || false, // required
|
|
112
118
|
* // enable: true || false, // required
|
|
113
119
|
* // },
|
|
120
|
+
* // strategy: "ROLLING" || "BLUE_GREEN",
|
|
121
|
+
* // bakeTimeInMinutes: Number("int"),
|
|
122
|
+
* // lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
123
|
+
* // { // DeploymentLifecycleHook
|
|
124
|
+
* // hookTargetArn: "STRING_VALUE",
|
|
125
|
+
* // roleArn: "STRING_VALUE",
|
|
126
|
+
* // lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
127
|
+
* // "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
128
|
+
* // ],
|
|
129
|
+
* // },
|
|
130
|
+
* // ],
|
|
114
131
|
* // },
|
|
115
132
|
* // taskSets: [ // TaskSets
|
|
116
133
|
* // { // TaskSet
|
|
@@ -154,6 +171,12 @@ declare const DeleteServiceCommand_base: {
|
|
|
154
171
|
* // loadBalancerName: "STRING_VALUE",
|
|
155
172
|
* // containerName: "STRING_VALUE",
|
|
156
173
|
* // containerPort: Number("int"),
|
|
174
|
+
* // advancedConfiguration: {
|
|
175
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
176
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
177
|
+
* // testListenerRule: "STRING_VALUE",
|
|
178
|
+
* // roleArn: "STRING_VALUE",
|
|
179
|
+
* // },
|
|
157
180
|
* // },
|
|
158
181
|
* // ],
|
|
159
182
|
* // serviceRegistries: [
|
|
@@ -226,6 +249,14 @@ declare const DeleteServiceCommand_base: {
|
|
|
226
249
|
* // { // ServiceConnectClientAlias
|
|
227
250
|
* // port: Number("int"), // required
|
|
228
251
|
* // dnsName: "STRING_VALUE",
|
|
252
|
+
* // testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
253
|
+
* // header: { // ServiceConnectTestTrafficHeaderRules
|
|
254
|
+
* // name: "STRING_VALUE", // required
|
|
255
|
+
* // value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
256
|
+
* // exact: "STRING_VALUE", // required
|
|
257
|
+
* // },
|
|
258
|
+
* // },
|
|
259
|
+
* // },
|
|
229
260
|
* // },
|
|
230
261
|
* // ],
|
|
231
262
|
* // ingressPortOverride: Number("int"),
|
|
@@ -85,6 +85,12 @@ declare const DeleteTaskSetCommand_base: {
|
|
|
85
85
|
* // loadBalancerName: "STRING_VALUE",
|
|
86
86
|
* // containerName: "STRING_VALUE",
|
|
87
87
|
* // containerPort: Number("int"),
|
|
88
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
89
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
90
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
91
|
+
* // testListenerRule: "STRING_VALUE",
|
|
92
|
+
* // roleArn: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
88
94
|
* // },
|
|
89
95
|
* // ],
|
|
90
96
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -70,6 +70,7 @@ declare const DescribeServiceDeploymentsCommand_base: {
|
|
|
70
70
|
* // },
|
|
71
71
|
* // status: "PENDING" || "SUCCESSFUL" || "STOPPED" || "STOP_REQUESTED" || "IN_PROGRESS" || "ROLLBACK_REQUESTED" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_SUCCESSFUL" || "ROLLBACK_FAILED",
|
|
72
72
|
* // statusReason: "STRING_VALUE",
|
|
73
|
+
* // lifecycleStage: "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT" || "BAKE_TIME" || "CLEAN_UP",
|
|
73
74
|
* // deploymentConfiguration: { // DeploymentConfiguration
|
|
74
75
|
* // deploymentCircuitBreaker: { // DeploymentCircuitBreaker
|
|
75
76
|
* // enable: true || false, // required
|
|
@@ -84,6 +85,17 @@ declare const DescribeServiceDeploymentsCommand_base: {
|
|
|
84
85
|
* // rollback: true || false, // required
|
|
85
86
|
* // enable: true || false, // required
|
|
86
87
|
* // },
|
|
88
|
+
* // strategy: "ROLLING" || "BLUE_GREEN",
|
|
89
|
+
* // bakeTimeInMinutes: Number("int"),
|
|
90
|
+
* // lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
91
|
+
* // { // DeploymentLifecycleHook
|
|
92
|
+
* // hookTargetArn: "STRING_VALUE",
|
|
93
|
+
* // roleArn: "STRING_VALUE",
|
|
94
|
+
* // lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
95
|
+
* // "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
96
|
+
* // ],
|
|
97
|
+
* // },
|
|
98
|
+
* // ],
|
|
87
99
|
* // },
|
|
88
100
|
* // rollback: { // Rollback
|
|
89
101
|
* // reason: "STRING_VALUE",
|
|
@@ -68,6 +68,12 @@ declare const DescribeServiceRevisionsCommand_base: {
|
|
|
68
68
|
* // loadBalancerName: "STRING_VALUE",
|
|
69
69
|
* // containerName: "STRING_VALUE",
|
|
70
70
|
* // containerPort: Number("int"),
|
|
71
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
72
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
73
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
74
|
+
* // testListenerRule: "STRING_VALUE",
|
|
75
|
+
* // roleArn: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
71
77
|
* // },
|
|
72
78
|
* // ],
|
|
73
79
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -108,6 +114,14 @@ declare const DescribeServiceRevisionsCommand_base: {
|
|
|
108
114
|
* // { // ServiceConnectClientAlias
|
|
109
115
|
* // port: Number("int"), // required
|
|
110
116
|
* // dnsName: "STRING_VALUE",
|
|
117
|
+
* // testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
118
|
+
* // header: { // ServiceConnectTestTrafficHeaderRules
|
|
119
|
+
* // name: "STRING_VALUE", // required
|
|
120
|
+
* // value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
121
|
+
* // exact: "STRING_VALUE", // required
|
|
122
|
+
* // },
|
|
123
|
+
* // },
|
|
124
|
+
* // },
|
|
111
125
|
* // },
|
|
112
126
|
* // ],
|
|
113
127
|
* // ingressPortOverride: Number("int"),
|
|
@@ -177,6 +191,14 @@ declare const DescribeServiceRevisionsCommand_base: {
|
|
|
177
191
|
* // portName: "STRING_VALUE", // required
|
|
178
192
|
* // },
|
|
179
193
|
* // ],
|
|
194
|
+
* // resolvedConfiguration: { // ResolvedConfiguration
|
|
195
|
+
* // loadBalancers: [ // ServiceRevisionLoadBalancers
|
|
196
|
+
* // { // ServiceRevisionLoadBalancer
|
|
197
|
+
* // targetGroupArn: "STRING_VALUE",
|
|
198
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
199
|
+
* // },
|
|
200
|
+
* // ],
|
|
201
|
+
* // },
|
|
180
202
|
* // },
|
|
181
203
|
* // ],
|
|
182
204
|
* // failures: [ // Failures
|
|
@@ -57,6 +57,12 @@ declare const DescribeServicesCommand_base: {
|
|
|
57
57
|
* // loadBalancerName: "STRING_VALUE",
|
|
58
58
|
* // containerName: "STRING_VALUE",
|
|
59
59
|
* // containerPort: Number("int"),
|
|
60
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
61
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
62
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
63
|
+
* // testListenerRule: "STRING_VALUE",
|
|
64
|
+
* // roleArn: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
60
66
|
* // },
|
|
61
67
|
* // ],
|
|
62
68
|
* // serviceRegistries: [ // ServiceRegistries
|
|
@@ -96,6 +102,17 @@ declare const DescribeServicesCommand_base: {
|
|
|
96
102
|
* // rollback: true || false, // required
|
|
97
103
|
* // enable: true || false, // required
|
|
98
104
|
* // },
|
|
105
|
+
* // strategy: "ROLLING" || "BLUE_GREEN",
|
|
106
|
+
* // bakeTimeInMinutes: Number("int"),
|
|
107
|
+
* // lifecycleHooks: [ // DeploymentLifecycleHookList
|
|
108
|
+
* // { // DeploymentLifecycleHook
|
|
109
|
+
* // hookTargetArn: "STRING_VALUE",
|
|
110
|
+
* // roleArn: "STRING_VALUE",
|
|
111
|
+
* // lifecycleStages: [ // DeploymentLifecycleHookStageList
|
|
112
|
+
* // "RECONCILE_SERVICE" || "PRE_SCALE_UP" || "POST_SCALE_UP" || "TEST_TRAFFIC_SHIFT" || "POST_TEST_TRAFFIC_SHIFT" || "PRODUCTION_TRAFFIC_SHIFT" || "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
113
|
+
* // ],
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
99
116
|
* // },
|
|
100
117
|
* // taskSets: [ // TaskSets
|
|
101
118
|
* // { // TaskSet
|
|
@@ -139,6 +156,12 @@ declare const DescribeServicesCommand_base: {
|
|
|
139
156
|
* // loadBalancerName: "STRING_VALUE",
|
|
140
157
|
* // containerName: "STRING_VALUE",
|
|
141
158
|
* // containerPort: Number("int"),
|
|
159
|
+
* // advancedConfiguration: {
|
|
160
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
161
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
162
|
+
* // testListenerRule: "STRING_VALUE",
|
|
163
|
+
* // roleArn: "STRING_VALUE",
|
|
164
|
+
* // },
|
|
142
165
|
* // },
|
|
143
166
|
* // ],
|
|
144
167
|
* // serviceRegistries: [
|
|
@@ -211,6 +234,14 @@ declare const DescribeServicesCommand_base: {
|
|
|
211
234
|
* // { // ServiceConnectClientAlias
|
|
212
235
|
* // port: Number("int"), // required
|
|
213
236
|
* // dnsName: "STRING_VALUE",
|
|
237
|
+
* // testTrafficRules: { // ServiceConnectTestTrafficRules
|
|
238
|
+
* // header: { // ServiceConnectTestTrafficHeaderRules
|
|
239
|
+
* // name: "STRING_VALUE", // required
|
|
240
|
+
* // value: { // ServiceConnectTestTrafficHeaderMatchRules
|
|
241
|
+
* // exact: "STRING_VALUE", // required
|
|
242
|
+
* // },
|
|
243
|
+
* // },
|
|
244
|
+
* // },
|
|
214
245
|
* // },
|
|
215
246
|
* // ],
|
|
216
247
|
* // ingressPortOverride: Number("int"),
|
|
@@ -92,6 +92,12 @@ declare const DescribeTaskSetsCommand_base: {
|
|
|
92
92
|
* // loadBalancerName: "STRING_VALUE",
|
|
93
93
|
* // containerName: "STRING_VALUE",
|
|
94
94
|
* // containerPort: Number("int"),
|
|
95
|
+
* // advancedConfiguration: { // AdvancedConfiguration
|
|
96
|
+
* // alternateTargetGroupArn: "STRING_VALUE",
|
|
97
|
+
* // productionListenerRule: "STRING_VALUE",
|
|
98
|
+
* // testListenerRule: "STRING_VALUE",
|
|
99
|
+
* // roleArn: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
95
101
|
* // },
|
|
96
102
|
* // ],
|
|
97
103
|
* // serviceRegistries: [ // ServiceRegistries
|