@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.237Z") @Stability(value=Stable) public interface CfnStudioProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.emr.*;
CfnStudioProps cfnStudioProps = CfnStudioProps.builder()
.authMode("authMode")
.defaultS3Location("defaultS3Location")
.engineSecurityGroupId("engineSecurityGroupId")
.name("name")
.serviceRole("serviceRole")
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
.workspaceSecurityGroupId("workspaceSecurityGroupId")
// the properties below are optional
.description("description")
.idpAuthUrl("idpAuthUrl")
.idpRelayStateParameterName("idpRelayStateParameterName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userRole("userRole")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStudioProps.Builder
A builder for
CfnStudioProps |
static class |
CfnStudioProps.Jsii$Proxy
An implementation for
CfnStudioProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStudioProps.Builder |
builder() |
String |
getAuthMode()
Specifies whether the Studio authenticates users using AWS SSO or IAM.
|
String |
getDefaultS3Location()
The Amazon S3 location to back up EMR Studio Workspaces and notebook files.
|
default String |
getDescription()
A detailed description of the Amazon EMR Studio.
|
String |
getEngineSecurityGroupId()
The ID of the Amazon EMR Studio Engine security group.
|
default String |
getIdpAuthUrl()
Your identity provider's authentication endpoint.
|
default String |
getIdpRelayStateParameterName()
The name of your identity provider's `RelayState` parameter.
|
String |
getName()
A descriptive name for the Amazon EMR Studio.
|
String |
getServiceRole()
The Amazon Resource Name (ARN) of the IAM role that will be assumed by the Amazon EMR Studio.
|
List<String> |
getSubnetIds()
A list of subnet IDs to associate with the Amazon EMR Studio.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
default String |
getUserRole()
The Amazon Resource Name (ARN) of the IAM user role that will be assumed by users and groups logged in to a Studio.
|
String |
getVpcId()
The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.
|
String |
getWorkspaceSecurityGroupId()
The ID of the Workspace security group associated with the Amazon EMR Studio.
|
@Stability(value=Stable) @NotNull String getAuthMode()
@Stability(value=Stable) @NotNull String getDefaultS3Location()
@Stability(value=Stable) @NotNull String getEngineSecurityGroupId()
The Engine security group allows inbound network traffic from the Workspace security group, and it must be in the same VPC specified by VpcId .
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getServiceRole()
The service role provides a way for Amazon EMR Studio to interoperate with other AWS services.
@Stability(value=Stable) @NotNull List<String> getSubnetIds()
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.
@Stability(value=Stable) @NotNull String getVpcId()
@Stability(value=Stable) @NotNull String getWorkspaceSecurityGroupId()
The Workspace security group allows outbound network traffic to resources in the Engine security group and to the internet.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default String getIdpAuthUrl()
Amazon EMR Studio redirects federated users to this endpoint for authentication when logging in to a Studio with the Studio URL.
@Stability(value=Stable) @Nullable default String getIdpRelayStateParameterName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) @Nullable default String getUserRole()
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 .
@Stability(value=Stable) static CfnStudioProps.Builder builder()
CfnStudioProps.Builder of CfnStudioPropsCopyright © 2022. All rights reserved.