interface CfnNotebookExecutionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnNotebookExecutionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnNotebookExecutionProps |
Java | software.amazon.awscdk.services.emr.CfnNotebookExecutionProps |
Python | aws_cdk.aws_emr.CfnNotebookExecutionProps |
TypeScript | aws-cdk-lib » aws_emr » CfnNotebookExecutionProps |
Properties for defining a CfnNotebookExecution.
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-lib';
const cfnNotebookExecutionProps: emr.CfnNotebookExecutionProps = {
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
executionEngine: {
id: 'id',
// the properties below are optional
type: 'type',
},
notebookExecutionName: 'notebookExecutionName',
notebookParams: 'notebookParams',
notebookS3Location: {
bucket: 'bucket',
key: 'key',
},
outputNotebookFormat: 'outputNotebookFormat',
outputNotebookS3Location: {
bucket: 'bucket',
key: 'key',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| environment | IResolvable | { [string]: string } | The environment variables associated with the notebook execution. |
| execution | IResolvable | Execution | Specifies the execution engine (cluster) to run the notebook and perform the notebook execution. |
| notebook | string | An optional name for the notebook execution. |
| notebook | string | Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution. |
| notebook | IResolvable | Notebook | The Amazon S3 location that stores the notebook execution input. |
| output | string | The output format for the notebook execution. |
| output | IResolvable | Output | The Amazon S3 location for the notebook execution output. |
| tags? | Cfn[] | A list of tags associated with a notebook execution. |
environmentVariables?
Type:
IResolvable | { [string]: string }
(optional)
The environment variables associated with the notebook execution.
Keys must be prefixed with KERNEL_ (except LOG_CONTEXT).
executionEngine?
Type:
IResolvable | Execution
(optional)
Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.
notebookExecutionName?
Type:
string
(optional)
An optional name for the notebook execution.
notebookParams?
Type:
string
(optional)
Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution.
notebookS3Location?
Type:
IResolvable | Notebook
(optional)
The Amazon S3 location that stores the notebook execution input.
outputNotebookFormat?
Type:
string
(optional)
The output format for the notebook execution.
outputNotebookS3Location?
Type:
IResolvable | Output
(optional)
The Amazon S3 location for the notebook execution output.
tags?
Type:
Cfn[]
(optional)
A list of tags associated with a notebook execution.

.NET
Go
Java
Python
TypeScript