Class CfnNotebookExecutionMixinProps
Properties for CfnNotebookExecutionPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.EMR
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnNotebookExecutionMixinProps : ICfnNotebookExecutionMixinProps
Syntax (vb)
Public Class CfnNotebookExecutionMixinProps Implements ICfnNotebookExecutionMixinProps
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.CfnPropertyMixins.AWS.EMR;
var cfnNotebookExecutionMixinProps = new CfnNotebookExecutionMixinProps {
EnvironmentVariables = new Dictionary<string, string> {
{ "environmentVariablesKey", "environmentVariables" }
},
ExecutionEngine = new ExecutionEngineConfigProperty {
Id = "id",
Type = "type"
},
NotebookExecutionName = "notebookExecutionName",
NotebookParams = "notebookParams",
NotebookS3Location = new NotebookS3LocationProperty {
Bucket = "bucket",
Key = "key"
},
OutputNotebookFormat = "outputNotebookFormat",
OutputNotebookS3Location = new OutputNotebookS3LocationProperty {
Bucket = "bucket",
Key = "key"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnNotebookExecutionMixinProps() | Properties for CfnNotebookExecutionPropsMixin. |
Properties
| EnvironmentVariables | The environment variables associated with the notebook execution. |
| ExecutionEngine | Specifies the execution engine (cluster) to run the notebook and perform the notebook execution. |
| NotebookExecutionName | An optional name for the notebook execution. |
| NotebookParams | Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution. |
| NotebookS3Location | The Amazon S3 location that stores the notebook execution input. |
| OutputNotebookFormat | The output format for the notebook execution. |
| OutputNotebookS3Location | The Amazon S3 location for the notebook execution output. |
| Tags | A list of tags associated with a notebook execution. |
Constructors
CfnNotebookExecutionMixinProps()
Properties for CfnNotebookExecutionPropsMixin.
public CfnNotebookExecutionMixinProps()
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.CfnPropertyMixins.AWS.EMR;
var cfnNotebookExecutionMixinProps = new CfnNotebookExecutionMixinProps {
EnvironmentVariables = new Dictionary<string, string> {
{ "environmentVariablesKey", "environmentVariables" }
},
ExecutionEngine = new ExecutionEngineConfigProperty {
Id = "id",
Type = "type"
},
NotebookExecutionName = "notebookExecutionName",
NotebookParams = "notebookParams",
NotebookS3Location = new NotebookS3LocationProperty {
Bucket = "bucket",
Key = "key"
},
OutputNotebookFormat = "outputNotebookFormat",
OutputNotebookS3Location = new OutputNotebookS3LocationProperty {
Bucket = "bucket",
Key = "key"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
EnvironmentVariables
The environment variables associated with the notebook execution.
public object? EnvironmentVariables { get; set; }
Property Value
Remarks
Keys must be prefixed with KERNEL_ (except LOG_CONTEXT).
Type union: either IResolvable or Dictionary<string, string>
ExecutionEngine
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.
public object? ExecutionEngine { get; set; }
Property Value
Remarks
NotebookExecutionName
An optional name for the notebook execution.
public string? NotebookExecutionName { get; set; }
Property Value
Remarks
NotebookParams
Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution.
public string? NotebookParams { get; set; }
Property Value
Remarks
NotebookS3Location
The Amazon S3 location that stores the notebook execution input.
public object? NotebookS3Location { get; set; }
Property Value
Remarks
OutputNotebookFormat
The output format for the notebook execution.
public string? OutputNotebookFormat { get; set; }
Property Value
Remarks
OutputNotebookS3Location
The Amazon S3 location for the notebook execution output.
public object? OutputNotebookS3Location { get; set; }
Property Value
Remarks
Tags
A list of tags associated with a notebook execution.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]