| Copyright | (c) 2013-2023 Brendan Hay | 
|---|---|
| License | Mozilla Public License, v. 2.0. | 
| Maintainer | Brendan Hay | 
| Stability | auto-generated | 
| Portability | non-portable (GHC extensions) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
Amazonka.EMRContainers.Types.JobTemplate
Description
Synopsis
- data JobTemplate = JobTemplate' {}
 - newJobTemplate :: JobTemplateData -> JobTemplate
 - jobTemplate_arn :: Lens' JobTemplate (Maybe Text)
 - jobTemplate_createdAt :: Lens' JobTemplate (Maybe UTCTime)
 - jobTemplate_createdBy :: Lens' JobTemplate (Maybe Text)
 - jobTemplate_decryptionError :: Lens' JobTemplate (Maybe Text)
 - jobTemplate_id :: Lens' JobTemplate (Maybe Text)
 - jobTemplate_kmsKeyArn :: Lens' JobTemplate (Maybe Text)
 - jobTemplate_name :: Lens' JobTemplate (Maybe Text)
 - jobTemplate_tags :: Lens' JobTemplate (Maybe (HashMap Text Text))
 - jobTemplate_jobTemplateData :: Lens' JobTemplate JobTemplateData
 
Documentation
data JobTemplate Source #
This entity describes a job template. Job template stores values of StartJobRun API request in a template and can be used to start a job run. Job template allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun API request.
See: newJobTemplate smart constructor.
Constructors
| JobTemplate' | |
Fields 
  | |
Instances
Arguments
| :: JobTemplateData | |
| -> JobTemplate | 
Create a value of JobTemplate with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:arn:JobTemplate', jobTemplate_arn - The ARN of the job template.
$sel:createdAt:JobTemplate', jobTemplate_createdAt - The date and time when the job template was created.
$sel:createdBy:JobTemplate', jobTemplate_createdBy - The user who created the job template.
$sel:decryptionError:JobTemplate', jobTemplate_decryptionError - The error message in case the decryption of job template fails.
$sel:id:JobTemplate', jobTemplate_id - The ID of the job template.
$sel:kmsKeyArn:JobTemplate', jobTemplate_kmsKeyArn - The KMS key ARN used to encrypt the job template.
$sel:name:JobTemplate', jobTemplate_name - The name of the job template.
$sel:tags:JobTemplate', jobTemplate_tags - The tags assigned to the job template.
$sel:jobTemplateData:JobTemplate', jobTemplate_jobTemplateData - The job template data which holds values of StartJobRun API request.
jobTemplate_arn :: Lens' JobTemplate (Maybe Text) Source #
The ARN of the job template.
jobTemplate_createdAt :: Lens' JobTemplate (Maybe UTCTime) Source #
The date and time when the job template was created.
jobTemplate_createdBy :: Lens' JobTemplate (Maybe Text) Source #
The user who created the job template.
jobTemplate_decryptionError :: Lens' JobTemplate (Maybe Text) Source #
The error message in case the decryption of job template fails.
jobTemplate_id :: Lens' JobTemplate (Maybe Text) Source #
The ID of the job template.
jobTemplate_kmsKeyArn :: Lens' JobTemplate (Maybe Text) Source #
The KMS key ARN used to encrypt the job template.
jobTemplate_name :: Lens' JobTemplate (Maybe Text) Source #
The name of the job template.
jobTemplate_tags :: Lens' JobTemplate (Maybe (HashMap Text Text)) Source #
The tags assigned to the job template.
jobTemplate_jobTemplateData :: Lens' JobTemplate JobTemplateData Source #
The job template data which holds values of StartJobRun API request.