Show / Hide Table of Contents

Class GetFunctionResult

Inheritance
System.Object
GetFunctionResult
Inherited Members
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 GetFunctionResult

Fields

View Source

Arn

Unqualified (no :QUALIFIER or :VERSION suffix) Amazon Resource Name (ARN) identifying your Lambda Function. See also qualified_arn.

Declaration
public readonly string Arn
Field Value
Type Description
System.String
View Source

DeadLetterConfig

Configure the function's dead letter queue.

Declaration
public readonly GetFunctionDeadLetterConfigResult DeadLetterConfig
Field Value
Type Description
GetFunctionDeadLetterConfigResult
View Source

Description

Description of what your Lambda Function does.

Declaration
public readonly string Description
Field Value
Type Description
System.String
View Source

Environment

The Lambda environment's configuration settings.

Declaration
public readonly GetFunctionEnvironmentResult Environment
Field Value
Type Description
GetFunctionEnvironmentResult
View Source

FunctionName

Declaration
public readonly string FunctionName
Field Value
Type Description
System.String
View Source

Handler

The function entrypoint in your code.

Declaration
public readonly string Handler
Field Value
Type Description
System.String
View Source

Id

The provider-assigned unique ID for this managed resource.

Declaration
public readonly string Id
Field Value
Type Description
System.String
View Source

InvokeArn

The ARN to be used for invoking Lambda Function from API Gateway.

Declaration
public readonly string InvokeArn
Field Value
Type Description
System.String
View Source

KmsKeyArn

The ARN for the KMS encryption key.

Declaration
public readonly string KmsKeyArn
Field Value
Type Description
System.String
View Source

LastModified

The date this resource was last modified.

Declaration
public readonly string LastModified
Field Value
Type Description
System.String
View Source

Layers

A list of Lambda Layer ARNs attached to your Lambda Function.

Declaration
public readonly ImmutableArray<string> Layers
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<System.String>
View Source

MemorySize

Amount of memory in MB your Lambda Function can use at runtime.

Declaration
public readonly int MemorySize
Field Value
Type Description
System.Int32
View Source

QualifiedArn

Qualified (:QUALIFIER or :VERSION suffix) Amazon Resource Name (ARN) identifying your Lambda Function. See also arn.

Declaration
public readonly string QualifiedArn
Field Value
Type Description
System.String
View Source

Qualifier

Declaration
public readonly string Qualifier
Field Value
Type Description
System.String
View Source

ReservedConcurrentExecutions

The amount of reserved concurrent executions for this lambda function or -1 if unreserved.

Declaration
public readonly int ReservedConcurrentExecutions
Field Value
Type Description
System.Int32
View Source

Role

IAM role attached to the Lambda Function.

Declaration
public readonly string Role
Field Value
Type Description
System.String
View Source

Runtime

The runtime environment for the Lambda function..

Declaration
public readonly string Runtime
Field Value
Type Description
System.String
View Source

SourceCodeHash

Base64-encoded representation of raw SHA-256 sum of the zip file.

Declaration
public readonly string SourceCodeHash
Field Value
Type Description
System.String
View Source

SourceCodeSize

The size in bytes of the function .zip file.

Declaration
public readonly int SourceCodeSize
Field Value
Type Description
System.Int32
View Source

Tags

Declaration
public readonly ImmutableDictionary<string, object> Tags
Field Value
Type Description
System.Collections.Immutable.ImmutableDictionary<System.String, System.Object>
View Source

Timeout

The function execution time at which Lambda should terminate the function.

Declaration
public readonly int Timeout
Field Value
Type Description
System.Int32
View Source

TracingConfig

Tracing settings of the function.

Declaration
public readonly GetFunctionTracingConfigResult TracingConfig
Field Value
Type Description
GetFunctionTracingConfigResult
View Source

Version

The version of the Lambda function.

Declaration
public readonly string Version
Field Value
Type Description
System.String
View Source

VpcConfig

VPC configuration associated with your Lambda function.

Declaration
public readonly GetFunctionVpcConfigResult VpcConfig
Field Value
Type Description
GetFunctionVpcConfigResult
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.