interface DeviceDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Greengrass.DeviceDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgreengrass#DeviceDefinitionReference |
Java | software.amazon.awscdk.interfaces.greengrass.DeviceDefinitionReference |
Python | aws_cdk.interfaces.aws_greengrass.DeviceDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_greengrass » DeviceDefinitionReference |
A reference to a DeviceDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrass as interfaces_aws_greengrass } from 'aws-cdk-lib/interfaces';
const deviceDefinitionReference: interfaces_aws_greengrass.DeviceDefinitionReference = {
deviceDefinitionArn: 'deviceDefinitionArn',
deviceDefinitionId: 'deviceDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| device | string | The ARN of the DeviceDefinition resource. |
| device | string | The Id of the DeviceDefinition resource. |
deviceDefinitionArn
Type:
string
The ARN of the DeviceDefinition resource.
deviceDefinitionId
Type:
string
The Id of the DeviceDefinition resource.

.NET
Go
Java
Python
TypeScript