@awboost/cfn-resource-types 0.1.424 → 0.1.425
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/lib/AWS-ECS-Service.d.ts +5 -0
- package/package.json +1 -1
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -482,11 +482,16 @@ export type EBSTagSpecification = {
|
|
|
482
482
|
};
|
|
483
483
|
/**
|
|
484
484
|
* Type definition for `AWS::ECS::Service.ForceNewDeployment`.
|
|
485
|
+
* Determines whether to force a new deployment of the service. By default, deployments aren't forced. You can use this option to start a new deployment with no service definition changes. For example, you can update a service's tasks to use a newer Docker image with the same image/tag combination (``my_image:latest``) or to roll Fargate tasks onto a newer platform version.
|
|
485
486
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-forcenewdeployment.html}
|
|
486
487
|
*/
|
|
487
488
|
export type ForceNewDeployment = {
|
|
489
|
+
/**
|
|
490
|
+
* Determines whether to force a new deployment of the service. By default, deployments aren't forced. You can use this option to start a new deployment with no service definition changes. For example, you can update a service's tasks to use a newer Docker image with the same image/tag combination (``my_image:latest``) or to roll Fargate tasks onto a newer platform version.
|
|
491
|
+
*/
|
|
488
492
|
EnableForceNewDeployment: boolean;
|
|
489
493
|
/**
|
|
494
|
+
* When you change the``ForceNewDeploymentNonce`` value in your template, it signals ECS to start a new deployment even though no other service parameters have changed. The value must be a unique, time- varying value like a timestamp, random string, or sequence number. Use this property when you want to ensure your tasks pick up the latest version of a Docker image that uses the same tag but has been updated in the registry.
|
|
490
495
|
* @minLength `1`
|
|
491
496
|
* @maxLength `255`
|
|
492
497
|
*/
|