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.365.0"
"${LATEST}": "3.366.1"
},
"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 @@ -11,6 +11,7 @@
- AWS api-change: Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs.
- AWS api-change: Launching Lambda durable functions - a new feature to build reliable multi-step applications and AI workflows natively within the Lambda developer experience.
- AWS api-change: Launching Lambda Managed Instances - a new feature to run Lambda on EC2.
- AWS api-change: Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls.

### Dependency bumped

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 @@ -6,6 +6,7 @@ final class LastUpdateStatusReasonCode
{
public const CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED = 'CapacityProviderScalingLimitExceeded';
public const DISABLED_KMSKEY = 'DisabledKMSKey';
public const DISALLOWED_BY_VPC_ENCRYPTION_CONTROL = 'DisallowedByVpcEncryptionControl';
public const EC2REQUEST_LIMIT_EXCEEDED = 'EC2RequestLimitExceeded';
public const EFSIOERROR = 'EFSIOError';
public const EFSMOUNT_CONNECTIVITY_ERROR = 'EFSMountConnectivityError';
Expand Down Expand Up @@ -43,6 +44,7 @@ public static function exists(string $value): bool
return isset([
self::CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED => true,
self::DISABLED_KMSKEY => true,
self::DISALLOWED_BY_VPC_ENCRYPTION_CONTROL => true,
self::EC2REQUEST_LIMIT_EXCEEDED => true,
self::EFSIOERROR => true,
self::EFSMOUNT_CONNECTIVITY_ERROR => 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 @@ -7,6 +7,7 @@ final class StateReasonCode
public const CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED = 'CapacityProviderScalingLimitExceeded';
public const CREATING = 'Creating';
public const DISABLED_KMSKEY = 'DisabledKMSKey';
public const DISALLOWED_BY_VPC_ENCRYPTION_CONTROL = 'DisallowedByVpcEncryptionControl';
public const DRAINING_DURABLE_EXECUTIONS = 'DrainingDurableExecutions';
public const EC2REQUEST_LIMIT_EXCEEDED = 'EC2RequestLimitExceeded';
public const EFSIOERROR = 'EFSIOError';
Expand Down Expand Up @@ -48,6 +49,7 @@ public static function exists(string $value): bool
self::CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED => true,
self::CREATING => true,
self::DISABLED_KMSKEY => true,
self::DISALLOWED_BY_VPC_ENCRYPTION_CONTROL => true,
self::DRAINING_DURABLE_EXECUTIONS => true,
self::EC2REQUEST_LIMIT_EXCEEDED => true,
self::EFSIOERROR => true,
Expand Down