Class CfnStudioSessionMapping

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-17T05:10:11.220Z") @Stability(Stable) public class CfnStudioSessionMapping extends CfnResource implements IInspectable
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();
 

See Also:
  • 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 software.constructs.Construct scope, @NotNull String id, @NotNull CfnStudioSessionMappingProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). 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.
    • setIdentityName

      @Stability(Stable) public void setIdentityName(@NotNull String value)
      The name of the user or group.
    • 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.
    • 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.
    • 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.