import { _NetworkConfiguration, _UnmarshalledNetworkConfiguration } from "./_NetworkConfiguration"; /** *
The details of an Amazon ECS service deployment. This is used only when a service uses the ECS deployment controller type.
The ID of the deployment.
*/ id?: string; /** *The status of the deployment. The following describes each state:
The most recent deployment of a service.
A service deployment that still has running tasks, but are in the process of being replaced with a new PRIMARY deployment.
A deployment that has been completely replaced.
The most recent task definition that was specified for the tasks in the service to use.
*/ taskDefinition?: string; /** *The most recent desired count of tasks that was specified for the service to deploy or maintain.
*/ desiredCount?: number; /** *The number of tasks in the deployment that are in the PENDING status.
The number of tasks in the deployment that are in the RUNNING status.
The Unix timestamp for when the service deployment was created.
*/ createdAt?: Date | string | number; /** *The Unix timestamp for when the service deployment was last updated.
*/ updatedAt?: Date | string | number; /** *The launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types in the Amazon Elastic Container Service Developer Guide.
*/ launchType?: "EC2" | "FARGATE" | string; /** *The platform version on which your tasks in the service are running. A platform version is only specified for tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by default. For more information, see AWS Fargate Platform Versions in the Amazon Elastic Container Service Developer Guide.
The VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the awsvpc networking mode.
The Unix timestamp for when the service deployment was created.
*/ createdAt?: Date; /** *The Unix timestamp for when the service deployment was last updated.
*/ updatedAt?: Date; /** *The VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the awsvpc networking mode.