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.
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
.
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 |
Returns fields as described in GetFunctionCommandOutput.
Invokes a Lambda function.
For more information, see the official documentation of Invoke.
Required AWS permission: lambda:InvokeFunction
.
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 |
Returns fields as described in InvokeCommandOutput.
Long-running requests to AWS are aborted after 100 seconds
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
.
Field | Type | Description | Required |
---|---|---|---|
Region | string | The region to use. | required |
Marker | string | Specifies the pagination token that's returned by a previous request to retrieve the next page of results. | optional |
MaxItems | number | The maximum number of functions to return in the response. | optional |
Returns fields as described in ListFunctionsCommandOutput.
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
.
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 |
Returns fields as described in UpdateFunctionConfigurationCommandOutput.