aws logo
AWS Classic v5.41.0, May 15 23

aws.emr.Studio

Explore with Pulumi AI

Provides an Elastic MapReduce Studio.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.Emr.Studio("example", new()
    {
        AuthMode = "SSO",
        DefaultS3Location = $"s3://{aws_s3_bucket.Test.Bucket}/test",
        EngineSecurityGroupId = aws_security_group.Test.Id,
        ServiceRole = aws_iam_role.Test.Arn,
        SubnetIds = new[]
        {
            aws_subnet.Test.Id,
        },
        UserRole = aws_iam_role.Test.Arn,
        VpcId = aws_vpc.Test.Id,
        WorkspaceSecurityGroupId = aws_security_group.Test.Id,
    });

});
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/emr"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := emr.NewStudio(ctx, "example", &emr.StudioArgs{
			AuthMode:              pulumi.String("SSO"),
			DefaultS3Location:     pulumi.String(fmt.Sprintf("s3://%v/test", aws_s3_bucket.Test.Bucket)),
			EngineSecurityGroupId: pulumi.Any(aws_security_group.Test.Id),
			ServiceRole:           pulumi.Any(aws_iam_role.Test.Arn),
			SubnetIds: pulumi.StringArray{
				aws_subnet.Test.Id,
			},
			UserRole:                 pulumi.Any(aws_iam_role.Test.Arn),
			VpcId:                    pulumi.Any(aws_vpc.Test.Id),
			WorkspaceSecurityGroupId: pulumi.Any(aws_security_group.Test.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.emr.Studio;
import com.pulumi.aws.emr.StudioArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Studio("example", StudioArgs.builder()        
            .authMode("SSO")
            .defaultS3Location(String.format("s3://%s/test", aws_s3_bucket.test().bucket()))
            .engineSecurityGroupId(aws_security_group.test().id())
            .serviceRole(aws_iam_role.test().arn())
            .subnetIds(aws_subnet.test().id())
            .userRole(aws_iam_role.test().arn())
            .vpcId(aws_vpc.test().id())
            .workspaceSecurityGroupId(aws_security_group.test().id())
            .build());

    }
}
import pulumi
import pulumi_aws as aws

example = aws.emr.Studio("example",
    auth_mode="SSO",
    default_s3_location=f"s3://{aws_s3_bucket['test']['bucket']}/test",
    engine_security_group_id=aws_security_group["test"]["id"],
    service_role=aws_iam_role["test"]["arn"],
    subnet_ids=[aws_subnet["test"]["id"]],
    user_role=aws_iam_role["test"]["arn"],
    vpc_id=aws_vpc["test"]["id"],
    workspace_security_group_id=aws_security_group["test"]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.emr.Studio("example", {
    authMode: "SSO",
    defaultS3Location: `s3://${aws_s3_bucket.test.bucket}/test`,
    engineSecurityGroupId: aws_security_group.test.id,
    serviceRole: aws_iam_role.test.arn,
    subnetIds: [aws_subnet.test.id],
    userRole: aws_iam_role.test.arn,
    vpcId: aws_vpc.test.id,
    workspaceSecurityGroupId: aws_security_group.test.id,
});
resources:
  example:
    type: aws:emr:Studio
    properties:
      authMode: SSO
      defaultS3Location: s3://${aws_s3_bucket.test.bucket}/test
      engineSecurityGroupId: ${aws_security_group.test.id}
      serviceRole: ${aws_iam_role.test.arn}
      subnetIds:
        - ${aws_subnet.test.id}
      userRole: ${aws_iam_role.test.arn}
      vpcId: ${aws_vpc.test.id}
      workspaceSecurityGroupId: ${aws_security_group.test.id}

Create Studio Resource

new Studio(name: string, args: StudioArgs, opts?: CustomResourceOptions);
@overload
def Studio(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           auth_mode: Optional[str] = None,
           default_s3_location: Optional[str] = None,
           description: Optional[str] = None,
           engine_security_group_id: Optional[str] = None,
           idp_auth_url: Optional[str] = None,
           idp_relay_state_parameter_name: Optional[str] = None,
           name: Optional[str] = None,
           service_role: Optional[str] = None,
           subnet_ids: Optional[Sequence[str]] = None,
           tags: Optional[Mapping[str, str]] = None,
           user_role: Optional[str] = None,
           vpc_id: Optional[str] = None,
           workspace_security_group_id: Optional[str] = None)
@overload
def Studio(resource_name: str,
           args: StudioArgs,
           opts: Optional[ResourceOptions] = None)
func NewStudio(ctx *Context, name string, args StudioArgs, opts ...ResourceOption) (*Studio, error)
public Studio(string name, StudioArgs args, CustomResourceOptions? opts = null)
public Studio(String name, StudioArgs args)
public Studio(String name, StudioArgs args, CustomResourceOptions options)
type: aws:emr:Studio
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args StudioArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args StudioArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args StudioArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args StudioArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args StudioArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Studio Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Studio resource accepts the following input properties:

AuthMode string

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

DefaultS3Location string

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

EngineSecurityGroupId string

The 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 vpc_id.

ServiceRole string

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

SubnetIds List<string>

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

VpcId string

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

WorkspaceSecurityGroupId string

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

Description string

A detailed description of the Amazon EMR Studio.

IdpAuthUrl string

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

IdpRelayStateParameterName string

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

Name string

A descriptive name for the Amazon EMR Studio.

Tags Dictionary<string, string>

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

UserRole string

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

AuthMode string

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

DefaultS3Location string

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

EngineSecurityGroupId string

The 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 vpc_id.

ServiceRole string

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

SubnetIds []string

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

VpcId string

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

WorkspaceSecurityGroupId string

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

Description string

A detailed description of the Amazon EMR Studio.

IdpAuthUrl string

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

IdpRelayStateParameterName string

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

Name string

A descriptive name for the Amazon EMR Studio.

Tags map[string]string

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

UserRole string

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

authMode String

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

defaultS3Location String

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

engineSecurityGroupId String

The 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 vpc_id.

serviceRole String

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnetIds List<String>

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

vpcId String

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspaceSecurityGroupId String

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

description String

A detailed description of the Amazon EMR Studio.

idpAuthUrl String

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idpRelayStateParameterName String

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name String

A descriptive name for the Amazon EMR Studio.

tags Map<String,String>

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

userRole String

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

authMode string

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

defaultS3Location string

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

engineSecurityGroupId string

The 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 vpc_id.

serviceRole string

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnetIds string[]

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

vpcId string

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspaceSecurityGroupId string

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

description string

A detailed description of the Amazon EMR Studio.

idpAuthUrl string

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idpRelayStateParameterName string

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name string

A descriptive name for the Amazon EMR Studio.

tags {[key: string]: string}

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

userRole string

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

auth_mode str

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

default_s3_location str

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

engine_security_group_id str

The 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 vpc_id.

service_role str

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnet_ids Sequence[str]

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

vpc_id str

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspace_security_group_id str

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

description str

A detailed description of the Amazon EMR Studio.

idp_auth_url str

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idp_relay_state_parameter_name str

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name str

A descriptive name for the Amazon EMR Studio.

tags Mapping[str, str]

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

user_role str

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

authMode String

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

defaultS3Location String

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

engineSecurityGroupId String

The 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 vpc_id.

serviceRole String

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnetIds List<String>

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

vpcId String

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspaceSecurityGroupId String

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

description String

A detailed description of the Amazon EMR Studio.

idpAuthUrl String

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idpRelayStateParameterName String

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name String

A descriptive name for the Amazon EMR Studio.

tags Map<String>

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

userRole String

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

Outputs

All input properties are implicitly available as output properties. Additionally, the Studio resource produces the following output properties:

Arn string

ARN of the studio.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll Dictionary<string, string>
Url string

The unique access URL of the Amazon EMR Studio.

Arn string

ARN of the studio.

Id string

The provider-assigned unique ID for this managed resource.

TagsAll map[string]string
Url string

The unique access URL of the Amazon EMR Studio.

arn String

ARN of the studio.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String,String>
url String

The unique access URL of the Amazon EMR Studio.

arn string

ARN of the studio.

id string

The provider-assigned unique ID for this managed resource.

tagsAll {[key: string]: string}
url string

The unique access URL of the Amazon EMR Studio.

arn str

ARN of the studio.

id str

The provider-assigned unique ID for this managed resource.

tags_all Mapping[str, str]
url str

The unique access URL of the Amazon EMR Studio.

arn String

ARN of the studio.

id String

The provider-assigned unique ID for this managed resource.

tagsAll Map<String>
url String

The unique access URL of the Amazon EMR Studio.

Look up Existing Studio Resource

Get an existing Studio resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: StudioState, opts?: CustomResourceOptions): Studio
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        auth_mode: Optional[str] = None,
        default_s3_location: Optional[str] = None,
        description: Optional[str] = None,
        engine_security_group_id: Optional[str] = None,
        idp_auth_url: Optional[str] = None,
        idp_relay_state_parameter_name: Optional[str] = None,
        name: Optional[str] = None,
        service_role: Optional[str] = None,
        subnet_ids: Optional[Sequence[str]] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        url: Optional[str] = None,
        user_role: Optional[str] = None,
        vpc_id: Optional[str] = None,
        workspace_security_group_id: Optional[str] = None) -> Studio
