GetFunctionUrlArgs constructor

const GetFunctionUrlArgs({
  1. required Input<String> functionName,
  2. Input<String?>? qualifier,
  3. Input<String?>? region,
})

Creates a new GetFunctionUrlArgs. functionName Name or ARN of the Lambda function. qualifier Alias name or $LATEST. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const GetFunctionUrlArgs({
  required this.functionName,
  this.qualifier,
  this.region,
});