Show / Hide Table of Contents

Class CfnNotebookExecution.ExecutionEngineConfigProperty

Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.

Inheritance
object
CfnNotebookExecution.ExecutionEngineConfigProperty
Implements
CfnNotebookExecution.IExecutionEngineConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-notebookexecution-executionengineconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-notebookexecution-executionengineconfig.html

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

string

Remarks

For an Amazon EMR cluster, this is the cluster ID.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-notebookexecution-executionengineconfig.html#cfn-emr-notebookexecution-executionengineconfig-id

Type

The type of execution engine.

public string? Type { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-notebookexecution-executionengineconfig.html#cfn-emr-notebookexecution-executionengineconfig-type

Implements

CfnNotebookExecution.IExecutionEngineConfigProperty
Back to top Generated by DocFX