Class CfnStudioSessionMapping

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:56.664Z") @Stability(Stable) public class CfnStudioSessionMapping extends CfnResource implements IInspectable
A CloudFormation AWS::EMR::StudioSessionMapping.

The AWS::EMR::StudioSessionMapping resource is an Amazon EMR resource type that maps a user or group to the Amazon EMR Studio specified by StudioId , and applies a session policy that defines Studio permissions for that user or group.

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.*;
 CfnStudioSessionMapping cfnStudioSessionMapping = CfnStudioSessionMapping.Builder.create(this, "MyCfnStudioSessionMapping")
         .identityName("identityName")
         .identityType("identityType")
         .sessionPolicyArn("sessionPolicyArn")
         .studioId("studioId")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnStudioSessionMapping

      protected CfnStudioSessionMapping(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnStudioSessionMapping

      protected CfnStudioSessionMapping(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnStudioSessionMapping

      @Stability(Stable) public CfnStudioSessionMapping(@NotNull Construct scope, @NotNull String id, @NotNull CfnStudioSessionMappingProps props)
      Create a new AWS::EMR::StudioSessionMapping.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getIdentityName

      @Stability(Stable) @NotNull public String getIdentityName()
      The name of the user or group.

      For more information, see UserName and DisplayName in the IAM Identity Center Identity Store API Reference .

    • setIdentityName

      @Stability(Stable) public void setIdentityName(@NotNull String value)
      The name of the user or group.

      For more information, see UserName and DisplayName in the IAM Identity Center Identity Store API Reference .

    • getIdentityType

      @Stability(Stable) @NotNull public String getIdentityType()
      Specifies whether the identity to map to the Amazon EMR Studio is a user or a group.
    • setIdentityType

      @Stability(Stable) public void setIdentityType(@NotNull String value)
      Specifies whether the identity to map to the Amazon EMR Studio is a user or a group.
    • getSessionPolicyArn

      @Stability(Stable) @NotNull public String getSessionPolicyArn()
      The Amazon Resource Name (ARN) for the session policy that will be applied to the user or group.

      Session policies refine Studio user permissions without the need to use multiple IAM user roles. For more information, see Create an EMR Studio user role with session policies in the Amazon EMR Management Guide .

    • setSessionPolicyArn

      @Stability(Stable) public void setSessionPolicyArn(@NotNull String value)
      The Amazon Resource Name (ARN) for the session policy that will be applied to the user or group.

      Session policies refine Studio user permissions without the need to use multiple IAM user roles. For more information, see Create an EMR Studio user role with session policies in the Amazon EMR Management Guide .

    • getStudioId

      @Stability(Stable) @NotNull public String getStudioId()
      The ID of the Amazon EMR Studio to which the user or group will be mapped.
    • setStudioId

      @Stability(Stable) public void setStudioId(@NotNull String value)
      The ID of the Amazon EMR Studio to which the user or group will be mapped.