AWS Fundamentals Logo
AWS Fundamentals
AWS::EMR::Studio

EMR Studio

Resource schema for AWS::EMR::Studio

Properties

17 configurable properties. 8 required. Click a row to see details.

Filter:
PropertyTypeFlags
AuthMode
string
RequiredCreate-only
DefaultS3Location
string
Required
EngineSecurityGroupId
string
RequiredCreate-only
Name
string
Required
ServiceRole
string
RequiredCreate-only
SubnetIds
Array<string>
Required
VpcId
string
RequiredCreate-only
WorkspaceSecurityGroupId
string
RequiredCreate-only
Description
string
EncryptionKeyArn
string
Create-only
IdcInstanceArn
string
Create-only
IdcUserAssignment
string
Create-only
IdpAuthUrl
string
IdpRelayStateParameterName
string
Tags
array
TrustedIdentityPropagationEnabled
boolean
Create-only
UserRole
string
Create-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the EMR Studio.
StudioIdstringThe ID of the EMR Studio.
UrlstringThe unique Studio access URL.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::EMR::Studio

Resources:
  MyResource:
    Type: AWS::EMR::Studio
    Properties:
      AuthMode: "SSO"
      EngineSecurityGroupId: "my-enginesecuritygroupid"
      Name: "my-name"
      ServiceRole: "value"
      SubnetIds: "my-subnetids"
      VpcId: "my-vpcid"
      WorkspaceSecurityGroupId: "my-workspacesecuritygroupid"
      DefaultS3Location: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

elasticmapreduce:CreateStudioelasticmapreduce:DescribeStudioelasticmapreduce:AddTagssso:CreateManagedApplicationInstancesso:DeleteManagedApplicationInstanceiam:PassRole

read

elasticmapreduce:DescribeStudiosso:GetManagedApplicationInstance

update

elasticmapreduce:UpdateStudioelasticmapreduce:DescribeStudioelasticmapreduce:AddTagselasticmapreduce:RemoveTags

delete

elasticmapreduce:DeleteStudioelasticmapreduce:DescribeStudiosso:DeleteManagedApplicationInstance

list

elasticmapreduce:ListStudios

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceEMR
Properties20
Required8
TaggingSupported
Primary IDStudioId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

AuthModeEngineSecurityGroupIdServiceRoleUserRoleVpcIdWorkspaceSecurityGroupIdTrustedIdentityPropagationEnabledIdcUserAssignmentIdcInstanceArnEncryptionKeyArn

External Links