interface StudioSessionMappingReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EMR.StudioSessionMappingReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsemr#StudioSessionMappingReference |
Java | software.amazon.awscdk.interfaces.emr.StudioSessionMappingReference |
Python | aws_cdk.interfaces.aws_emr.StudioSessionMappingReference |
TypeScript | aws-cdk-lib » interfaces » aws_emr » StudioSessionMappingReference |
A reference to a StudioSessionMapping resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as interfaces_aws_emr } from 'aws-cdk-lib/interfaces';
const studioSessionMappingReference: interfaces_aws_emr.StudioSessionMappingReference = {
identityName: 'identityName',
identityType: 'identityType',
studioId: 'studioId',
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | string | The IdentityName of the StudioSessionMapping resource. |
| identity | string | The IdentityType of the StudioSessionMapping resource. |
| studio | string | The StudioId of the StudioSessionMapping resource. |
identityName
Type:
string
The IdentityName of the StudioSessionMapping resource.
identityType
Type:
string
The IdentityType of the StudioSessionMapping resource.
studioId
Type:
string
The StudioId of the StudioSessionMapping resource.

.NET
Go
Java
Python
TypeScript