GetAliasArgs constructor

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

Creates a new GetAliasArgs. functionName Name of the aliased Lambda function. name Name of the Lambda alias. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const GetAliasArgs({
  required this.functionName,
  required this.name,
  this.region,
});