Interface CfnNotebookExecution.ExecutionEngineConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNotebookExecution.ExecutionEngineConfigProperty.Jsii$Proxy
Enclosing class:
CfnNotebookExecution

@Stability(Stable) public static interface CfnNotebookExecution.ExecutionEngineConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.emr.*;
 ExecutionEngineConfigProperty executionEngineConfigProperty = ExecutionEngineConfigProperty.builder()
         .id("id")
         // the properties below are optional
         .type("type")
         .build();
 

See Also: