Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateStudioInput

import type { CreateStudioInput } from "https://aws-api.deno.dev/v0.3/services/emr.ts?docs=full";
interface CreateStudioInput {
AuthMode: AuthMode;
DefaultS3Location: string;
Description?: string | null;
EngineSecurityGroupId: string;
IdpAuthUrl?: string | null;
IdpRelayStateParameterName?: string | null;
Name: string;
ServiceRole: string;
SubnetIds: string[];
Tags?: Tag[] | null;
UserRole?: string | null;
VpcId: string;
WorkspaceSecurityGroupId: string;
}

§Properties

§
AuthMode: AuthMode
[src]

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

§
DefaultS3Location: string
[src]

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

§
Description?: string | null
[src]

A detailed description of the Amazon EMR Studio.

§
EngineSecurityGroupId: string
[src]

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 VpcId.

§
IdpAuthUrl?: string | null
[src]

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 | null
[src]

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
[src]

A descriptive name for the Amazon EMR Studio.

§
ServiceRole: string
[src]

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[]
[src]

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.

§
Tags?: Tag[] | null
[src]

A list of tags to associate with the Amazon EMR Studio. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.

§
UserRole?: string | null
[src]

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

§
VpcId: string
[src]

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

§
WorkspaceSecurityGroupId: string
[src]

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 VpcId.