interface ApplicationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EMRServerless.ApplicationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsemrserverless#ApplicationReference |
Java | software.amazon.awscdk.interfaces.emrserverless.ApplicationReference |
Python | aws_cdk.interfaces.aws_emrserverless.ApplicationReference |
TypeScript | aws-cdk-lib » interfaces » aws_emrserverless » ApplicationReference |
A reference to a Application resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emrserverless as interfaces_aws_emrserverless } from 'aws-cdk-lib/interfaces';
const applicationReference: interfaces_aws_emrserverless.ApplicationReference = {
applicationArn: 'applicationArn',
applicationId: 'applicationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ARN of the Application resource. |
| application | string | The ApplicationId of the Application resource. |
applicationArn
Type:
string
The ARN of the Application resource.
applicationId
Type:
string
The ApplicationId of the Application resource.

.NET
Go
Java
Python
TypeScript