| Copyright | (c) 2013-2017 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.Batch.RegisterJobDefinition
Description
Registers an AWS Batch job definition.
- registerJobDefinition :: Text -> JobDefinitionType -> RegisterJobDefinition
- data RegisterJobDefinition
- rjdRetryStrategy :: Lens' RegisterJobDefinition (Maybe RetryStrategy)
- rjdParameters :: Lens' RegisterJobDefinition (HashMap Text Text)
- rjdContainerProperties :: Lens' RegisterJobDefinition (Maybe ContainerProperties)
- rjdJobDefinitionName :: Lens' RegisterJobDefinition Text
- rjdType :: Lens' RegisterJobDefinition JobDefinitionType
- registerJobDefinitionResponse :: Int -> Text -> Text -> Int -> RegisterJobDefinitionResponse
- data RegisterJobDefinitionResponse
- rjdrsResponseStatus :: Lens' RegisterJobDefinitionResponse Int
- rjdrsJobDefinitionName :: Lens' RegisterJobDefinitionResponse Text
- rjdrsJobDefinitionARN :: Lens' RegisterJobDefinitionResponse Text
- rjdrsRevision :: Lens' RegisterJobDefinitionResponse Int
Creating a Request
registerJobDefinition Source #
Arguments
| :: Text | |
| -> JobDefinitionType | |
| -> RegisterJobDefinition |
Creates a value of RegisterJobDefinition with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
rjdRetryStrategy- The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that is specified during aSubmitJoboperation overrides the retry strategy defined here.rjdParameters- Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in aSubmitJobrequest override any corresponding parameter defaults from the job definition.rjdContainerProperties- An object with various properties specific for container-based jobs. This parameter is required if thetypeparameter iscontainer.rjdJobDefinitionName- The name of the job definition to register. Up to 128 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed.rjdType- The type of job definition.
data RegisterJobDefinition Source #
See: registerJobDefinition smart constructor.
Instances
Request Lenses
rjdRetryStrategy :: Lens' RegisterJobDefinition (Maybe RetryStrategy) Source #
The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that is specified during a SubmitJob operation overrides the retry strategy defined here.
rjdParameters :: Lens' RegisterJobDefinition (HashMap Text Text) Source #
Default parameter substitution placeholders to set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a SubmitJob request override any corresponding parameter defaults from the job definition.
rjdContainerProperties :: Lens' RegisterJobDefinition (Maybe ContainerProperties) Source #
An object with various properties specific for container-based jobs. This parameter is required if the type parameter is container .
rjdJobDefinitionName :: Lens' RegisterJobDefinition Text Source #
The name of the job definition to register. Up to 128 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed.
rjdType :: Lens' RegisterJobDefinition JobDefinitionType Source #
The type of job definition.
Destructuring the Response
registerJobDefinitionResponse Source #
Arguments
| :: Int | |
| -> Text | |
| -> Text | |
| -> Int | |
| -> RegisterJobDefinitionResponse |
Creates a value of RegisterJobDefinitionResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
rjdrsResponseStatus- -- | The response status code.rjdrsJobDefinitionName- The name of the job definition.rjdrsJobDefinitionARN- The Amazon Resource Name (ARN) of the job definition.rjdrsRevision- The revision of the job definition.
data RegisterJobDefinitionResponse Source #
See: registerJobDefinitionResponse smart constructor.
Instances
Response Lenses
rjdrsResponseStatus :: Lens' RegisterJobDefinitionResponse Int Source #
- - | The response status code.
rjdrsJobDefinitionName :: Lens' RegisterJobDefinitionResponse Text Source #
The name of the job definition.
rjdrsJobDefinitionARN :: Lens' RegisterJobDefinitionResponse Text Source #
The Amazon Resource Name (ARN) of the job definition.
rjdrsRevision :: Lens' RegisterJobDefinitionResponse Int Source #
The revision of the job definition.