interface ApplicationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTFleetHub.ApplicationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotfleethub#ApplicationReference |
Java | software.amazon.awscdk.interfaces.iotfleethub.ApplicationReference |
Python | aws_cdk.interfaces.aws_iotfleethub.ApplicationReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotfleethub » 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_iotfleethub as interfaces_aws_iotfleethub } from 'aws-cdk-lib/interfaces';
const applicationReference: interfaces_aws_iotfleethub.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