AWS Lambda Connector

Latest Dynatrace

Review the required AWS permissions and condition keys of the AWS Lambda Connector actions to ensure that you grant Dynatrace only a minimum set of permissions. For more information, see AWS documentation.

Get Function

Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes.

For more information, see the official documentation of Get Function.

Required AWS permission: lambda:GetFunction.

Inputs

Field
Type
Description
Required
Region
string
The region to use.
required
FunctionName
string
The name or ARN of the Lambda function, version, or alias.
required

Output

Returns fields as described in GetFunctionCommandOutput.

Invoke

Invokes a Lambda function.

For more information, see the official documentation of Invoke.

Required AWS permission: lambda:InvokeFunction.

Inputs

Field
Type
Description
Required
Region
string
The region to use.
required
FunctionName
string
The name or ARN of the Lambda function, version, or alias.
required
InvocationType
Enum
The invocation type of the Lambda function. Possible values: DryRun, Event, RequestResponse.
optional
Qualifier
string
Specify a version or alias to invoke a published version of the function.
optional

Output

Returns fields as described in InvokeCommandOutput.

List Functions

Returns a list of Lambda functions, with the version-specific configuration of each.

For more information, see the official documentation of List Functions.

Required AWS permission: lambda:ListFunctions.

Inputs

Field
Type
Description
Required
Region
string
The region to use.
required
MaxItems
number
The maximum number of functions to return in the response.
optional

Output

Returns fields as described in ListFunctionsCommandOutput.

Update Function Configuration

Modify the version-specific settings of a Lambda function.

For more information, see the official documentation of Update Function Configuration.

Required AWS permission: lambda:UpdateFunctionConfiguration.

Inputs

Field
Type
Description
Required
Region
string
The region to use.
required
FunctionName
string
The name or ARN of the Lambda function.
required
Description
string
A description of the function.
optional
Environment
Environment
Environment variables that are accessible from function code during execution.
optional
MemorySize
number
The amount of memory available to the function at runtime.
optional
Timeout
number
The amount of time (in seconds) that Lambda allows a function to run before stopping it.
optional

Output

Returns fields as described in UpdateFunctionConfigurationCommandOutput.