StudioSessionMappingReference

class aws_cdk.aws_emr.StudioSessionMappingReference(*, identity_name, identity_type, studio_id)

Bases: object

A reference to a StudioSessionMapping resource.

Parameters:
  • identity_name (str) – The IdentityName of the StudioSessionMapping resource.

  • identity_type (str) – The IdentityType of the StudioSessionMapping resource.

  • studio_id (str) – The StudioId of the StudioSessionMapping resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_emr as emr

studio_session_mapping_reference = emr.StudioSessionMappingReference(
    identity_name="identityName",
    identity_type="identityType",
    studio_id="studioId"
)

Attributes

identity_name

The IdentityName of the StudioSessionMapping resource.

identity_type

The IdentityType of the StudioSessionMapping resource.

studio_id

The StudioId of the StudioSessionMapping resource.