AWS::EMR::StudioThe `AWS::EMR::Studio` resource specifies an Amazon EMR Studio. An EMR Studio is a web-based, integrated development environment for fully managed Jupyter notebooks that run on Amazon EMR clusters. For more information, see the [*Amazon EMR Management Guide*](https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-studio.html) .
import { CfnStudio } from 'aws-cdk-lib/aws-emr';Or use the module namespace:
import * as emr from 'aws-cdk-lib/aws-emr';
// emr.CfnStudioConfiguration passed to the constructor as CfnStudioProps.
authModeRequiredstringSpecifies whether the Studio authenticates users using SSO or IAM.
defaultS3LocationRequiredstring | IBucketRefThe Amazon S3 location to back up EMR Studio Workspaces and notebook files.
engineSecurityGroupIdRequiredstring | ISecurityGroupRefThe ID of the Amazon EMR Studio Engine security group. The Engine security group allows inbound network traffic from the Workspace security group, and it must be in the same VPC specified by `VpcId` .
nameRequiredstringA descriptive name for the Amazon EMR Studio.
serviceRoleRequiredstring | IRoleRefThe Amazon Resource Name (ARN) of the IAM role that will be assumed by the Amazon EMR Studio. The service role provides a way for Amazon EMR Studio to interoperate with other AWS services.
subnetIdsRequiredstring | ISubnetRef[]A list of subnet IDs to associate with the Amazon EMR Studio. A Studio can have a maximum of 5 subnets. The subnets must belong to the VPC specified by `VpcId` . Studio users can create a Workspace in any of the specified subnets.
vpcIdRequiredstring | IVPCRefThe ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.
workspaceSecurityGroupIdRequiredstring | ISecurityGroupRefThe ID of the Workspace security group associated with the Amazon EMR Studio. The Workspace security group allows outbound network traffic to resources in the Engine security group and to the internet.
descriptionOptionalstringA detailed description of the Amazon EMR Studio.
encryptionKeyArnOptionalstring | IKeyRefThe AWS key identifier (ARN) used to encrypt Amazon EMR Studio workspace and notebook files when backed up to Amazon S3.
idcInstanceArnOptionalstringThe ARN of the IAM Identity Center instance the Studio application belongs to.
idcUserAssignmentOptionalstringIndicates whether the Studio has `REQUIRED` or `OPTIONAL` IAM Identity Center user assignment. If the value is set to `REQUIRED` , users must be explicitly assigned to the Studio application to access the Studio.
idpAuthUrlOptionalstringYour identity provider's authentication endpoint. Amazon EMR Studio redirects federated users to this endpoint for authentication when logging in to a Studio with the Studio URL.
idpRelayStateParameterNameOptionalstringThe name of your identity provider's `RelayState` parameter.
tagsOptionalCfnTag[]An array of key-value pairs to apply to this resource. For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) .
trustedIdentityPropagationEnabledOptionalboolean | IResolvableIndicates whether the Studio has Trusted identity propagation enabled. The default value is `false` .
userRoleOptionalstring | IRoleRefThe Amazon Resource Name (ARN) of the IAM user role that will be assumed by users and groups logged in to a Studio. The permissions attached to this IAM role can be scoped down for each user or group using session policies. You only need to specify `UserRole` when you set `AuthMode` to `SSO` .
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-emrAWS::EMR::Studio