Get the SageMaker Execution Role - Amazon SageMaker
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Get the SageMaker Execution Role

Get the execution role for the notebook instance. This is the IAM role that you created for your notebook instance.

To find the ARN of the IAM execution role attached to a notebook instance:

  1. Open the IAM console at https://console.amazonaws.cn/iam/.

  2. On the left navigation pane, choose Notebook then Notebook instances.

  3. From the list of notebooks, select the notebook that you want to view.

  4. The ARN is in the Permissions and encryption section.

Alternatively, Amazon SageMaker Python SDK users can retrieve the ARN of the execution role attached to their user profile or a notebook instance by running the following code:

from sagemaker import get_execution_role role = get_execution_role() print(role)

For more information about using get_execution_role in the Amazon SageMaker Python SDK, see Session. For more information about roles, see SageMaker Roles.

Next Step

Use an Amazon S3 bucket for input and output