CfnNotebookExecutionMixinProps

class aws_cdk.cfn_property_mixins.aws_emr.CfnNotebookExecutionMixinProps(*, environment_variables=None, execution_engine=None, notebook_execution_name=None, notebook_params=None, notebook_s3_location=None, output_notebook_format=None, output_notebook_s3_location=None, tags=None)

Bases: object

Properties for CfnNotebookExecutionPropsMixin.

Parameters:
  • environment_variables (Union[IResolvable, Mapping[str, str], None]) – The environment variables associated with the notebook execution. Keys must be prefixed with KERNEL_ (except LOG_CONTEXT).

  • execution_engine (Union[IResolvable, ExecutionEngineConfigProperty, Dict[str, Any], None]) – Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.

  • notebook_execution_name (Optional[str]) – An optional name for the notebook execution.

  • notebook_params (Optional[str]) – Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution.

  • notebook_s3_location (Union[IResolvable, NotebookS3LocationProperty, Dict[str, Any], None]) – The Amazon S3 location that stores the notebook execution input.

  • output_notebook_format (Optional[str]) – The output format for the notebook execution.

  • output_notebook_s3_location (Union[IResolvable, OutputNotebookS3LocationProperty, Dict[str, Any], None]) – The Amazon S3 location for the notebook execution output.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of tags associated with a notebook execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_emr as emr

cfn_notebook_execution_mixin_props = emr.CfnNotebookExecutionMixinProps(
    environment_variables={
        "environment_variables_key": "environmentVariables"
    },
    execution_engine=emr.CfnNotebookExecutionPropsMixin.ExecutionEngineConfigProperty(
        id="id",
        type="type"
    ),
    notebook_execution_name="notebookExecutionName",
    notebook_params="notebookParams",
    notebook_s3_location=emr.CfnNotebookExecutionPropsMixin.NotebookS3LocationProperty(
        bucket="bucket",
        key="key"
    ),
    output_notebook_format="outputNotebookFormat",
    output_notebook_s3_location=emr.CfnNotebookExecutionPropsMixin.OutputNotebookS3LocationProperty(
        bucket="bucket",
        key="key"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

environment_variables

The environment variables associated with the notebook execution.

Keys must be prefixed with KERNEL_ (except LOG_CONTEXT).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-environmentvariables

execution_engine

Specifies the execution engine (cluster) to run the notebook and perform the notebook execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-executionengine

notebook_execution_name

An optional name for the notebook execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-notebookexecutionname

notebook_params

Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-notebookparams

notebook_s3_location

The Amazon S3 location that stores the notebook execution input.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-notebooks3location

output_notebook_format

The output format for the notebook execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-outputnotebookformat

output_notebook_s3_location

The Amazon S3 location for the notebook execution output.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-outputnotebooks3location

tags

A list of tags associated with a notebook execution.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-notebookexecution.html#cfn-emr-notebookexecution-tags