Show / Hide Table of Contents

Class AliasState

Inheritance
System.Object
InputArgs
ResourceArgs
AliasState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Lambda
Assembly: Pulumi.Aws.dll
Syntax
public sealed class AliasState : ResourceArgs

Constructors

View Source

AliasState()

Declaration
public AliasState()

Properties

View Source

Arn

The Amazon Resource Name (ARN) identifying your Lambda function alias.

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

Description of the alias.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FunctionName

The function ARN of the Lambda function for which you want to create an alias.

Declaration
public Input<string> FunctionName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FunctionVersion

Lambda function version for which you are creating the alias. Pattern: (\$LATEST|[0-9]+).

Declaration
public Input<string> FunctionVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

InvokeArn

The ARN to be used for invoking Lambda Function from API Gateway - to be used in aws.apigateway.Integration's uri

Declaration
public Input<string> InvokeArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Name for the alias you are creating. Pattern: (?!^[0-9]+$)([a-zA-Z0-9-_]+)

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RoutingConfig

The Lambda alias' route configuration settings. Fields documented below

Declaration
public Input<AliasRoutingConfigGetArgs> RoutingConfig { get; set; }
Property Value
Type Description
Input<AliasRoutingConfigGetArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.