interface FunctionConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.FunctionConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#FunctionConfigurationReference |
Java | software.amazon.awscdk.services.appsync.FunctionConfigurationReference |
Python | aws_cdk.aws_appsync.FunctionConfigurationReference |
TypeScript | aws-cdk-lib » aws_appsync » FunctionConfigurationReference |
A reference to a FunctionConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from 'aws-cdk-lib';
const functionConfigurationReference: appsync.FunctionConfigurationReference = {
functionArn: 'functionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | The FunctionArn of the FunctionConfiguration resource. |
functionArn
Type:
string
The FunctionArn of the FunctionConfiguration resource.

.NET
Go
Java
Python
TypeScript