GetAliasResult constructor

const GetAliasResult({
  1. String? arn,
  2. String? description,
  3. String? functionName,
  4. String? functionVersion,
  5. String? id,
  6. String? invokeArn,
  7. String? name,
  8. String? region,
})

Creates a new GetAliasResult. arn ARN identifying the Lambda function alias. description Description of the alias. functionName Optional. functionVersion Lambda function version which the alias uses. id The provider-assigned unique ID for this managed resource. invokeArn ARN to be used for invoking Lambda Function from API Gateway - to be used in aws.apigateway.Integration's uri. name Optional. region Optional.

Implementation

const GetAliasResult({
  this.arn,
  this.description,
  this.functionName,
  this.functionVersion,
  this.id,
  this.invokeArn,
  this.name,
  this.region,
});