Interface CfnStudioProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStudioProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:30.045Z") @Stability(Stable) public interface CfnStudioProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnStudio.

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")
         .encryptionKeyArn("encryptionKeyArn")
         .idcInstanceArn("idcInstanceArn")
         .idcUserAssignment("idcUserAssignment")
         .idpAuthUrl("idpAuthUrl")
         .idpRelayStateParameterName("idpRelayStateParameterName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .trustedIdentityPropagationEnabled(false)
         .userRole("userRole")
         .build();
 

See Also: