interface StudioReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EMR.StudioReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsemr#StudioReference |
Java | software.amazon.awscdk.interfaces.emr.StudioReference |
Python | aws_cdk.interfaces.aws_emr.StudioReference |
TypeScript | aws-cdk-lib » interfaces » aws_emr » StudioReference |
A reference to a Studio 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 studioReference: interfaces_aws_emr.StudioReference = {
studioArn: 'studioArn',
studioId: 'studioId',
};
Properties
| Name | Type | Description |
|---|---|---|
| studio | string | The ARN of the Studio resource. |
| studio | string | The StudioId of the Studio resource. |
studioArn
Type:
string
The ARN of the Studio resource.
studioId
Type:
string
The StudioId of the Studio resource.

.NET
Go
Java
Python
TypeScript