interface UrlReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lambda.UrlReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslambda#UrlReference |
Java | software.amazon.awscdk.interfaces.lambda.UrlReference |
Python | aws_cdk.interfaces.aws_lambda.UrlReference |
TypeScript | aws-cdk-lib » interfaces » aws_lambda » UrlReference |
A reference to a Url resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as interfaces_aws_lambda } from 'aws-cdk-lib/interfaces';
const urlReference: interfaces_aws_lambda.UrlReference = {
functionArn: 'functionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| function | string | The FunctionArn of the Url resource. |
functionArn
Type:
string
The FunctionArn of the Url resource.

.NET
Go
Java
Python
TypeScript