deregisterContainerInstance

Deregisters an Amazon ECS container instance from the specified cluster. This instance is no longer available to run tasks.

If you intend to use the container instance for some other purpose after deregistration, we recommend that you stop all of the tasks running on the container instance before deregistration. That prevents any orphaned tasks from consuming resources.

Deregistering a container instance removes the instance from a cluster, but it doesn't terminate the EC2 instance. If you are finished using the instance, be sure to terminate it in the Amazon EC2 console to stop billing.

If you terminate a running container instance, Amazon ECS automatically deregisters the instance from your cluster (stopped container instances or instances with disconnected agents aren't automatically deregistered when terminated).

Samples


fun main() { 
   //sampleStart 
   // This example deregisters a container instance from the specified cluster in your default region. If
// there are still tasks running on the container instance, you must either stop those tasks before
// deregistering, or use the force option.
val resp = ecsClient.deregisterContainerInstance {
    cluster = "default"
    force = true
    containerInstance = "container_instance_UUID"
} 
   //sampleEnd
}