interface ExecutionEngineConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnNotebookExecutionPropsMixin.ExecutionEngineConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnNotebookExecutionPropsMixin_ExecutionEngineConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnNotebookExecutionPropsMixin.ExecutionEngineConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnNotebookExecutionPropsMixin.ExecutionEngineConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » CfnNotebookExecutionPropsMixin » 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/cfn-property-mixins';
const executionEngineConfigProperty: emr.CfnNotebookExecutionPropsMixin.ExecutionEngineConfigProperty = {
id: 'id',
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
(optional)
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