interface OutputNotebookS3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnNotebookExecutionPropsMixin.OutputNotebookS3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnNotebookExecutionPropsMixin_OutputNotebookS3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnNotebookExecutionPropsMixin.OutputNotebookS3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnNotebookExecutionPropsMixin.OutputNotebookS3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » CfnNotebookExecutionPropsMixin » OutputNotebookS3LocationProperty |
The Amazon S3 location for the notebook execution output.
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/cfn-property-mixins';
const outputNotebookS3LocationProperty: emr.CfnNotebookExecutionPropsMixin.OutputNotebookS3LocationProperty = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The Amazon S3 bucket that stores the notebook execution output. |
| key? | string | The key to the Amazon S3 location that stores the notebook execution output. |
bucket?
Type:
string
(optional)
The Amazon S3 bucket that stores the notebook execution output.
key?
Type:
string
(optional)
The key to the Amazon S3 location that stores the notebook execution output.

.NET
Go
Java
Python
TypeScript