interface NotebookExecutionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EMR.NotebookExecutionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsemr#NotebookExecutionReference |
Java | software.amazon.awscdk.interfaces.emr.NotebookExecutionReference |
Python | aws_cdk.interfaces.aws_emr.NotebookExecutionReference |
TypeScript | aws-cdk-lib » interfaces » aws_emr » NotebookExecutionReference |
A reference to a NotebookExecution resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as interfaces_emr } from 'aws-cdk-lib/interfaces';
const notebookExecutionReference: interfaces_emr.NotebookExecutionReference = {
notebookExecutionArn: 'notebookExecutionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| notebook | string | The Arn of the NotebookExecution resource. |
notebookExecutionArn
Type:
string
The Arn of the NotebookExecution resource.

.NET
Go
Java
Python
TypeScript