interface NotebookS3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnNotebookExecution.NotebookS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnNotebookExecution_NotebookS3LocationProperty |
Java | software.amazon.awscdk.services.emr.CfnNotebookExecution.NotebookS3LocationProperty |
Python | aws_cdk.aws_emr.CfnNotebookExecution.NotebookS3LocationProperty |
TypeScript | aws-cdk-lib » aws_emr » CfnNotebookExecution » NotebookS3LocationProperty |
The Amazon S3 location that stores the notebook execution input.
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 notebookS3LocationProperty: emr.CfnNotebookExecution.NotebookS3LocationProperty = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The Amazon S3 bucket that stores the notebook execution input. |
| key? | string | The key to the Amazon S3 location that stores the notebook execution input. |
bucket?
Type:
string
(optional)
The Amazon S3 bucket that stores the notebook execution input.
key?
Type:
string
(optional)
The key to the Amazon S3 location that stores the notebook execution input.

.NET
Go
Java
Python
TypeScript