import "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/aws_lambda/v3"
aws_lambda.pb.go aws_lambda.pb.validate.go
var ( Config_InvocationMode_name = map[int32]string{ 0: "SYNCHRONOUS", 1: "ASYNCHRONOUS", } Config_InvocationMode_value = map[string]int32{ "SYNCHRONOUS": 0, "ASYNCHRONOUS": 1, } )
Enum value maps for Config_InvocationMode.
var File_envoy_extensions_filters_http_aws_lambda_v3_aws_lambda_proto protoreflect.FileDescriptor
type Config struct { // The ARN of the AWS Lambda to invoke when the filter is engaged // Must be in the following format: // arn:<partition>:lambda:<region>:<account-number>:function:<function-name> Arn string `protobuf:"bytes,1,opt,name=arn,proto3" json:"arn,omitempty"` // Whether to transform the request (headers and body) to a JSON payload or pass it as is. PayloadPassthrough bool `protobuf:"varint,2,opt,name=payload_passthrough,json=payloadPassthrough,proto3" json:"payload_passthrough,omitempty"` // Determines the way to invoke the Lambda function. InvocationMode Config_InvocationMode `protobuf:"varint,3,opt,name=invocation_mode,json=invocationMode,proto3,enum=envoy.extensions.filters.http.aws_lambda.v3.Config_InvocationMode" json:"invocation_mode,omitempty"` // contains filtered or unexported fields }
AWS Lambda filter config
Deprecated: Use Config.ProtoReflect.Descriptor instead.
func (x *Config) GetInvocationMode() Config_InvocationMode
func (x *Config) ProtoReflect() protoreflect.Message
Validate checks the field values on Config with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type ConfigValidationError struct {
// contains filtered or unexported fields
}
ConfigValidationError is the validation error returned by Config.Validate if the designated constraints aren't met.
func (e ConfigValidationError) Cause() error
Cause function returns cause value.
func (e ConfigValidationError) Error() string
Error satisfies the builtin error interface
func (e ConfigValidationError) ErrorName() string
ErrorName returns error name.
func (e ConfigValidationError) Field() string
Field function returns field value.
func (e ConfigValidationError) Key() bool
Key function returns key value.
func (e ConfigValidationError) Reason() string
Reason function returns reason value.
const ( // This is the more common mode of invocation, in which Lambda responds after it has completed the function. In // this mode the output of the Lambda function becomes the response of the HTTP request. Config_SYNCHRONOUS Config_InvocationMode = 0 // In this mode Lambda responds immediately but continues to process the function asynchronously. This mode can be // used to signal events for example. In this mode, Lambda responds with an acknowledgment that it received the // call which is translated to an HTTP 200 OK by the filter. Config_ASYNCHRONOUS Config_InvocationMode = 1 )
func (Config_InvocationMode) Descriptor() protoreflect.EnumDescriptor
func (x Config_InvocationMode) Enum() *Config_InvocationMode
func (Config_InvocationMode) EnumDescriptor() ([]byte, []int)
Deprecated: Use Config_InvocationMode.Descriptor instead.
func (x Config_InvocationMode) Number() protoreflect.EnumNumber
func (x Config_InvocationMode) String() string
func (Config_InvocationMode) Type() protoreflect.EnumType
type PerRouteConfig struct { InvokeConfig *Config `protobuf:"bytes,1,opt,name=invoke_config,json=invokeConfig,proto3" json:"invoke_config,omitempty"` // contains filtered or unexported fields }
Per-route configuration for AWS Lambda. This can be useful when invoking a different Lambda function or a different version of the same Lambda depending on the route.
func (*PerRouteConfig) Descriptor() ([]byte, []int)
Deprecated: Use PerRouteConfig.ProtoReflect.Descriptor instead.
func (x *PerRouteConfig) GetInvokeConfig() *Config
func (*PerRouteConfig) ProtoMessage()
func (x *PerRouteConfig) ProtoReflect() protoreflect.Message
func (x *PerRouteConfig) Reset()
func (x *PerRouteConfig) String() string
func (m *PerRouteConfig) Validate() error
Validate checks the field values on PerRouteConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type PerRouteConfigValidationError struct {
// contains filtered or unexported fields
}
PerRouteConfigValidationError is the validation error returned by PerRouteConfig.Validate if the designated constraints aren't met.
func (e PerRouteConfigValidationError) Cause() error
Cause function returns cause value.
func (e PerRouteConfigValidationError) Error() string
Error satisfies the builtin error interface
func (e PerRouteConfigValidationError) ErrorName() string
ErrorName returns error name.
func (e PerRouteConfigValidationError) Field() string
Field function returns field value.
func (e PerRouteConfigValidationError) Key() bool
Key function returns key value.
func (e PerRouteConfigValidationError) Reason() string
Reason function returns reason value.
Package envoy_extensions_filters_http_aws_lambda_v3 imports 18 packages (graph) and is imported by 6 packages. Updated 2021-01-08. Refresh now. Tools for package owners.