This API is intended for use with the latest AWS Lambda implementation. For details, see AWS Lambda.
Get the Amazon Resource Names (ARNs) of the latest version of OneAgent for AWS Lambda layers for supported AWS Lambda runtimes.
Note that passing architecture, technology type, or region as a parameter returns only the relevant layers.
The request produces an application/json
payload.
GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v1/deployment/lambda/layer |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/deployment/lambda/layer |
To execute this request, you need an access token with InstallerDownload
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameter | Type | Description | In | Required |
---|---|---|---|---|
arch | string | The architecture of your OS:
| query | optional |
techtype | string | Technology type of the lambda runtime.
| query | optional |
withCollector | string | Specify if you want the log collector contained or log collector only. ONLY cannot be combined with techtype
| query | optional |
region | string | The region of the layer. It must match the region of the AWS Lambda function | query | optional |
Code | Type | Description |
---|---|---|
200 | Latest | Success. The payload contains the ARNs of the latest available layers. |
404 | - | Not found. See the response body for details. |
4XX | Error | Client side error. |
5XX | Error | Server side error. |
LatestLambdaLayersMetainfo
objectLatest information about available AWS lambda layers
Element | Type | Description |
---|---|---|
arns | Lambda | - |
LambdaDto
objectElement | Type | Description |
---|---|---|
arch | string | - |
arn | string | - |
region | string | - |
techType | string | - |
withCollector | string | - |
{"arns": [{"arch": "string","arn": "string","region": "string","techType": "string","withCollector": "string"}]}