interface ExecutionEngineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnNotebookExecution.ExecutionEngineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnNotebookExecution_ExecutionEngineConfigProperty |
Java | software.amazon.awscdk.services.emr.CfnNotebookExecution.ExecutionEngineConfigProperty |
Python | aws_cdk.aws_emr.CfnNotebookExecution.ExecutionEngineConfigProperty |
TypeScript | aws-cdk-lib » aws_emr » CfnNotebookExecution » ExecutionEngineConfigProperty |
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as emr } from 'aws-cdk-lib';
const executionEngineConfigProperty: emr.CfnNotebookExecution.ExecutionEngineConfigProperty = {
id: 'id',
// the properties below are optional
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the execution engine. |
| type? | string | The type of execution engine. |
id
Type:
string
The unique identifier of the execution engine.
For an Amazon EMR cluster, this is the cluster ID.
type?
Type:
string
(optional)
The type of execution engine.

.NET
Go
Java
Python
TypeScript