How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

APIs.io Engineering Platform 2015 03 31 API

The 2015 03 31 API from APIs.io Engineering Platform — 13 operation(s) for 2015 03 31.

APIs.io Engineering Platform 2015 03 31 API is one of 471 APIs that APIs.io Engineering Platform publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

The published artifact set on APIs.io includes an OpenAPI specification and API documentation.

This API exposes 23 operations across 13 paths, and defines 162 schemas. It is described by OpenAPI 3.2.0, at version 2015-03-31.

Requests are made against 4 base URLs: http://lambda.{region}.amazonaws.com, https://lambda.{region}.amazonaws.com, http://lambda.{region}.amazonaws.com.cn, https://lambda.{region}.amazonaws.com.cn.

23 operations 13 paths 162 schemas 4 DELETE9 GET6 POST4 PUT

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
2015-03-31
Base URL
https://{bucketname}.s3.amazonaws.com
Authentication
API Key
Terms of Service
Resource Areas
1

Authentication & Security 1

APIs.io Engineering Platform 2015 03 31 API declares 1 security scheme for authenticating requests. An API key is passed in the header as Authorization (hmac). By default, every request must be authenticated.

  • hmac — Amazon Signature authorization v4

Paths & Operations 23

Across 13 paths, the API surfaces 23 operations — 4 DELETE, 9 GET, 6 POST, 4 PUT. Each is listed below with its method, path, parameters, and response codes.

2015 03 31 23
POST
/2015-03-31/functions/{FunctionName}/policy
Grants an Amazon Web Service, Amazon Web Services account, or Amazon Web Services organization permission to use a function. You can apply the policy at the function level, or specify a qualifier to…
AddPermission 9 params body → 201480481482483484485486
GET
/2015-03-31/functions/{FunctionName}/policy
Returns the resource-based IAM policy for a function, version, or alias.
GetPolicy 9 params → 200480481482483
POST
/2015-03-31/functions/{FunctionName}/aliases
Creates an alias for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version. You can also map an alias to split invocat…
CreateAlias 8 params body → 201480481482483484
GET
/2015-03-31/functions/{FunctionName}/aliases
Returns a list of aliases for a Lambda function.
ListAliases 11 params → 200480481482483
POST
/2015-03-31/event-source-mappings/
Creates a mapping between an event source and an Lambda function. Lambda reads items from the event source and invokes the function. For details about how to configure different event sources, see th…
CreateEventSourceMapping 7 params body → 202480481482483484
GET
/2015-03-31/event-source-mappings/
Lists event source mappings. Specify an EventSourceArn to show only event source mappings for a single event source.
ListEventSourceMappings 11 params → 200480481482483
POST
/2015-03-31/functions
Creates a Lambda function. To create a function, you need a deployment package and an execution role . The deployment package is a .zip file archive or container image that contains your function cod…
CreateFunction 7 params body → 201480481482483484485486
DELETE
/2015-03-31/functions/{FunctionName}/aliases/{Name}
Deletes a Lambda function alias .
DeleteAlias 9 params → 204480481482483
GET
/2015-03-31/functions/{FunctionName}/aliases/{Name}
Returns details about a Lambda function alias .
GetAlias 9 params → 200480481482483
PUT
/2015-03-31/functions/{FunctionName}/aliases/{Name}
Updates the configuration of a Lambda function alias .
UpdateAlias 9 params body → 200480481482483484485
DELETE
/2015-03-31/event-source-mappings/{UUID}
Deletes an event source mapping . You can get the identifier of a mapping from the output of ListEventSourceMappings . When you delete an event source mapping, it enters a Deleting state and might no…
DeleteEventSourceMapping 8 params → 202480481482483484
GET
/2015-03-31/event-source-mappings/{UUID}
Returns details about an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings .
GetEventSourceMapping 8 params → 200480481482483
PUT
/2015-03-31/event-source-mappings/{UUID}
Updates an event source mapping. You can change the function that Lambda invokes, or pause invocation and resume later from the same location. For details about how to configure different event sourc…
UpdateEventSourceMapping 8 params body → 202480481482483484485
DELETE
/2015-03-31/functions/{FunctionName}
Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted. To delete Lambda event source mappings that invoke a fu…
DeleteFunction 9 params → 204480481482483484
GET
/2015-03-31/functions/{FunctionName}
Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specif…
GetFunction 9 params → 200480481482483
GET
/2015-03-31/functions/{FunctionName}/configuration
Returns the version-specific settings of a Lambda function or version. The output includes only options that can vary between versions of a function. To modify these settings, use UpdateFunctionConfi…
GetFunctionConfiguration 9 params → 200480481482483
PUT
/2015-03-31/functions/{FunctionName}/configuration
Modify the version-specific settings of a Lambda function. When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC,…
UpdateFunctionConfiguration 8 params body → 200480481482483484485486
POST
/2015-03-31/functions/{FunctionName}/invocations
Invokes a Lambda function. You can invoke a function synchronously (and wait for the response), or asynchronously. To invoke a function asynchronously, set InvocationType to Event . For synchronous i…
Invoke 12 params body → 200480481482483484485486
GET
/2015-03-31/functions/
Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call. Set FunctionVersion to ALL to include all published versions of each f…
ListFunctions 11 params → 200480481482
GET
/2015-03-31/functions/{FunctionName}/versions
Returns a list of versions , with the version-specific configuration of each. Lambda returns up to 50 versions per call.
ListVersionsByFunction 10 params → 200480481482483
POST
/2015-03-31/functions/{FunctionName}/versions
Creates a version from the current code and configuration of a function. Use versions to create a snapshot of your function code and configuration that doesn't change. Lambda doesn't publish a versio…
PublishVersion 8 params body → 201480481482483484485486
DELETE
/2015-03-31/functions/{FunctionName}/policy/{StatementId}
Revokes function-use permission from an Amazon Web Service or another Amazon Web Services account. You can get the ID of the statement from the output of GetPolicy .
RemovePermission 11 params → 204480481482483484
PUT
/2015-03-31/functions/{FunctionName}/code
Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see Configuring code signing for Lambda .…
UpdateFunctionCode 8 params body → 200480481482483484485486

