amazonka-emr-containers-2.0: Amazon EMR Containers SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.EMRContainers.Types.JobTemplate

Description

 
Synopsis

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

Instances details
FromJSON JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

Generic JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

Associated Types

type Rep JobTemplate :: Type -> Type #

Show JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

NFData JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

Methods

rnf :: JobTemplate -> () #

Eq JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

Hashable JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

type Rep JobTemplate Source # 
Instance details

Defined in Amazonka.EMRContainers.Types.JobTemplate

newJobTemplate Source #

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.