Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.388.5"
"${LATEST}": "3.388.6"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
1 change: 1 addition & 0 deletions src/Service/Lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- AWS api-change: AWS Lambda Durable Functions now supports customer managed KMS keys. This allows customers to configure a KMS key in Durable Config to have all their durable execution data encrypted.
- AWS api-change: Add Java 8, 11 and 17 on AL2023 (java8.al2023, java11.al2023, java17.al2023) support to AWS Lambda.
- AWS api-change: AWS Lambda now returns a new DependencyError value in StateReasonCode and LastUpdateStatusReasonCode to provide more actionable information when a function reaches a failed state due to an error from an upstream dependency or service.

## 2.16.0

Expand Down
2 changes: 2 additions & 0 deletions src/Service/Lambda/src/Enum/LastUpdateStatusReasonCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
final class LastUpdateStatusReasonCode
{
public const CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED = 'CapacityProviderScalingLimitExceeded';
public const DEPENDENCY_ERROR = 'DependencyError';
public const DISABLED_KMSKEY = 'DisabledKMSKey';
public const DISALLOWED_BY_VPC_ENCRYPTION_CONTROL = 'DisallowedByVpcEncryptionControl';
public const EC2REQUEST_LIMIT_EXCEEDED = 'EC2RequestLimitExceeded';
Expand Down Expand Up @@ -48,6 +49,7 @@ public static function exists(string $value): bool
{
return isset([
self::CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED => true,
self::DEPENDENCY_ERROR => true,
self::DISABLED_KMSKEY => true,
self::DISALLOWED_BY_VPC_ENCRYPTION_CONTROL => true,
self::EC2REQUEST_LIMIT_EXCEEDED => true,
Expand Down
2 changes: 2 additions & 0 deletions src/Service/Lambda/src/Enum/StateReasonCode.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ final class StateReasonCode
{
public const CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED = 'CapacityProviderScalingLimitExceeded';
public const CREATING = 'Creating';
public const DEPENDENCY_ERROR = 'DependencyError';
public const DISABLED_KMSKEY = 'DisabledKMSKey';
public const DISALLOWED_BY_VPC_ENCRYPTION_CONTROL = 'DisallowedByVpcEncryptionControl';
public const DRAINING_DURABLE_EXECUTIONS = 'DrainingDurableExecutions';
Expand Down Expand Up @@ -53,6 +54,7 @@ public static function exists(string $value): bool
return isset([
self::CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED => true,
self::CREATING => true,
self::DEPENDENCY_ERROR => true,
self::DISABLED_KMSKEY => true,
self::DISALLOWED_BY_VPC_ENCRYPTION_CONTROL => true,
self::DRAINING_DURABLE_EXECUTIONS => true,
Expand Down
Loading