Class CfnNotebookExecution.ExecutionEngineConfigProperty
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.
Inherited Members
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNotebookExecution.ExecutionEngineConfigProperty : CfnNotebookExecution.IExecutionEngineConfigProperty
Syntax (vb)
Public Class CfnNotebookExecution.ExecutionEngineConfigProperty Implements CfnNotebookExecution.IExecutionEngineConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EMR;
var executionEngineConfigProperty = new ExecutionEngineConfigProperty {
Id = "id",
// the properties below are optional
Type = "type"
};
Synopsis
Constructors
| ExecutionEngineConfigProperty() | Specifies the execution engine (cluster) to run the notebook and perform the notebook execution. |
Properties
| Id | The unique identifier of the execution engine. |
| Type | The type of execution engine. |
Constructors
ExecutionEngineConfigProperty()
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.
public ExecutionEngineConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EMR;
var executionEngineConfigProperty = new ExecutionEngineConfigProperty {
Id = "id",
// the properties below are optional
Type = "type"
};
Properties
Id
The unique identifier of the execution engine.
public string Id { get; set; }
Property Value
Remarks
For an Amazon EMR cluster, this is the cluster ID.
Type
The type of execution engine.
public string? Type { get; set; }