interface FunctionDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Greengrass.FunctionDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsgreengrass#FunctionDefinitionReference |
Java | software.amazon.awscdk.interfaces.greengrass.FunctionDefinitionReference |
Python | aws_cdk.interfaces.aws_greengrass.FunctionDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_greengrass » FunctionDefinitionReference |
A reference to a FunctionDefinition 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 functionDefinitionReference: interfaces_aws_greengrass.FunctionDefinitionReference = {
functionDefinitionArn: 'functionDefinitionArn',
functionDefinitionId: 'functionDefinitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | The ARN of the FunctionDefinition resource. |
| function | string | The Id of the FunctionDefinition resource. |
functionDefinitionArn
Type:
string
The ARN of the FunctionDefinition resource.
functionDefinitionId
Type:
string
The Id of the FunctionDefinition resource.

.NET
Go
Java
Python
TypeScript