func GetStudio(ctx *Context, name string, id IDInput, state *StudioState, opts ...ResourceOption) (*Studio, error)
public static Studio Get(string name, Input<string> id, StudioState? state, CustomResourceOptions? opts = null)
public static Studio get(String name, Output<String> id, StudioState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string

ARN of the studio.

AuthMode string

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

DefaultS3Location string

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

Description string

A detailed description of the Amazon EMR Studio.

EngineSecurityGroupId string

The 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 vpc_id.

IdpAuthUrl string

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

IdpRelayStateParameterName string

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

Name string

A descriptive name for the Amazon EMR Studio.

ServiceRole string

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

SubnetIds List<string>

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

Tags Dictionary<string, string>

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll Dictionary<string, string>
Url string

The unique access URL of the Amazon EMR Studio.

UserRole string

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

VpcId string

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

WorkspaceSecurityGroupId string

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

Arn string

ARN of the studio.

AuthMode string

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

DefaultS3Location string

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

Description string

A detailed description of the Amazon EMR Studio.

EngineSecurityGroupId string

The 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 vpc_id.

IdpAuthUrl string

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

IdpRelayStateParameterName string

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

Name string

A descriptive name for the Amazon EMR Studio.

ServiceRole string

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

SubnetIds []string

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

Tags map[string]string

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

TagsAll map[string]string
Url string

The unique access URL of the Amazon EMR Studio.

UserRole string

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

VpcId string

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

WorkspaceSecurityGroupId string

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

arn String

ARN of the studio.

authMode String

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

defaultS3Location String

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

description String

A detailed description of the Amazon EMR Studio.

engineSecurityGroupId String

The 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 vpc_id.

idpAuthUrl String

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idpRelayStateParameterName String

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name String

A descriptive name for the Amazon EMR Studio.

serviceRole String

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnetIds List<String>

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

tags Map<String,String>

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String,String>
url String

The unique access URL of the Amazon EMR Studio.

userRole String

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

vpcId String

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspaceSecurityGroupId String

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

arn string

ARN of the studio.

authMode string

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

defaultS3Location string

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

description string

A detailed description of the Amazon EMR Studio.

engineSecurityGroupId string

The 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 vpc_id.

idpAuthUrl string

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idpRelayStateParameterName string

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name string

A descriptive name for the Amazon EMR Studio.

serviceRole string

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnetIds string[]

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

tags {[key: string]: string}

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll {[key: string]: string}
url string

The unique access URL of the Amazon EMR Studio.

userRole string

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

vpcId string

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspaceSecurityGroupId string

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

arn str

ARN of the studio.

auth_mode str

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

default_s3_location str

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

description str

A detailed description of the Amazon EMR Studio.

engine_security_group_id str

The 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 vpc_id.

idp_auth_url str

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idp_relay_state_parameter_name str

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name str

A descriptive name for the Amazon EMR Studio.

service_role str

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnet_ids Sequence[str]

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

tags Mapping[str, str]

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tags_all Mapping[str, str]
url str

The unique access URL of the Amazon EMR Studio.

user_role str

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

vpc_id str

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspace_security_group_id str

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

arn String

ARN of the studio.

authMode String

Specifies whether the Studio authenticates users using IAM or Amazon Web Services SSO. Valid values are SSO or IAM.

defaultS3Location String

The Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

description String

A detailed description of the Amazon EMR Studio.

engineSecurityGroupId String

The 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 vpc_id.

idpAuthUrl String

The authentication endpoint of your identity provider (IdP). Specify this value when you use IAM authentication and want to let federated users log in to a Studio with the Studio URL and credentials from your IdP. Amazon EMR Studio redirects users to this endpoint to enter credentials.

idpRelayStateParameterName String

The name that your identity provider (IdP) uses for its RelayState parameter. For example, RelayState or TargetSource. Specify this value when you use IAM authentication and want to let federated users log in to a Studio using the Studio URL. The RelayState parameter differs by IdP.

name String

A descriptive name for the Amazon EMR Studio.

serviceRole String

The IAM role that the Amazon EMR Studio assumes. The service role provides a way for Amazon EMR Studio to interoperate with other Amazon Web Services services.

subnetIds List<String>

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 vpc_id. Studio users can create a Workspace in any of the specified subnets.

tags Map<String>

list of tags to apply to the EMR Cluster. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

tagsAll Map<String>
url String

The unique access URL of the Amazon EMR Studio.

userRole String

The IAM user role that users and groups assume when logged in to an Amazon EMR Studio. Only specify a User Role when you use Amazon Web Services SSO authentication. The permissions attached to the User Role can be scoped down for each user or group using session policies.

vpcId String

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

workspaceSecurityGroupId String

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by vpc_id.

Import

EMR studios can be imported using the id, e.g.,

 $ pulumi import aws:emr/studio:Studio studio es-123456ABCDEF

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes

This Pulumi package is based on the aws Terraform Provider.