Schemas 162

The contract defines 162 schemas that model the data the API accepts and returns. The most detailed are FunctionConfiguration (35 properties), EventSourceMappingConfiguration (27 properties), AliasConfiguration (6 properties), FunctionCodeLocation (4 properties). Each schema is shown below with its type and property counts.

ParallelizationFactor
integer
InvocationResponse
object
2 properties
FunctionResponseType
string
Queues
array
RequestTooLargeException
AliasConfiguration
object
Provides configuration information about a Lambda function alias .
6 properties
ResourceConflictException
SubnetIPAddressLimitReachedException
TumblingWindowInSeconds
integer
SecurityGroupIds
array
LayersReferenceList
array
ReservedConcurrentExecutions
integer
FileSystemConfig
object
Details about the connection between a Lambda function and an Amazon EFS file system .
2 properties 2 required
BisectBatchOnFunctionError
boolean
ListEventSourceMappingsResponse
object
2 properties
EventSourceMappingsList
array
Arn
string
ImageConfig
object
Configuration values that override the container image Dockerfile settings. For more information, see Container image settings .
3 properties
EnvironmentVariableValue
string
UnsupportedMediaTypeException
Description
string
Endpoint
string
CodeVerificationFailedException
Alias
string
CodeSigningConfigNotFoundException
FileSystemArn
string
ListFunctionsResponse
object
A list of Lambda functions.
2 properties
SnapStartException
ListVersionsByFunctionResponse
object
2 properties
KMSInvalidStateException
MemorySize
integer
InvalidCodeSignatureException
FunctionResponseTypeList
array
StateReason
string
SubnetIds
array
FilterList
array
SourceAccessType
string
RoleArn
string
MaximumRecordAgeInSeconds
integer
FilterCriteria
object
An object that contains the filters for an event source.
1 property
S3Key
string
GetFunctionResponse
object
4 properties
InvalidSecurityGroupIDException
Timeout
integer
StringList
array
SnapStartOptimizationStatus
string
InvalidSubnetIDException
EC2UnexpectedException
EventSourceMappingConfiguration
object
A mapping between an Amazon Web Services resource and a Lambda function. For details, see CreateEventSourceMapping .
27 properties
Version
string
AliasList
array
SnapStartTimeoutException
ScalingConfig
object
(Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.
1 property
SourceAccessConfigurations
array
DestinationConfig
object
A configuration object that specifies the destination of an event after Lambda processes it.
2 properties
AmazonManagedKafkaEventSourceConfig
object
Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.
1 property
S3ObjectVersion
string
SnapStartNotReadyException
Endpoints
object
KMSDisabledException
ServiceException
Pattern
string
String
string
Topics
array
DeadLetterConfig
object
The dead-letter queue for failed asynchronous invocations.
1 property
OnFailure
object
A destination for events that failed processing.
1 property
SensitiveString
string
EphemeralStorage
object
The size of the function's /tmp directory in MB. The default value is 512, but it can be any whole number between 512 and 10,240 MB.
1 property 1 required
TooManyRequestsException
MaximumRetryAttemptsEventSourceMapping
integer
VpcId
string
TracingConfigResponse
object
The function's X-Ray tracing configuration.
1 property
RuntimeVersionConfig
object
The ARN of the runtime and any errors that occured.
2 properties
KMSAccessDeniedException
CollectionName
string
StateReasonCode
string
FileSystemConfigList
array
DocumentDBEventSourceConfig
object
Specific configuration settings for a DocumentDB event source.
3 properties
RuntimeVersionError
object
Any error returned when the runtime version information for the function could not be retrieved.
2 properties
NamespacedFunctionName
string
InvalidRuntimeException
ResourceNotFoundException
SnapStartResponse
object
The function's SnapStart setting.
2 properties
EFSMountFailureException
FunctionCodeLocation
object
Details about a function's deployment package.
4 properties
DatabaseName
string
Filter
object
A structure within a FilterCriteria object that defines an event filtering pattern.
1 property
BatchSize
integer
EventSourcePosition
string
Concurrency
object
1 property
LayerVersionArn
string
LastUpdateStatus
string
ENILimitReachedException
ResourceInUseException
CodeStorageExceededException
Architecture
string
SnapStartApplyOn
string
TagValue
string
TracingMode
string
SubnetId
string
GetPolicyResponse
object
2 properties
AddPermissionResponse
object
1 property
MaximumConcurrency
integer
VpcConfigResponse
object
The VPC security groups and subnets that are attached to a Lambda function.
3 properties
Topic
string
EphemeralStorageSize
integer
KMSNotFoundException
MaximumBatchingWindowInSeconds
integer
EnvironmentResponse
object
The results of an operation to update or read environment variables. If the operation succeeds, the response contains the environment variables. If it fails, t…
2 properties
Timestamp
string
EFSMountTimeoutException
LastUpdateStatusReason
string
EnvironmentError
object
Error messages for environment variables that couldn't be applied.
2 properties
PackageType
string
EFSIOException
Queue
string
InvalidZipFileException
State
string
ResourceNotReadyException
FunctionConfiguration
object
Details about a function's configuration.
35 properties
Integer
integer
ListAliasesResponse
object
2 properties
EC2AccessDeniedException
FullDocument
string
URI
string
PolicyLengthExceededException
KMSKeyArn
string
EC2ThrottledException
ArchitecturesList
array
WorkingDirectory
string
Tags
object
FunctionList
array
InvalidRequestContentException
Weight
number
DestinationArn
string
SourceAccessConfiguration
object
To secure and define access to your event source, you can specify the authentication protocol, VPC components, or virtual host.
2 properties
EFSMountConnectivityException
ImageConfigResponse
object
Response to a GetFunctionConfiguration request.
2 properties
Handler
string
InvalidParameterValueException
LocalMountPath
string
AliasRoutingConfiguration
object
The traffic-shifting configuration of a Lambda function alias.
1 property
Layer
object
An Lambda layer .
4 properties
SelfManagedKafkaEventSourceConfig
object
Specific configuration settings for a self-managed Apache Kafka event source.
1 property
Long
integer
Runtime
string
SelfManagedEventSource
object
The self-managed Apache Kafka cluster for your event source.
1 property
SecurityGroupId
string
EndpointLists
array
FunctionArn
string
EnvironmentVariables
object
Blob
string
Date
string
RuntimeVersionArn
string
ImageConfigError
object
Error response to GetFunctionConfiguration .
2 properties
OnSuccess
object
A destination for events that were processed successfully.
1 property
AdditionalVersionWeights
object
NameSpacedFunctionArn
string
PreconditionFailedException
ResourceArn
string
LastUpdateStatusReasonCode
string
S3Bucket
string

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

engineering-platform-2015-03-31-api-openapi.yml Raw ↑

Other APIs APIs.io Engineering Platform publishes across the network.

EasyCron
APIs.io Engineering Platform 2014 11 13 API
APIs.io Engineering Platform 2016 08 19 API
APIs.io Engineering Platform 2017 03 31 API
APIs.io Engineering Platform 2017 10 31 API
APIs.io Engineering Platform 2018 10 31 API
APIs.io Engineering Platform 2019 09 25 API
APIs.io Engineering Platform 2019 09 30 API
APIs.io Engineering Platform 2020 04 22 API
APIs.io Engineering Platform 2020 06 30 API
APIs.io Engineering Platform 2021 07 20 API
Where this information came from

This is an independent, third-party profile of APIs.io Engineering Platform 2015 03 31 API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.