Fargate Spot后备结构 此构造将后备ECS服务链接到您的Fargate Spot服务,因此,如果ECS无法获得任何Fargate Spot容量,则后备服务的desiredCount会增加到主服务的期望数。 当您的主服务返回稳定状态时,该构造会将后备服务返回到零期望计数。 例子 // Define your task const taskDefinition = new ecs . FargateTaskDefinition ( this , 'Primary' ) ; taskDefinition . addContainer ( 'web' , { image : ecs . ContainerImage . fromRegistry ( 'nginx:1' ) , portMappings : [ { containerPort : 80 } ] , } ) ; /