Skip to content

Commit 1558f5a

Browse files
Update generated code (#2004)
update generated code
1 parent edbee27 commit 1558f5a

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

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/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/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)