Skip to content

Commit 9afd385

Browse files
Update generated code (#2004)
update generated code
1 parent 262abdc commit 9afd385

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.365.0"
3+
"${LATEST}": "3.366.1"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Lambda/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- AWS api-change: Added support for creating and invoking Tenant Isolated functions in AWS Lambda APIs.
1212
- 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.
1313
- AWS api-change: Launching Lambda Managed Instances - a new feature to run Lambda on EC2.
14+
- AWS api-change: Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls.
1415

1516
### Dependency bumped
1617

src/Service/Lambda/src/Enum/LastUpdateStatusReasonCode.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ final class LastUpdateStatusReasonCode
66
{
77
public const CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED = 'CapacityProviderScalingLimitExceeded';
88
public const DISABLED_KMSKEY = 'DisabledKMSKey';
9+
public const DISALLOWED_BY_VPC_ENCRYPTION_CONTROL = 'DisallowedByVpcEncryptionControl';
910
public const EC2REQUEST_LIMIT_EXCEEDED = 'EC2RequestLimitExceeded';
1011
public const EFSIOERROR = 'EFSIOError';
1112
public const EFSMOUNT_CONNECTIVITY_ERROR = 'EFSMountConnectivityError';
@@ -43,6 +44,7 @@ public static function exists(string $value): bool
4344
return isset([
4445
self::CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED => true,
4546
self::DISABLED_KMSKEY => true,
47+
self::DISALLOWED_BY_VPC_ENCRYPTION_CONTROL => true,
4648
self::EC2REQUEST_LIMIT_EXCEEDED => true,
4749
self::EFSIOERROR => true,
4850
self::EFSMOUNT_CONNECTIVITY_ERROR => true,

src/Service/Lambda/src/Enum/StateReasonCode.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ final class StateReasonCode
77
public const CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED = 'CapacityProviderScalingLimitExceeded';
88
public const CREATING = 'Creating';
99
public const DISABLED_KMSKEY = 'DisabledKMSKey';
10+
public const DISALLOWED_BY_VPC_ENCRYPTION_CONTROL = 'DisallowedByVpcEncryptionControl';
1011
public const DRAINING_DURABLE_EXECUTIONS = 'DrainingDurableExecutions';
1112
public const EC2REQUEST_LIMIT_EXCEEDED = 'EC2RequestLimitExceeded';
1213
public const EFSIOERROR = 'EFSIOError';
@@ -48,6 +49,7 @@ public static function exists(string $value): bool
4849
self::CAPACITY_PROVIDER_SCALING_LIMIT_EXCEEDED => true,
4950
self::CREATING => true,
5051
self::DISABLED_KMSKEY => true,
52+
self::DISALLOWED_BY_VPC_ENCRYPTION_CONTROL => true,
5153
self::DRAINING_DURABLE_EXECUTIONS => true,
5254
self::EC2REQUEST_LIMIT_EXCEEDED => true,
5355
self::EFSIOERROR => true,

0 commit comments

Comments
 (0)