aws.lambda.FunctionEventInvokeConfig
Explore with Pulumi AI
Manages an asynchronous invocation configuration for a Lambda Function or Alias. More information about asynchronous invocations and the configurable values can be found in the Lambda Developer Guide.
Example Usage
Destination Configuration
NOTE: Ensure the Lambda Function IAM Role has necessary permissions for the destination, such as
sqs:SendMessage
orsns:Publish
, otherwise the API will return a genericInvalidParameterValueException: The destination ARN arn:PARTITION:SERVICE:REGION:ACCOUNT:RESOURCE is invalid.
error.
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lambda.FunctionEventInvokeConfig("example", {
functionName: exampleAwsLambdaAlias.functionName,
destinationConfig: {
onFailure: {
destination: exampleAwsSqsQueue.arn,
},
onSuccess: {
destination: exampleAwsSnsTopic.arn,
},
},
});
import pulumi
import pulumi_aws as aws
example = aws.lambda_.FunctionEventInvokeConfig("example",
function_name=example_aws_lambda_alias["functionName"],
destination_config={
"on_failure": {
"destination": example_aws_sqs_queue["arn"],
},
"on_success": {
"destination": example_aws_sns_topic["arn"],
},
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lambda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lambda.NewFunctionEventInvokeConfig(ctx, "example", &lambda.FunctionEventInvokeConfigArgs{
FunctionName: pulumi.Any(exampleAwsLambdaAlias.FunctionName),
DestinationConfig: &lambda.FunctionEventInvokeConfigDestinationConfigArgs{
OnFailure: &lambda.FunctionEventInvokeConfigDestinationConfigOnFailureArgs{
Destination: pulumi.Any(exampleAwsSqsQueue.Arn),
},
OnSuccess: &lambda.FunctionEventInvokeConfigDestinationConfigOnSuccessArgs{
Destination: pulumi.Any(exampleAwsSnsTopic.Arn),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Lambda.FunctionEventInvokeConfig("example", new()
{
FunctionName = exampleAwsLambdaAlias.FunctionName,
DestinationConfig = new Aws.Lambda.Inputs.FunctionEventInvokeConfigDestinationConfigArgs
{
OnFailure = new Aws.Lambda.Inputs.FunctionEventInvokeConfigDestinationConfigOnFailureArgs
{
Destination = exampleAwsSqsQueue.Arn,
},
OnSuccess = new Aws.Lambda.Inputs.FunctionEventInvokeConfigDestinationConfigOnSuccessArgs
{
Destination = exampleAwsSnsTopic.Arn,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lambda.FunctionEventInvokeConfig;
import com.pulumi.aws.lambda.FunctionEventInvokeConfigArgs;
import com.pulumi.aws.lambda.inputs.FunctionEventInvokeConfigDestinationConfigArgs;
import com.pulumi.aws.lambda.inputs.FunctionEventInvokeConfigDestinationConfigOnFailureArgs;
import com.pulumi.aws.lambda.inputs.FunctionEventInvokeConfigDestinationConfigOnSuccessArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new FunctionEventInvokeConfig("example", FunctionEventInvokeConfigArgs.builder()
.functionName(exampleAwsLambdaAlias.functionName())
.destinationConfig(FunctionEventInvokeConfigDestinationConfigArgs.builder()
.onFailure(FunctionEventInvokeConfigDestinationConfigOnFailureArgs.builder()
.destination(exampleAwsSqsQueue.arn())
.build())
.onSuccess(FunctionEventInvokeConfigDestinationConfigOnSuccessArgs.builder()
.destination(exampleAwsSnsTopic.arn())
.build())
.build())
.build());
}
}
resources:
example:
type: aws:lambda:FunctionEventInvokeConfig
properties:
functionName: ${exampleAwsLambdaAlias.functionName}
destinationConfig:
onFailure:
destination: ${exampleAwsSqsQueue.arn}
onSuccess:
destination: ${exampleAwsSnsTopic.arn}
Error Handling Configuration
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lambda.FunctionEventInvokeConfig("example", {
functionName: exampleAwsLambdaAlias.functionName,
maximumEventAgeInSeconds: 60,
maximumRetryAttempts: 0,
});
import pulumi
import pulumi_aws as aws
example = aws.lambda_.FunctionEventInvokeConfig("example",
function_name=example_aws_lambda_alias["functionName"],
maximum_event_age_in_seconds=60,
maximum_retry_attempts=0)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lambda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lambda.NewFunctionEventInvokeConfig(ctx, "example", &lambda.FunctionEventInvokeConfigArgs{
FunctionName: pulumi.Any(exampleAwsLambdaAlias.FunctionName),
MaximumEventAgeInSeconds: pulumi.Int(60),
MaximumRetryAttempts: pulumi.Int(0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Lambda.FunctionEventInvokeConfig("example", new()
{
FunctionName = exampleAwsLambdaAlias.FunctionName,
MaximumEventAgeInSeconds = 60,
MaximumRetryAttempts = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lambda.FunctionEventInvokeConfig;
import com.pulumi.aws.lambda.FunctionEventInvokeConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new FunctionEventInvokeConfig("example", FunctionEventInvokeConfigArgs.builder()
.functionName(exampleAwsLambdaAlias.functionName())
.maximumEventAgeInSeconds(60)
.maximumRetryAttempts(0)
.build());
}
}
resources:
example:
type: aws:lambda:FunctionEventInvokeConfig
properties:
functionName: ${exampleAwsLambdaAlias.functionName}
maximumEventAgeInSeconds: 60
maximumRetryAttempts: 0
Configuration for Alias Name
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lambda.FunctionEventInvokeConfig("example", {
functionName: exampleAwsLambdaAlias.functionName,
qualifier: exampleAwsLambdaAlias.name,
});
import pulumi
import pulumi_aws as aws
example = aws.lambda_.FunctionEventInvokeConfig("example",
function_name=example_aws_lambda_alias["functionName"],
qualifier=example_aws_lambda_alias["name"])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lambda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lambda.NewFunctionEventInvokeConfig(ctx, "example", &lambda.FunctionEventInvokeConfigArgs{
FunctionName: pulumi.Any(exampleAwsLambdaAlias.FunctionName),
Qualifier: pulumi.Any(exampleAwsLambdaAlias.Name),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Lambda.FunctionEventInvokeConfig("example", new()
{
FunctionName = exampleAwsLambdaAlias.FunctionName,
Qualifier = exampleAwsLambdaAlias.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lambda.FunctionEventInvokeConfig;
import com.pulumi.aws.lambda.FunctionEventInvokeConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new FunctionEventInvokeConfig("example", FunctionEventInvokeConfigArgs.builder()
.functionName(exampleAwsLambdaAlias.functionName())
.qualifier(exampleAwsLambdaAlias.name())
.build());
}
}
resources:
example:
type: aws:lambda:FunctionEventInvokeConfig
properties:
functionName: ${exampleAwsLambdaAlias.functionName}
qualifier: ${exampleAwsLambdaAlias.name}
Configuration for Function Latest Unpublished Version
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lambda.FunctionEventInvokeConfig("example", {
functionName: exampleAwsLambdaFunction.functionName,
qualifier: "$LATEST",
});
import pulumi
import pulumi_aws as aws
example = aws.lambda_.FunctionEventInvokeConfig("example",
function_name=example_aws_lambda_function["functionName"],
qualifier="$LATEST")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lambda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lambda.NewFunctionEventInvokeConfig(ctx, "example", &lambda.FunctionEventInvokeConfigArgs{
FunctionName: pulumi.Any(exampleAwsLambdaFunction.FunctionName),
Qualifier: pulumi.String("$LATEST"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Lambda.FunctionEventInvokeConfig("example", new()
{
FunctionName = exampleAwsLambdaFunction.FunctionName,
Qualifier = "$LATEST",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lambda.FunctionEventInvokeConfig;
import com.pulumi.aws.lambda.FunctionEventInvokeConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new FunctionEventInvokeConfig("example", FunctionEventInvokeConfigArgs.builder()
.functionName(exampleAwsLambdaFunction.functionName())
.qualifier("$LATEST")
.build());
}
}
resources:
example:
type: aws:lambda:FunctionEventInvokeConfig
properties:
functionName: ${exampleAwsLambdaFunction.functionName}
qualifier: $LATEST
Configuration for Function Published Version
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.lambda.FunctionEventInvokeConfig("example", {
functionName: exampleAwsLambdaFunction.functionName,
qualifier: exampleAwsLambdaFunction.version,
});
import pulumi
import pulumi_aws as aws
example = aws.lambda_.FunctionEventInvokeConfig("example",
function_name=example_aws_lambda_function["functionName"],
qualifier=example_aws_lambda_function["version"])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/lambda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lambda.NewFunctionEventInvokeConfig(ctx, "example", &lambda.FunctionEventInvokeConfigArgs{
FunctionName: pulumi.Any(exampleAwsLambdaFunction.FunctionName),
Qualifier: pulumi.Any(exampleAwsLambdaFunction.Version),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Lambda.FunctionEventInvokeConfig("example", new()
{
FunctionName = exampleAwsLambdaFunction.FunctionName,
Qualifier = exampleAwsLambdaFunction.Version,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.lambda.FunctionEventInvokeConfig;
import com.pulumi.aws.lambda.FunctionEventInvokeConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new FunctionEventInvokeConfig("example", FunctionEventInvokeConfigArgs.builder()
.functionName(exampleAwsLambdaFunction.functionName())
.qualifier(exampleAwsLambdaFunction.version())
.build());
}
}
resources:
example:
type: aws:lambda:FunctionEventInvokeConfig
properties:
functionName: ${exampleAwsLambdaFunction.functionName}
qualifier: ${exampleAwsLambdaFunction.version}
Create FunctionEventInvokeConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FunctionEventInvokeConfig(name: string, args: FunctionEventInvokeConfigArgs, opts?: CustomResourceOptions);
@overload
def FunctionEventInvokeConfig(resource_name: str,
args: FunctionEventInvokeConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FunctionEventInvokeConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
function_name: Optional[str] = None,
destination_config: Optional[_lambda_.FunctionEventInvokeConfigDestinationConfigArgs] = None,
maximum_event_age_in_seconds: Optional[int] = None,
maximum_retry_attempts: Optional[int] = None,
qualifier: Optional[str] = None)
func NewFunctionEventInvokeConfig(ctx *Context, name string, args FunctionEventInvokeConfigArgs, opts ...ResourceOption) (*FunctionEventInvokeConfig, error)
public FunctionEventInvokeConfig(string name, FunctionEventInvokeConfigArgs args, CustomResourceOptions? opts = null)
public FunctionEventInvokeConfig(String name, FunctionEventInvokeConfigArgs args)
public FunctionEventInvokeConfig(String name, FunctionEventInvokeConfigArgs args, CustomResourceOptions options)
type: aws:lambda:FunctionEventInvokeConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FunctionEventInvokeConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FunctionEventInvokeConfigArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FunctionEventInvokeConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionEventInvokeConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FunctionEventInvokeConfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var functionEventInvokeConfigResource = new Aws.Lambda.FunctionEventInvokeConfig("functionEventInvokeConfigResource", new()
{
FunctionName = "string",
DestinationConfig = new Aws.Lambda.Inputs.FunctionEventInvokeConfigDestinationConfigArgs
{
OnFailure = new Aws.Lambda.Inputs.FunctionEventInvokeConfigDestinationConfigOnFailureArgs
{
Destination = "string",
},
OnSuccess = new Aws.Lambda.Inputs.FunctionEventInvokeConfigDestinationConfigOnSuccessArgs
{
Destination = "string",
},
},
MaximumEventAgeInSeconds = 0,
MaximumRetryAttempts = 0,
Qualifier = "string",
});
example, err := lambda.NewFunctionEventInvokeConfig(ctx, "functionEventInvokeConfigResource", &lambda.FunctionEventInvokeConfigArgs{
FunctionName: pulumi.String("string"),
DestinationConfig: &lambda.FunctionEventInvokeConfigDestinationConfigArgs{
OnFailure: &lambda.FunctionEventInvokeConfigDestinationConfigOnFailureArgs{
Destination: pulumi.String("string"),
},
OnSuccess: &lambda.FunctionEventInvokeConfigDestinationConfigOnSuccessArgs{
Destination: pulumi.String("string"),
},
},
MaximumEventAgeInSeconds: pulumi.Int(0),
MaximumRetryAttempts: pulumi.Int(0),
Qualifier: pulumi.String("string"),
})
var functionEventInvokeConfigResource = new FunctionEventInvokeConfig("functionEventInvokeConfigResource", FunctionEventInvokeConfigArgs.builder()
.functionName("string")
.destinationConfig(FunctionEventInvokeConfigDestinationConfigArgs.builder()
.onFailure(FunctionEventInvokeConfigDestinationConfigOnFailureArgs.builder()
.destination("string")
.build())
.onSuccess(FunctionEventInvokeConfigDestinationConfigOnSuccessArgs.builder()
.destination("string")
.build())
.build())
.maximumEventAgeInSeconds(0)
.maximumRetryAttempts(0)
.qualifier("string")
.build());
function_event_invoke_config_resource = aws.lambda_.FunctionEventInvokeConfig("functionEventInvokeConfigResource",
function_name="string",
destination_config={
"onFailure": {
"destination": "string",
},
"onSuccess": {
"destination": "string",
},
},
maximum_event_age_in_seconds=0,
maximum_retry_attempts=0,
qualifier="string")
const functionEventInvokeConfigResource = new aws.lambda.FunctionEventInvokeConfig("functionEventInvokeConfigResource", {
functionName: "string",
destinationConfig: {
onFailure: {
destination: "string",
},
onSuccess: {
destination: "string",
},
},
maximumEventAgeInSeconds: 0,
maximumRetryAttempts: 0,
qualifier: "string",
});
type: aws:lambda:FunctionEventInvokeConfig
properties:
destinationConfig:
onFailure:
destination: string
onSuccess:
destination: string
functionName: string
maximumEventAgeInSeconds: 0
maximumRetryAttempts: 0
qualifier: string
FunctionEventInvokeConfig Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FunctionEventInvokeConfig resource accepts the following input properties:
- Function
Name string Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- Destination
Config FunctionEvent Invoke Config Destination Config - Configuration block with destination configuration. See below for details.
- Maximum
Event intAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- Maximum
Retry intAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- Qualifier string
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- Function
Name string Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- Destination
Config FunctionEvent Invoke Config Destination Config Args - Configuration block with destination configuration. See below for details.
- Maximum
Event intAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- Maximum
Retry intAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- Qualifier string
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- function
Name String Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- destination
Config FunctionEvent Invoke Config Destination Config - Configuration block with destination configuration. See below for details.
- maximum
Event IntegerAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum
Retry IntegerAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier String
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- function
Name string Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- destination
Config FunctionEvent Invoke Config Destination Config - Configuration block with destination configuration. See below for details.
- maximum
Event numberAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum
Retry numberAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier string
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- function_
name str Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- destination_
config lambda_.Function Event Invoke Config Destination Config Args - Configuration block with destination configuration. See below for details.
- maximum_
event_ intage_ in_ seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum_
retry_ intattempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier str
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- function
Name String Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- destination
Config Property Map - Configuration block with destination configuration. See below for details.
- maximum
Event NumberAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum
Retry NumberAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier String
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
Outputs
All input properties are implicitly available as output properties. Additionally, the FunctionEventInvokeConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing FunctionEventInvokeConfig Resource
Get an existing FunctionEventInvokeConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FunctionEventInvokeConfigState, opts?: CustomResourceOptions): FunctionEventInvokeConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
destination_config: Optional[_lambda_.FunctionEventInvokeConfigDestinationConfigArgs] = None,
function_name: Optional[str] = None,
maximum_event_age_in_seconds: Optional[int] = None,
maximum_retry_attempts: Optional[int] = None,
qualifier: Optional[str] = None) -> FunctionEventInvokeConfig
func GetFunctionEventInvokeConfig(ctx *Context, name string, id IDInput, state *FunctionEventInvokeConfigState, opts ...ResourceOption) (*FunctionEventInvokeConfig, error)
public static FunctionEventInvokeConfig Get(string name, Input<string> id, FunctionEventInvokeConfigState? state, CustomResourceOptions? opts = null)
public static FunctionEventInvokeConfig get(String name, Output<String> id, FunctionEventInvokeConfigState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Destination
Config FunctionEvent Invoke Config Destination Config - Configuration block with destination configuration. See below for details.
- Function
Name string Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- Maximum
Event intAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- Maximum
Retry intAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- Qualifier string
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- Destination
Config FunctionEvent Invoke Config Destination Config Args - Configuration block with destination configuration. See below for details.
- Function
Name string Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- Maximum
Event intAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- Maximum
Retry intAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- Qualifier string
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- destination
Config FunctionEvent Invoke Config Destination Config - Configuration block with destination configuration. See below for details.
- function
Name String Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- maximum
Event IntegerAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum
Retry IntegerAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier String
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- destination
Config FunctionEvent Invoke Config Destination Config - Configuration block with destination configuration. See below for details.
- function
Name string Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- maximum
Event numberAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum
Retry numberAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier string
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- destination_
config lambda_.Function Event Invoke Config Destination Config Args - Configuration block with destination configuration. See below for details.
- function_
name str Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- maximum_
event_ intage_ in_ seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum_
retry_ intattempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier str
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
- destination
Config Property Map - Configuration block with destination configuration. See below for details.
- function
Name String Name or Amazon Resource Name (ARN) of the Lambda Function, omitting any version or alias qualifier.
The following arguments are optional:
- maximum
Event NumberAge In Seconds - Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600.
- maximum
Retry NumberAttempts - Maximum number of times to retry when the function returns an error. Valid values between 0 and 2. Defaults to 2.
- qualifier String
- Lambda Function published version,
$LATEST
, or Lambda Alias name.
Supporting Types
FunctionEventInvokeConfigDestinationConfig, FunctionEventInvokeConfigDestinationConfigArgs
- On
Failure FunctionEvent Invoke Config Destination Config On Failure - Configuration block with destination configuration for failed asynchronous invocations. See below for details.
- On
Success FunctionEvent Invoke Config Destination Config On Success - Configuration block with destination configuration for successful asynchronous invocations. See below for details.
- On
Failure FunctionEvent Invoke Config Destination Config On Failure - Configuration block with destination configuration for failed asynchronous invocations. See below for details.
- On
Success FunctionEvent Invoke Config Destination Config On Success - Configuration block with destination configuration for successful asynchronous invocations. See below for details.
- on
Failure FunctionEvent Invoke Config Destination Config On Failure - Configuration block with destination configuration for failed asynchronous invocations. See below for details.
- on
Success FunctionEvent Invoke Config Destination Config On Success - Configuration block with destination configuration for successful asynchronous invocations. See below for details.
- on
Failure FunctionEvent Invoke Config Destination Config On Failure - Configuration block with destination configuration for failed asynchronous invocations. See below for details.
- on
Success FunctionEvent Invoke Config Destination Config On Success - Configuration block with destination configuration for successful asynchronous invocations. See below for details.
- on_
failure lambda_.Function Event Invoke Config Destination Config On Failure - Configuration block with destination configuration for failed asynchronous invocations. See below for details.
- on_
success lambda_.Function Event Invoke Config Destination Config On Success - Configuration block with destination configuration for successful asynchronous invocations. See below for details.
- on
Failure Property Map - Configuration block with destination configuration for failed asynchronous invocations. See below for details.
- on
Success Property Map - Configuration block with destination configuration for successful asynchronous invocations. See below for details.
FunctionEventInvokeConfigDestinationConfigOnFailure, FunctionEventInvokeConfigDestinationConfigOnFailureArgs
- Destination string
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- Destination string
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination String
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination string
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination str
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination String
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
FunctionEventInvokeConfigDestinationConfigOnSuccess, FunctionEventInvokeConfigDestinationConfigOnSuccessArgs
- Destination string
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- Destination string
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination String
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination string
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination str
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
- destination String
- Amazon Resource Name (ARN) of the destination resource. See the Lambda Developer Guide for acceptable resource types and associated IAM permissions.
Import
ARN with qualifier:
Name without qualifier (all versions and aliases):
Name with qualifier:
Using pulumi import
to import Lambda Function Event Invoke Configs using the fully qualified Function name or Amazon Resource Name (ARN). For example:
ARN without qualifier (all versions and aliases):
$ pulumi import aws:lambda/functionEventInvokeConfig:FunctionEventInvokeConfig example arn:aws:us-east-1:123456789012:function:my_function
ARN with qualifier:
$ pulumi import aws:lambda/functionEventInvokeConfig:FunctionEventInvokeConfig example arn:aws:us-east-1:123456789012:function:my_function:production
Name without qualifier (all versions and aliases):
$ pulumi import aws:lambda/functionEventInvokeConfig:FunctionEventInvokeConfig example my_function
Name with qualifier:
$ pulumi import aws:lambda/functionEventInvokeConfig:FunctionEventInvokeConfig example my_function:production
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.