![]() |
![]()
| ![]() |
![]()
NAMEPaws::ECS::Deployment USAGEThis class represents one of two things: Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::ECS::Deployment object: $service_obj->Method(Att1 => { CapacityProviderStrategy => $value, ..., UpdatedAt => $value }); Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::ECS::Deployment object: $result = $service_obj->Method(...); $result->Att1->CapacityProviderStrategy DESCRIPTIONThe details of an Amazon ECS service deployment. This is used only when a service uses the "ECS" deployment controller type. ATTRIBUTESCapacityProviderStrategy => ArrayRef[Paws::ECS::CapacityProviderStrategyItem]The capacity provider strategy that the deployment is using. CreatedAt => StrThe Unix timestamp for when the service deployment was created. DesiredCount => IntThe most recent desired count of tasks that was specified for the service to deploy or maintain. FailedTasks => IntThe number of consecutively failed tasks in the deployment. A task is considered a failure if the service scheduler can't launch the task, the task doesn't transition to a "RUNNING" state, or if it fails any of its defined health checks and is stopped. Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and stops being evaluated. Id => StrThe ID of the deployment. LaunchType => StrThe launch type the tasks in the service are using. For more information, see Amazon ECS Launch Types (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) in the Amazon Elastic Container Service Developer Guide. NetworkConfiguration => Paws::ECS::NetworkConfigurationThe VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the "awsvpc" networking mode. PendingCount => IntThe number of tasks in the deployment that are in the "PENDING" status. PlatformVersion => StrThe 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 (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html) in the Amazon Elastic Container Service Developer Guide. RolloutState => StrThe "rolloutState" of a service is only returned for services that use the rolling update ("ECS") deployment type that are not behind a Classic Load Balancer. The rollout state of the deployment. When a service deployment is started, it begins in an "IN_PROGRESS" state. When the service reaches a steady state, the deployment will transition to a "COMPLETED" state. If the service fails to reach a steady state and circuit breaker is enabled, the deployment will transition to a "FAILED" state. A deployment in "FAILED" state will launch no new tasks. For more information, see DeploymentCircuitBreaker. RolloutStateReason => StrA description of the rollout state of a deployment. RunningCount => IntThe number of tasks in the deployment that are in the "RUNNING" status. Status => StrThe status of the deployment. The following describes each state: TaskDefinition => StrThe most recent task definition that was specified for the tasks in the service to use. UpdatedAt => StrThe Unix timestamp for when the service deployment was last updated. SEE ALSOThis class forms part of Paws, describing an object used in Paws::ECS BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|