{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.ECS.StartTask -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Starts a new task from the specified task definition on the specified container instance or instances. -- -- -- Alternatively, you can use 'RunTask' to place tasks for you. For more information, see in the /Amazon Elastic Container Service Developer Guide/ . -- module Network.AWS.ECS.StartTask ( -- * Creating a Request startTask , StartTask -- * Request Lenses , sOverrides , sGroup , sCluster , sStartedBy , sNetworkConfiguration , sTaskDefinition , sContainerInstances -- * Destructuring the Response , startTaskResponse , StartTaskResponse -- * Response Lenses , strsFailures , strsTasks , strsResponseStatus ) where import Network.AWS.ECS.Types import Network.AWS.ECS.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'startTask' smart constructor. data StartTask = StartTask' { _sOverrides :: !(Maybe TaskOverride) , _sGroup :: !(Maybe Text) , _sCluster :: !(Maybe Text) , _sStartedBy :: !(Maybe Text) , _sNetworkConfiguration :: !(Maybe NetworkConfiguration) , _sTaskDefinition :: !Text , _sContainerInstances :: ![Text] } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'StartTask' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'sOverrides' - A list of container overrides in JSON format that specify the name of a container in the specified task definition and the overrides it should receive. You can override the default command for a container (that is specified in the task definition or Docker image) with a @command@ override. You can also override existing environment variables (that are specified in the task definition or Docker image) on a container or add new environment variables to it with an @environment@ override. -- -- * 'sGroup' - The name of the task group to associate with the task. The default value is the family name of the task definition (for example, family:my-family-name). -- -- * 'sCluster' - The short name or full Amazon Resource Name (ARN) of the cluster on which to start your task. If you do not specify a cluster, the default cluster is assumed. -- -- * 'sStartedBy' - An optional tag specified when a task is started. For example if you automatically trigger a task to run a batch process job, you could apply a unique identifier for that job to your task with the @startedBy@ parameter. You can then identify which tasks belong to that job by filtering the results of a 'ListTasks' call with the @startedBy@ value. Up to 36 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. If a task is started by an Amazon ECS service, then the @startedBy@ parameter contains the deployment ID of the service that starts it. -- -- * 'sNetworkConfiguration' - The VPC subnet and security group configuration for tasks that receive their own Elastic Network Interface by using the @awsvpc@ networking mode. -- -- * 'sTaskDefinition' - The @family@ and @revision@ (@family:revision@ ) or full ARN of the task definition to start. If a @revision@ is not specified, the latest @ACTIVE@ revision is used. -- -- * 'sContainerInstances' - The container instance IDs or full ARN entries for the container instances on which you would like to place your task. You can specify up to 10 container instances. startTask :: Text -- ^ 'sTaskDefinition' -> StartTask startTask pTaskDefinition_ = StartTask' { _sOverrides = Nothing , _sGroup = Nothing , _sCluster = Nothing , _sStartedBy = Nothing , _sNetworkConfiguration = Nothing , _sTaskDefinition = pTaskDefinition_ , _sContainerInstances = mempty } -- | A list of container overrides in JSON format that specify the name of a container in the specified task definition and the overrides it should receive. You can override the default command for a container (that is specified in the task definition or Docker image) with a @command@ override. You can also override existing environment variables (that are specified in the task definition or Docker image) on a container or add new environment variables to it with an @environment@ override. sOverrides :: Lens' StartTask (Maybe TaskOverride) sOverrides = lens _sOverrides (\ s a -> s{_sOverrides = a}) -- | The name of the task group to associate with the task. The default value is the family name of the task definition (for example, family:my-family-name). sGroup :: Lens' StartTask (Maybe Text) sGroup = lens _sGroup (\ s a -> s{_sGroup = a}) -- | The short name or full Amazon Resource Name (ARN) of the cluster on which to start your task. If you do not specify a cluster, the default cluster is assumed. sCluster :: Lens' StartTask (Maybe Text) sCluster = lens _sCluster (\ s a -> s{_sCluster = a}) -- | An optional tag specified when a task is started. For example if you automatically trigger a task to run a batch process job, you could apply a unique identifier for that job to your task with the @startedBy@ parameter. You can then identify which tasks belong to that job by filtering the results of a 'ListTasks' call with the @startedBy@ value. Up to 36 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. If a task is started by an Amazon ECS service, then the @startedBy@ parameter contains the deployment ID of the service that starts it. sStartedBy :: Lens' StartTask (Maybe Text) sStartedBy = lens _sStartedBy (\ s a -> s{_sStartedBy = a}) -- | The VPC subnet and security group configuration for tasks that receive their own Elastic Network Interface by using the @awsvpc@ networking mode. sNetworkConfiguration :: Lens' StartTask (Maybe NetworkConfiguration) sNetworkConfiguration = lens _sNetworkConfiguration (\ s a -> s{_sNetworkConfiguration = a}) -- | The @family@ and @revision@ (@family:revision@ ) or full ARN of the task definition to start. If a @revision@ is not specified, the latest @ACTIVE@ revision is used. sTaskDefinition :: Lens' StartTask Text sTaskDefinition = lens _sTaskDefinition (\ s a -> s{_sTaskDefinition = a}) -- | The container instance IDs or full ARN entries for the container instances on which you would like to place your task. You can specify up to 10 container instances. sContainerInstances :: Lens' StartTask [Text] sContainerInstances = lens _sContainerInstances (\ s a -> s{_sContainerInstances = a}) . _Coerce instance AWSRequest StartTask where type Rs StartTask = StartTaskResponse request = postJSON ecs response = receiveJSON (\ s h x -> StartTaskResponse' <$> (x .?> "failures" .!@ mempty) <*> (x .?> "tasks" .!@ mempty) <*> (pure (fromEnum s))) instance Hashable StartTask where instance NFData StartTask where instance ToHeaders StartTask where toHeaders = const (mconcat ["X-Amz-Target" =# ("AmazonEC2ContainerServiceV20141113.StartTask" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON StartTask where toJSON StartTask'{..} = object (catMaybes [("overrides" .=) <$> _sOverrides, ("group" .=) <$> _sGroup, ("cluster" .=) <$> _sCluster, ("startedBy" .=) <$> _sStartedBy, ("networkConfiguration" .=) <$> _sNetworkConfiguration, Just ("taskDefinition" .= _sTaskDefinition), Just ("containerInstances" .= _sContainerInstances)]) instance ToPath StartTask where toPath = const "/" instance ToQuery StartTask where toQuery = const mempty -- | /See:/ 'startTaskResponse' smart constructor. data StartTaskResponse = StartTaskResponse' { _strsFailures :: !(Maybe [Failure]) , _strsTasks :: !(Maybe [Task]) , _strsResponseStatus :: !Int } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'StartTaskResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'strsFailures' - Any failures associated with the call. -- -- * 'strsTasks' - A full description of the tasks that were started. Each task that was successfully placed on your container instances is described. -- -- * 'strsResponseStatus' - -- | The response status code. startTaskResponse :: Int -- ^ 'strsResponseStatus' -> StartTaskResponse startTaskResponse pResponseStatus_ = StartTaskResponse' { _strsFailures = Nothing , _strsTasks = Nothing , _strsResponseStatus = pResponseStatus_ } -- | Any failures associated with the call. strsFailures :: Lens' StartTaskResponse [Failure] strsFailures = lens _strsFailures (\ s a -> s{_strsFailures = a}) . _Default . _Coerce -- | A full description of the tasks that were started. Each task that was successfully placed on your container instances is described. strsTasks :: Lens' StartTaskResponse [Task] strsTasks = lens _strsTasks (\ s a -> s{_strsTasks = a}) . _Default . _Coerce -- | -- | The response status code. strsResponseStatus :: Lens' StartTaskResponse Int strsResponseStatus = lens _strsResponseStatus (\ s a -> s{_strsResponseStatus = a}) instance NFData StartTaskResponse where