@cdklabs/cdk-ecs-codedeploy 0.0.153 → 0.0.155
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/.jsii +237 -46
- package/API.md +120 -1
- package/lib/api-canary/index.js +1 -1
- package/lib/ecs-appspec/index.d.ts +32 -1
- package/lib/ecs-appspec/index.js +46 -3
- package/lib/ecs-deployment/index.d.ts +7 -1
- package/lib/ecs-deployment/index.js +3 -3
- package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.d.ts +7 -0
- package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +3 -2
- package/node_modules/@aws-sdk/client-codedeploy/package.json +5 -5
- package/node_modules/@aws-sdk/client-sso/package.json +3 -3
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +3 -3
- package/node_modules/@aws-sdk/client-sts/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +2 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +1 -1
- package/package.json +9 -4
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"bundled": {
|
|
11
|
-
"@aws-sdk/client-codedeploy": "^3.
|
|
11
|
+
"@aws-sdk/client-codedeploy": "^3.332.0",
|
|
12
12
|
"jmespath": "^0.16.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
@@ -4046,6 +4046,154 @@
|
|
|
4046
4046
|
],
|
|
4047
4047
|
"symbolId": "src/api-canary/index:ApiTestStep"
|
|
4048
4048
|
},
|
|
4049
|
+
"@cdklabs/cdk-ecs-codedeploy.AppSpecHooks": {
|
|
4050
|
+
"assembly": "@cdklabs/cdk-ecs-codedeploy",
|
|
4051
|
+
"datatype": true,
|
|
4052
|
+
"docs": {
|
|
4053
|
+
"stability": "experimental",
|
|
4054
|
+
"summary": "Lifecycle hooks configuration."
|
|
4055
|
+
},
|
|
4056
|
+
"fqn": "@cdklabs/cdk-ecs-codedeploy.AppSpecHooks",
|
|
4057
|
+
"kind": "interface",
|
|
4058
|
+
"locationInModule": {
|
|
4059
|
+
"filename": "src/ecs-appspec/index.ts",
|
|
4060
|
+
"line": 189
|
|
4061
|
+
},
|
|
4062
|
+
"name": "AppSpecHooks",
|
|
4063
|
+
"properties": [
|
|
4064
|
+
{
|
|
4065
|
+
"abstract": true,
|
|
4066
|
+
"docs": {
|
|
4067
|
+
"stability": "experimental",
|
|
4068
|
+
"summary": "Lambda or ARN of a lambda to run tasks after the test listener serves traffic to the replacement task set."
|
|
4069
|
+
},
|
|
4070
|
+
"immutable": true,
|
|
4071
|
+
"locationInModule": {
|
|
4072
|
+
"filename": "src/ecs-appspec/index.ts",
|
|
4073
|
+
"line": 201
|
|
4074
|
+
},
|
|
4075
|
+
"name": "afterAllowTestTraffic",
|
|
4076
|
+
"optional": true,
|
|
4077
|
+
"type": {
|
|
4078
|
+
"union": {
|
|
4079
|
+
"types": [
|
|
4080
|
+
{
|
|
4081
|
+
"primitive": "string"
|
|
4082
|
+
},
|
|
4083
|
+
{
|
|
4084
|
+
"fqn": "aws-cdk-lib.aws_lambda.IFunction"
|
|
4085
|
+
}
|
|
4086
|
+
]
|
|
4087
|
+
}
|
|
4088
|
+
}
|
|
4089
|
+
},
|
|
4090
|
+
{
|
|
4091
|
+
"abstract": true,
|
|
4092
|
+
"docs": {
|
|
4093
|
+
"stability": "experimental",
|
|
4094
|
+
"summary": "Lambda or ARN of a lambda to run tasks after the second target group serves traffic to the replacement task set."
|
|
4095
|
+
},
|
|
4096
|
+
"immutable": true,
|
|
4097
|
+
"locationInModule": {
|
|
4098
|
+
"filename": "src/ecs-appspec/index.ts",
|
|
4099
|
+
"line": 209
|
|
4100
|
+
},
|
|
4101
|
+
"name": "afterAllowTraffic",
|
|
4102
|
+
"optional": true,
|
|
4103
|
+
"type": {
|
|
4104
|
+
"union": {
|
|
4105
|
+
"types": [
|
|
4106
|
+
{
|
|
4107
|
+
"primitive": "string"
|
|
4108
|
+
},
|
|
4109
|
+
{
|
|
4110
|
+
"fqn": "aws-cdk-lib.aws_lambda.IFunction"
|
|
4111
|
+
}
|
|
4112
|
+
]
|
|
4113
|
+
}
|
|
4114
|
+
}
|
|
4115
|
+
},
|
|
4116
|
+
{
|
|
4117
|
+
"abstract": true,
|
|
4118
|
+
"docs": {
|
|
4119
|
+
"stability": "experimental",
|
|
4120
|
+
"summary": "Lambda or ARN of a lambda to run tasks after the replacement task set is created and one of the target groups is associated with it."
|
|
4121
|
+
},
|
|
4122
|
+
"immutable": true,
|
|
4123
|
+
"locationInModule": {
|
|
4124
|
+
"filename": "src/ecs-appspec/index.ts",
|
|
4125
|
+
"line": 197
|
|
4126
|
+
},
|
|
4127
|
+
"name": "afterInstall",
|
|
4128
|
+
"optional": true,
|
|
4129
|
+
"type": {
|
|
4130
|
+
"union": {
|
|
4131
|
+
"types": [
|
|
4132
|
+
{
|
|
4133
|
+
"primitive": "string"
|
|
4134
|
+
},
|
|
4135
|
+
{
|
|
4136
|
+
"fqn": "aws-cdk-lib.aws_lambda.IFunction"
|
|
4137
|
+
}
|
|
4138
|
+
]
|
|
4139
|
+
}
|
|
4140
|
+
}
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"abstract": true,
|
|
4144
|
+
"docs": {
|
|
4145
|
+
"stability": "experimental",
|
|
4146
|
+
"summary": "Lambda or ARN of a lambda to run tasks after the second target group is associated with the replacement task set, but before traffic is shifted to the replacement task set."
|
|
4147
|
+
},
|
|
4148
|
+
"immutable": true,
|
|
4149
|
+
"locationInModule": {
|
|
4150
|
+
"filename": "src/ecs-appspec/index.ts",
|
|
4151
|
+
"line": 205
|
|
4152
|
+
},
|
|
4153
|
+
"name": "beforeAllowTraffic",
|
|
4154
|
+
"optional": true,
|
|
4155
|
+
"type": {
|
|
4156
|
+
"union": {
|
|
4157
|
+
"types": [
|
|
4158
|
+
{
|
|
4159
|
+
"primitive": "string"
|
|
4160
|
+
},
|
|
4161
|
+
{
|
|
4162
|
+
"fqn": "aws-cdk-lib.aws_lambda.IFunction"
|
|
4163
|
+
}
|
|
4164
|
+
]
|
|
4165
|
+
}
|
|
4166
|
+
}
|
|
4167
|
+
},
|
|
4168
|
+
{
|
|
4169
|
+
"abstract": true,
|
|
4170
|
+
"docs": {
|
|
4171
|
+
"stability": "experimental",
|
|
4172
|
+
"summary": "Lambda or ARN of a lambda to run tasks before the replacement task set is created."
|
|
4173
|
+
},
|
|
4174
|
+
"immutable": true,
|
|
4175
|
+
"locationInModule": {
|
|
4176
|
+
"filename": "src/ecs-appspec/index.ts",
|
|
4177
|
+
"line": 193
|
|
4178
|
+
},
|
|
4179
|
+
"name": "beforeInstall",
|
|
4180
|
+
"optional": true,
|
|
4181
|
+
"type": {
|
|
4182
|
+
"union": {
|
|
4183
|
+
"types": [
|
|
4184
|
+
{
|
|
4185
|
+
"primitive": "string"
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
"fqn": "aws-cdk-lib.aws_lambda.IFunction"
|
|
4189
|
+
}
|
|
4190
|
+
]
|
|
4191
|
+
}
|
|
4192
|
+
}
|
|
4193
|
+
}
|
|
4194
|
+
],
|
|
4195
|
+
"symbolId": "src/ecs-appspec/index:AppSpecHooks"
|
|
4196
|
+
},
|
|
4049
4197
|
"@cdklabs/cdk-ecs-codedeploy.ApplicationLoadBalancedCodeDeployedFargateService": {
|
|
4050
4198
|
"assembly": "@cdklabs/cdk-ecs-codedeploy",
|
|
4051
4199
|
"base": "aws-cdk-lib.aws_ecs_patterns.ApplicationLoadBalancedFargateService",
|
|
@@ -4061,7 +4209,7 @@
|
|
|
4061
4209
|
},
|
|
4062
4210
|
"locationInModule": {
|
|
4063
4211
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4064
|
-
"line":
|
|
4212
|
+
"line": 165
|
|
4065
4213
|
},
|
|
4066
4214
|
"parameters": [
|
|
4067
4215
|
{
|
|
@@ -4087,7 +4235,7 @@
|
|
|
4087
4235
|
"kind": "class",
|
|
4088
4236
|
"locationInModule": {
|
|
4089
4237
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4090
|
-
"line":
|
|
4238
|
+
"line": 121
|
|
4091
4239
|
},
|
|
4092
4240
|
"methods": [
|
|
4093
4241
|
{
|
|
@@ -4097,7 +4245,7 @@
|
|
|
4097
4245
|
},
|
|
4098
4246
|
"locationInModule": {
|
|
4099
4247
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4100
|
-
"line":
|
|
4248
|
+
"line": 301
|
|
4101
4249
|
},
|
|
4102
4250
|
"name": "addServiceAsTarget",
|
|
4103
4251
|
"overrides": "aws-cdk-lib.aws_ecs_patterns.ApplicationLoadBalancedServiceBase",
|
|
@@ -4121,7 +4269,7 @@
|
|
|
4121
4269
|
},
|
|
4122
4270
|
"locationInModule": {
|
|
4123
4271
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4124
|
-
"line":
|
|
4272
|
+
"line": 145
|
|
4125
4273
|
},
|
|
4126
4274
|
"name": "accessLogBucket",
|
|
4127
4275
|
"type": {
|
|
@@ -4135,7 +4283,7 @@
|
|
|
4135
4283
|
},
|
|
4136
4284
|
"locationInModule": {
|
|
4137
4285
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4138
|
-
"line":
|
|
4286
|
+
"line": 150
|
|
4139
4287
|
},
|
|
4140
4288
|
"name": "application",
|
|
4141
4289
|
"type": {
|
|
@@ -4149,7 +4297,7 @@
|
|
|
4149
4297
|
},
|
|
4150
4298
|
"locationInModule": {
|
|
4151
4299
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4152
|
-
"line":
|
|
4300
|
+
"line": 160
|
|
4153
4301
|
},
|
|
4154
4302
|
"name": "deployment",
|
|
4155
4303
|
"type": {
|
|
@@ -4163,7 +4311,7 @@
|
|
|
4163
4311
|
},
|
|
4164
4312
|
"locationInModule": {
|
|
4165
4313
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4166
|
-
"line":
|
|
4314
|
+
"line": 155
|
|
4167
4315
|
},
|
|
4168
4316
|
"name": "deploymentGroup",
|
|
4169
4317
|
"type": {
|
|
@@ -4177,7 +4325,7 @@
|
|
|
4177
4325
|
},
|
|
4178
4326
|
"locationInModule": {
|
|
4179
4327
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4180
|
-
"line":
|
|
4328
|
+
"line": 140
|
|
4181
4329
|
},
|
|
4182
4330
|
"name": "greenTargetGroup",
|
|
4183
4331
|
"type": {
|
|
@@ -4191,7 +4339,7 @@
|
|
|
4191
4339
|
},
|
|
4192
4340
|
"locationInModule": {
|
|
4193
4341
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4194
|
-
"line":
|
|
4342
|
+
"line": 135
|
|
4195
4343
|
},
|
|
4196
4344
|
"name": "testListener",
|
|
4197
4345
|
"type": {
|
|
@@ -4205,7 +4353,7 @@
|
|
|
4205
4353
|
},
|
|
4206
4354
|
"locationInModule": {
|
|
4207
4355
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4208
|
-
"line":
|
|
4356
|
+
"line": 130
|
|
4209
4357
|
},
|
|
4210
4358
|
"name": "apiCanary",
|
|
4211
4359
|
"optional": true,
|
|
@@ -4220,7 +4368,7 @@
|
|
|
4220
4368
|
},
|
|
4221
4369
|
"locationInModule": {
|
|
4222
4370
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4223
|
-
"line":
|
|
4371
|
+
"line": 125
|
|
4224
4372
|
},
|
|
4225
4373
|
"name": "healthAlarm",
|
|
4226
4374
|
"optional": true,
|
|
@@ -4245,7 +4393,7 @@
|
|
|
4245
4393
|
"kind": "interface",
|
|
4246
4394
|
"locationInModule": {
|
|
4247
4395
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4248
|
-
"line":
|
|
4396
|
+
"line": 17
|
|
4249
4397
|
},
|
|
4250
4398
|
"name": "ApplicationLoadBalancedCodeDeployedFargateServiceProps",
|
|
4251
4399
|
"properties": [
|
|
@@ -4259,7 +4407,7 @@
|
|
|
4259
4407
|
"immutable": true,
|
|
4260
4408
|
"locationInModule": {
|
|
4261
4409
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4262
|
-
"line":
|
|
4410
|
+
"line": 59
|
|
4263
4411
|
},
|
|
4264
4412
|
"name": "accessLogBucket",
|
|
4265
4413
|
"optional": true,
|
|
@@ -4277,7 +4425,7 @@
|
|
|
4277
4425
|
"immutable": true,
|
|
4278
4426
|
"locationInModule": {
|
|
4279
4427
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4280
|
-
"line":
|
|
4428
|
+
"line": 66
|
|
4281
4429
|
},
|
|
4282
4430
|
"name": "accessLogPrefix",
|
|
4283
4431
|
"optional": true,
|
|
@@ -4295,7 +4443,7 @@
|
|
|
4295
4443
|
"immutable": true,
|
|
4296
4444
|
"locationInModule": {
|
|
4297
4445
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4298
|
-
"line":
|
|
4446
|
+
"line": 87
|
|
4299
4447
|
},
|
|
4300
4448
|
"name": "apiCanarySchedule",
|
|
4301
4449
|
"optional": true,
|
|
@@ -4313,7 +4461,7 @@
|
|
|
4313
4461
|
"immutable": true,
|
|
4314
4462
|
"locationInModule": {
|
|
4315
4463
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4316
|
-
"line":
|
|
4464
|
+
"line": 80
|
|
4317
4465
|
},
|
|
4318
4466
|
"name": "apiCanaryThreadCount",
|
|
4319
4467
|
"optional": true,
|
|
@@ -4331,7 +4479,7 @@
|
|
|
4331
4479
|
"immutable": true,
|
|
4332
4480
|
"locationInModule": {
|
|
4333
4481
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4334
|
-
"line":
|
|
4482
|
+
"line": 94
|
|
4335
4483
|
},
|
|
4336
4484
|
"name": "apiCanaryTimeout",
|
|
4337
4485
|
"optional": true,
|
|
@@ -4349,7 +4497,7 @@
|
|
|
4349
4497
|
"immutable": true,
|
|
4350
4498
|
"locationInModule": {
|
|
4351
4499
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4352
|
-
"line":
|
|
4500
|
+
"line": 101
|
|
4353
4501
|
},
|
|
4354
4502
|
"name": "apiTestSteps",
|
|
4355
4503
|
"optional": true,
|
|
@@ -4372,7 +4520,7 @@
|
|
|
4372
4520
|
"immutable": true,
|
|
4373
4521
|
"locationInModule": {
|
|
4374
4522
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4375
|
-
"line":
|
|
4523
|
+
"line": 37
|
|
4376
4524
|
},
|
|
4377
4525
|
"name": "deploymentConfig",
|
|
4378
4526
|
"optional": true,
|
|
@@ -4390,7 +4538,7 @@
|
|
|
4390
4538
|
"immutable": true,
|
|
4391
4539
|
"locationInModule": {
|
|
4392
4540
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4393
|
-
"line":
|
|
4541
|
+
"line": 23
|
|
4394
4542
|
},
|
|
4395
4543
|
"name": "deploymentTimeout",
|
|
4396
4544
|
"optional": true,
|
|
@@ -4408,7 +4556,7 @@
|
|
|
4408
4556
|
"immutable": true,
|
|
4409
4557
|
"locationInModule": {
|
|
4410
4558
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4411
|
-
"line":
|
|
4559
|
+
"line": 45
|
|
4412
4560
|
},
|
|
4413
4561
|
"name": "deregistrationDelay",
|
|
4414
4562
|
"optional": true,
|
|
@@ -4426,7 +4574,7 @@
|
|
|
4426
4574
|
"immutable": true,
|
|
4427
4575
|
"locationInModule": {
|
|
4428
4576
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4429
|
-
"line":
|
|
4577
|
+
"line": 52
|
|
4430
4578
|
},
|
|
4431
4579
|
"name": "healthCheck",
|
|
4432
4580
|
"optional": true,
|
|
@@ -4434,6 +4582,24 @@
|
|
|
4434
4582
|
"fqn": "aws-cdk-lib.aws_elasticloadbalancingv2.HealthCheck"
|
|
4435
4583
|
}
|
|
4436
4584
|
},
|
|
4585
|
+
{
|
|
4586
|
+
"abstract": true,
|
|
4587
|
+
"docs": {
|
|
4588
|
+
"default": "- no lifecycle hooks",
|
|
4589
|
+
"stability": "experimental",
|
|
4590
|
+
"summary": "Optional lifecycle hooks."
|
|
4591
|
+
},
|
|
4592
|
+
"immutable": true,
|
|
4593
|
+
"locationInModule": {
|
|
4594
|
+
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4595
|
+
"line": 115
|
|
4596
|
+
},
|
|
4597
|
+
"name": "hooks",
|
|
4598
|
+
"optional": true,
|
|
4599
|
+
"type": {
|
|
4600
|
+
"fqn": "@cdklabs/cdk-ecs-codedeploy.AppSpecHooks"
|
|
4601
|
+
}
|
|
4602
|
+
},
|
|
4437
4603
|
{
|
|
4438
4604
|
"abstract": true,
|
|
4439
4605
|
"docs": {
|
|
@@ -4444,7 +4610,7 @@
|
|
|
4444
4610
|
"immutable": true,
|
|
4445
4611
|
"locationInModule": {
|
|
4446
4612
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4447
|
-
"line":
|
|
4613
|
+
"line": 73
|
|
4448
4614
|
},
|
|
4449
4615
|
"name": "responseTimeAlarmThreshold",
|
|
4450
4616
|
"optional": true,
|
|
@@ -4462,7 +4628,7 @@
|
|
|
4462
4628
|
"immutable": true,
|
|
4463
4629
|
"locationInModule": {
|
|
4464
4630
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4465
|
-
"line":
|
|
4631
|
+
"line": 30
|
|
4466
4632
|
},
|
|
4467
4633
|
"name": "terminationWaitTime",
|
|
4468
4634
|
"optional": true,
|
|
@@ -4480,7 +4646,7 @@
|
|
|
4480
4646
|
"immutable": true,
|
|
4481
4647
|
"locationInModule": {
|
|
4482
4648
|
"filename": "src/ecs-patterns/application-load-balanced-codedeployed-fargate-service.ts",
|
|
4483
|
-
"line":
|
|
4649
|
+
"line": 108
|
|
4484
4650
|
},
|
|
4485
4651
|
"name": "testPort",
|
|
4486
4652
|
"optional": true,
|
|
@@ -4502,7 +4668,7 @@
|
|
|
4502
4668
|
"kind": "interface",
|
|
4503
4669
|
"locationInModule": {
|
|
4504
4670
|
"filename": "src/ecs-appspec/index.ts",
|
|
4505
|
-
"line":
|
|
4671
|
+
"line": 164
|
|
4506
4672
|
},
|
|
4507
4673
|
"name": "AwsvpcConfiguration",
|
|
4508
4674
|
"properties": [
|
|
@@ -4515,7 +4681,7 @@
|
|
|
4515
4681
|
"immutable": true,
|
|
4516
4682
|
"locationInModule": {
|
|
4517
4683
|
"filename": "src/ecs-appspec/index.ts",
|
|
4518
|
-
"line":
|
|
4684
|
+
"line": 183
|
|
4519
4685
|
},
|
|
4520
4686
|
"name": "assignPublicIp",
|
|
4521
4687
|
"type": {
|
|
@@ -4531,7 +4697,7 @@
|
|
|
4531
4697
|
"immutable": true,
|
|
4532
4698
|
"locationInModule": {
|
|
4533
4699
|
"filename": "src/ecs-appspec/index.ts",
|
|
4534
|
-
"line":
|
|
4700
|
+
"line": 178
|
|
4535
4701
|
},
|
|
4536
4702
|
"name": "securityGroups",
|
|
4537
4703
|
"type": {
|
|
@@ -4552,7 +4718,7 @@
|
|
|
4552
4718
|
"immutable": true,
|
|
4553
4719
|
"locationInModule": {
|
|
4554
4720
|
"filename": "src/ecs-appspec/index.ts",
|
|
4555
|
-
"line":
|
|
4721
|
+
"line": 168
|
|
4556
4722
|
},
|
|
4557
4723
|
"name": "vpc",
|
|
4558
4724
|
"type": {
|
|
@@ -4568,7 +4734,7 @@
|
|
|
4568
4734
|
"immutable": true,
|
|
4569
4735
|
"locationInModule": {
|
|
4570
4736
|
"filename": "src/ecs-appspec/index.ts",
|
|
4571
|
-
"line":
|
|
4737
|
+
"line": 173
|
|
4572
4738
|
},
|
|
4573
4739
|
"name": "vpcSubnets",
|
|
4574
4740
|
"type": {
|
|
@@ -4592,7 +4758,7 @@
|
|
|
4592
4758
|
},
|
|
4593
4759
|
"locationInModule": {
|
|
4594
4760
|
"filename": "src/ecs-appspec/index.ts",
|
|
4595
|
-
"line":
|
|
4761
|
+
"line": 20
|
|
4596
4762
|
},
|
|
4597
4763
|
"parameters": [
|
|
4598
4764
|
{
|
|
@@ -4600,13 +4766,20 @@
|
|
|
4600
4766
|
"type": {
|
|
4601
4767
|
"fqn": "@cdklabs/cdk-ecs-codedeploy.TargetService"
|
|
4602
4768
|
}
|
|
4769
|
+
},
|
|
4770
|
+
{
|
|
4771
|
+
"name": "hooks",
|
|
4772
|
+
"optional": true,
|
|
4773
|
+
"type": {
|
|
4774
|
+
"fqn": "@cdklabs/cdk-ecs-codedeploy.AppSpecHooks"
|
|
4775
|
+
}
|
|
4603
4776
|
}
|
|
4604
4777
|
]
|
|
4605
4778
|
},
|
|
4606
4779
|
"kind": "class",
|
|
4607
4780
|
"locationInModule": {
|
|
4608
4781
|
"filename": "src/ecs-appspec/index.ts",
|
|
4609
|
-
"line":
|
|
4782
|
+
"line": 10
|
|
4610
4783
|
},
|
|
4611
4784
|
"methods": [
|
|
4612
4785
|
{
|
|
@@ -4617,7 +4790,7 @@
|
|
|
4617
4790
|
},
|
|
4618
4791
|
"locationInModule": {
|
|
4619
4792
|
"filename": "src/ecs-appspec/index.ts",
|
|
4620
|
-
"line":
|
|
4793
|
+
"line": 30
|
|
4621
4794
|
},
|
|
4622
4795
|
"name": "toString",
|
|
4623
4796
|
"returns": {
|
|
@@ -4645,7 +4818,7 @@
|
|
|
4645
4818
|
},
|
|
4646
4819
|
"locationInModule": {
|
|
4647
4820
|
"filename": "src/ecs-deployment/index.ts",
|
|
4648
|
-
"line":
|
|
4821
|
+
"line": 66
|
|
4649
4822
|
},
|
|
4650
4823
|
"parameters": [
|
|
4651
4824
|
{
|
|
@@ -4659,7 +4832,7 @@
|
|
|
4659
4832
|
"kind": "class",
|
|
4660
4833
|
"locationInModule": {
|
|
4661
4834
|
"filename": "src/ecs-deployment/index.ts",
|
|
4662
|
-
"line":
|
|
4835
|
+
"line": 60
|
|
4663
4836
|
},
|
|
4664
4837
|
"name": "EcsDeployment",
|
|
4665
4838
|
"properties": [
|
|
@@ -4670,7 +4843,7 @@
|
|
|
4670
4843
|
},
|
|
4671
4844
|
"locationInModule": {
|
|
4672
4845
|
"filename": "src/ecs-deployment/index.ts",
|
|
4673
|
-
"line":
|
|
4846
|
+
"line": 64
|
|
4674
4847
|
},
|
|
4675
4848
|
"name": "deploymentId",
|
|
4676
4849
|
"type": {
|
|
@@ -4764,6 +4937,24 @@
|
|
|
4764
4937
|
"primitive": "string"
|
|
4765
4938
|
}
|
|
4766
4939
|
},
|
|
4940
|
+
{
|
|
4941
|
+
"abstract": true,
|
|
4942
|
+
"docs": {
|
|
4943
|
+
"default": "- no lifecycle hooks",
|
|
4944
|
+
"stability": "experimental",
|
|
4945
|
+
"summary": "Optional lifecycle hooks."
|
|
4946
|
+
},
|
|
4947
|
+
"immutable": true,
|
|
4948
|
+
"locationInModule": {
|
|
4949
|
+
"filename": "src/ecs-deployment/index.ts",
|
|
4950
|
+
"line": 49
|
|
4951
|
+
},
|
|
4952
|
+
"name": "hooks",
|
|
4953
|
+
"optional": true,
|
|
4954
|
+
"type": {
|
|
4955
|
+
"fqn": "@cdklabs/cdk-ecs-codedeploy.AppSpecHooks"
|
|
4956
|
+
}
|
|
4957
|
+
},
|
|
4767
4958
|
{
|
|
4768
4959
|
"abstract": true,
|
|
4769
4960
|
"docs": {
|
|
@@ -4797,7 +4988,7 @@
|
|
|
4797
4988
|
"kind": "interface",
|
|
4798
4989
|
"locationInModule": {
|
|
4799
4990
|
"filename": "src/ecs-appspec/index.ts",
|
|
4800
|
-
"line":
|
|
4991
|
+
"line": 121
|
|
4801
4992
|
},
|
|
4802
4993
|
"name": "TargetService",
|
|
4803
4994
|
"properties": [
|
|
@@ -4811,7 +5002,7 @@
|
|
|
4811
5002
|
"immutable": true,
|
|
4812
5003
|
"locationInModule": {
|
|
4813
5004
|
"filename": "src/ecs-appspec/index.ts",
|
|
4814
|
-
"line":
|
|
5005
|
+
"line": 130
|
|
4815
5006
|
},
|
|
4816
5007
|
"name": "containerName",
|
|
4817
5008
|
"type": {
|
|
@@ -4827,7 +5018,7 @@
|
|
|
4827
5018
|
"immutable": true,
|
|
4828
5019
|
"locationInModule": {
|
|
4829
5020
|
"filename": "src/ecs-appspec/index.ts",
|
|
4830
|
-
"line":
|
|
5021
|
+
"line": 135
|
|
4831
5022
|
},
|
|
4832
5023
|
"name": "containerPort",
|
|
4833
5024
|
"type": {
|
|
@@ -4843,7 +5034,7 @@
|
|
|
4843
5034
|
"immutable": true,
|
|
4844
5035
|
"locationInModule": {
|
|
4845
5036
|
"filename": "src/ecs-appspec/index.ts",
|
|
4846
|
-
"line":
|
|
5037
|
+
"line": 125
|
|
4847
5038
|
},
|
|
4848
5039
|
"name": "taskDefinition",
|
|
4849
5040
|
"type": {
|
|
@@ -4860,7 +5051,7 @@
|
|
|
4860
5051
|
"immutable": true,
|
|
4861
5052
|
"locationInModule": {
|
|
4862
5053
|
"filename": "src/ecs-appspec/index.ts",
|
|
4863
|
-
"line":
|
|
5054
|
+
"line": 150
|
|
4864
5055
|
},
|
|
4865
5056
|
"name": "awsvpcConfiguration",
|
|
4866
5057
|
"optional": true,
|
|
@@ -4878,7 +5069,7 @@
|
|
|
4878
5069
|
"immutable": true,
|
|
4879
5070
|
"locationInModule": {
|
|
4880
5071
|
"filename": "src/ecs-appspec/index.ts",
|
|
4881
|
-
"line":
|
|
5072
|
+
"line": 157
|
|
4882
5073
|
},
|
|
4883
5074
|
"name": "capacityProviderStrategy",
|
|
4884
5075
|
"optional": true,
|
|
@@ -4902,7 +5093,7 @@
|
|
|
4902
5093
|
"immutable": true,
|
|
4903
5094
|
"locationInModule": {
|
|
4904
5095
|
"filename": "src/ecs-appspec/index.ts",
|
|
4905
|
-
"line":
|
|
5096
|
+
"line": 143
|
|
4906
5097
|
},
|
|
4907
5098
|
"name": "platformVersion",
|
|
4908
5099
|
"optional": true,
|
|
@@ -4914,6 +5105,6 @@
|
|
|
4914
5105
|
"symbolId": "src/ecs-appspec/index:TargetService"
|
|
4915
5106
|
}
|
|
4916
5107
|
},
|
|
4917
|
-
"version": "0.0.
|
|
4918
|
-
"fingerprint": "
|
|
5108
|
+
"version": "0.0.155",
|
|
5109
|
+
"fingerprint": "4rS2SLjSpCmvidSOI//UkNgKeORU/Y/YuxCnog6771E="
|
|
4919
5110
|
}
|