Skip to content

Commit 6573cae

Browse files
Update generated code (#1668)
update generated code
1 parent 4de9a55 commit 6573cae

8 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 2.3.0
610

711
### Added

src/Input/InvocationRequest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ final class InvocationRequest extends Input
5151

5252
/**
5353
* Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.
54+
* Lambda passes the `ClientContext` object to your function for synchronous invocations only.
5455
*
5556
* @var string|null
5657
*/

src/Input/ListLayerVersionsRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
final class ListLayerVersionsRequest extends Input
1313
{
1414
/**
15-
* A runtime identifier. For example, `go1.x`.
15+
* A runtime identifier. For example, `java21`.
1616
*
1717
* The following list includes deprecated runtimes. For more information, see Runtime deprecation policy [^1].
1818
*

src/Input/UpdateFunctionConfigurationRequest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ final class UpdateFunctionConfigurationRequest extends Input
182182

183183
/**
184184
* The size of the function's `/tmp` directory in MB. The default value is 512, but can be any whole number between 512
185-
* and 10,240 MB.
185+
* and 10,240 MB. For more information, see Configuring ephemeral storage (console) [^1].
186+
*
187+
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
186188
*
187189
* @var EphemeralStorage|null
188190
*/

src/Result/FunctionConfiguration.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,10 @@ class FunctionConfiguration extends Result
278278
private $architectures;
279279

280280
/**
281-
* The size of the function’s `/tmp` directory in MB. The default value is 512, but it can be any whole number between
282-
* 512 and 10,240 MB.
281+
* The size of the function's `/tmp` directory in MB. The default value is 512, but can be any whole number between 512
282+
* and 10,240 MB. For more information, see Configuring ephemeral storage (console) [^1].
283+
*
284+
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
283285
*
284286
* @var EphemeralStorage|null
285287
*/

src/ValueObject/EphemeralStorage.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
use AsyncAws\Core\Exception\InvalidArgument;
66

77
/**
8-
* The size of the function's `/tmp` directory in MB. The default value is 512, but it can be any whole number between
9-
* 512 and 10,240 MB.
8+
* The size of the function's `/tmp` directory in MB. The default value is 512, but can be any whole number between 512
9+
* and 10,240 MB. For more information, see Configuring ephemeral storage (console) [^1].
10+
*
11+
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
1012
*/
1113
final class EphemeralStorage
1214
{

src/ValueObject/FunctionConfiguration.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,10 @@ final class FunctionConfiguration
261261
private $architectures;
262262

263263
/**
264-
* The size of the function’s `/tmp` directory in MB. The default value is 512, but it can be any whole number between
265-
* 512 and 10,240 MB.
264+
* The size of the function's `/tmp` directory in MB. The default value is 512, but can be any whole number between 512
265+
* and 10,240 MB. For more information, see Configuring ephemeral storage (console) [^1].
266+
*
267+
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage
266268
*
267269
* @var EphemeralStorage|null
268270
*/

src/ValueObject/LoggingConfig.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ final class LoggingConfig
2222

2323
/**
2424
* Set this property to filter the application logs for your function that Lambda sends to CloudWatch. Lambda only sends
25-
* application logs at the selected level and lower.
25+
* application logs at the selected level of detail and lower, where `TRACE` is the highest level and `FATAL` is the
26+
* lowest.
2627
*
2728
* @var ApplicationLogLevel::*|null
2829
*/
2930
private $applicationLogLevel;
3031

3132
/**
3233
* Set this property to filter the system logs for your function that Lambda sends to CloudWatch. Lambda only sends
33-
* system logs at the selected level and lower.
34+
* system logs at the selected level of detail and lower, where `DEBUG` is the highest level and `WARN` is the lowest.
3435
*
3536
* @var SystemLogLevel::*|null
3637
*/

0 commit comments

Comments
 (0)