interface IJob
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.IJob |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#IJob |
Java | software.amazon.awscdk.services.glue.alpha.IJob |
Python | aws_cdk.aws_glue_alpha.IJob |
TypeScript (source) | @aws-cdk/aws-glue-alpha ยป IJob |
Implemented by
Py, Py, Py, Python, Ray, Scala, Scala, Scala
Obtainable from
Job.fromJobAttributes()
Interface representing a new or an imported Glue Job.
Properties
| Name | Type | Description |
|---|---|---|
| env | Resource | The environment this resource belongs to. |
| grant | IPrincipal | The principal to grant permissions to. |
| job | string | The ARN of the job. |
| job | string | The name of the job. |
| node | Node | The tree node. |
| stack | Stack | The stack in which this resource is defined. |
env
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by
creating new class instances like new Role(), new Bucket(), etc.), this
is always the same as the environment of the stack they belong to.
For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(), Bucket.fromBucketName(), etc.), they might be
different than the stack they were imported into.
grantPrincipal
Type:
IPrincipal
The principal to grant permissions to.
jobArn
Type:
string
The ARN of the job.
jobName
Type:
string
The name of the job.
node
Type:
Node
The tree node.
stack
Type:
Stack
The stack in which this resource is defined.
Methods
| Name | Description |
|---|---|
| apply | Apply the given removal policy to this resource. |
| metric(metricName, type, props?) | Create a CloudWatch metric. |
| metric | Create a CloudWatch Metric indicating job failure. |
| metric | Create a CloudWatch Metric indicating job success. |
| metric | Create a CloudWatch Metric indicating job timeout. |
| on | Defines a CloudWatch event rule triggered when something happens with this job. |
| on | Defines a CloudWatch event rule triggered when this job moves to the FAILED state. |
| on | Defines a CloudWatch event rule triggered when this job moves to the SUCCEEDED state. |
| on | Defines a CloudWatch event rule triggered when this job moves to the TIMEOUT state. |
applyRemovalPolicy(policy)
public applyRemovalPolicy(policy: RemovalPolicy): void
Parameters
- policy
RemovalPolicy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN).
metric(metricName, type, props?)
public metric(metricName: string, type: MetricType, props?: MetricOptions): Metric
Parameters
- metricName
stringโ name of the metric typically prefixed withglue.driver.,glue.<executorId>.orglue.ALL.. - type
Metricโ the metric type.Type - props
Metricโ metric options.Options
Returns
Create a CloudWatch metric.
metricFailure(props?)
public metricFailure(props?: MetricOptions): Metric
Parameters
- props
MetricOptions
Returns
Create a CloudWatch Metric indicating job failure.
metricSuccess(props?)
public metricSuccess(props?: MetricOptions): Metric
Parameters
- props
MetricOptions
Returns
Create a CloudWatch Metric indicating job success.
metricTimeout(props?)
public metricTimeout(props?: MetricOptions): Metric
Parameters
- props
MetricOptions
Returns
Create a CloudWatch Metric indicating job timeout.
onEvent(id, options?)
public onEvent(id: string, options?: OnEventOptions): Rule
Parameters
- id
string - options
OnEvent Options
Returns
Defines a CloudWatch event rule triggered when something happens with this job.
onFailure(id, options?)
public onFailure(id: string, options?: OnEventOptions): Rule
Parameters
- id
string - options
OnEvent Options
Returns
Defines a CloudWatch event rule triggered when this job moves to the FAILED state.
onSuccess(id, options?)
public onSuccess(id: string, options?: OnEventOptions): Rule
Parameters
- id
string - options
OnEvent Options
Returns
Defines a CloudWatch event rule triggered when this job moves to the SUCCEEDED state.
onTimeout(id, options?)
public onTimeout(id: string, options?: OnEventOptions): Rule
Parameters
- id
string - options
OnEvent Options
Returns
Defines a CloudWatch event rule triggered when this job moves to the TIMEOUT state.

.NET
Go
Java
Python
TypeScript (