serverlessDeploymentOperation

Represents a serverless deployment operation, capturing details about the deployment of a serverless function.

Examples

type ServerlessDeploymentOperation {
  userIdentity: ServerlessDeploymentUserIdentity
  deploymentTime: String
  sourceIPAddress: String
  userAgent: String
  connectedFromConsole: String
  location: String
  linkToCode: String
  functionName: String
  functionArn: String
  internalFunctionName: String
  cloudRegion: String
  version: String
  revisionId: String
  codeSha256: String
  entryPoint: String
  codeSize: Int
  memorySize: Int
  timeout: Int
  runtime: String
  runtimeVersionConfig: ServerlessDeploymentRuntimeVersionConfig
  architectures: [String]
  role: String
  recipientAccountId: String
  description: String
}

Fields

Field
Description
Supported fields

User identity that performed the deployment

type String principalId String arn String accountId String accessKeyId String sessionContext ServerlessDeploymentUserIdentitySessionContext

deploymentTime String

Timestamp of the deployment

sourceIPAddress String

Source IP address of the deployment request

userAgent String

User agent of the deployment request

connectedFromConsole String

Indicates if the deployment was performed from the AWS console

location String

Location of the deployed code (e.g., S3)

linkToCode String

Link to the source code in the console

functionName String

Name of the Lambda function

functionArn String

ARN of the Lambda function

internalFunctionName String

Internal name of the function

cloudRegion String

AWS region of the deployment

version String

Version of the Lambda function

revisionId String

Revision ID of the function

codeSha256 String

SHA256 hash of the deployment package

entryPoint String

Entry point/handler of the function

codeSize Int

Size of the deployment package in bytes

memorySize Int

Memory allocated to the function in MB

timeout Int

Function timeout in seconds

runtime String

Runtime environment of the function

Configuration of the runtime version

runtimeVersionArn String

architectures [String]

CPU architecture of the function

role String

IAM role ARN associated with the function

recipientAccountId String

Account ID of the recipient

description String

Description of the Lambda function

References

Fields with this object:

Last updated