Skip to content

Commit 17c910d

Browse files
authored
Generates proper documentation for classes and properties (#1418)
1 parent ef7fcdf commit 17c910d

40 files changed

+215
-132
lines changed

src/Enum/FunctionVersion.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* Set to `ALL` to include entries for all published versions of each function.
7-
*/
85
final class FunctionVersion
96
{
107
public const ALL = 'ALL';

src/Enum/InvocationType.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* Choose from the following options.
7-
*
8-
* - `RequestResponse` (default) – Invoke the function synchronously. Keep the connection open until the function
9-
* returns a response or times out. The API response includes the function response and additional data.
10-
* - `Event` – Invoke the function asynchronously. Send events that fail multiple times to the function's dead-letter
11-
* queue (if one is configured). The API response only includes a status code.
12-
* - `DryRun` – Validate parameter values and verify that the user or role has permission to invoke the function.
13-
*/
145
final class InvocationType
156
{
167
public const DRY_RUN = 'DryRun';

src/Enum/LastUpdateStatus.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* The status of the last update that was performed on the function. This is first set to `Successful` after function
7-
* creation completes.
8-
*/
95
final class LastUpdateStatus
106
{
117
public const FAILED = 'Failed';

src/Enum/LastUpdateStatusReasonCode.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* The reason code for the last update that was performed on the function.
7-
*/
85
final class LastUpdateStatusReasonCode
96
{
107
public const DISABLED_KMSKEY = 'DisabledKMSKey';

src/Enum/LogType.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* Set to `Tail` to include the execution log in the response. Applies to synchronously invoked functions only.
7-
*/
85
final class LogType
96
{
107
public const NONE = 'None';

src/Enum/PackageType.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* The type of deployment package. Set to `Image` for container image and set `Zip` for .zip file archive.
7-
*/
85
final class PackageType
96
{
107
public const IMAGE = 'Image';

src/Enum/Runtime.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* The identifier of the function's runtime. Runtime is required if the deployment package is a .zip file archive.
7-
* The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
8-
*
9-
* @see https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
10-
* @see https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy
11-
*/
125
final class Runtime
136
{
147
public const DOTNETCORE_1_0 = 'dotnetcore1.0';

src/Enum/SnapStartApplyOn.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* When set to `PublishedVersions`, Lambda creates a snapshot of the execution environment when you publish a function
7-
* version.
8-
*/
95
final class SnapStartApplyOn
106
{
117
public const NONE = 'None';

src/Enum/SnapStartOptimizationStatus.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* When you provide a qualified Amazon Resource Name (ARN), this response element indicates whether SnapStart is
7-
* activated for the specified function version.
8-
*
9-
* @see https://docs.aws.amazon.com/lambda/latest/dg/configuration-versions.html#versioning-versions-using
10-
*/
115
final class SnapStartOptimizationStatus
126
{
137
public const OFF = 'Off';

src/Enum/State.php

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

33
namespace AsyncAws\Lambda\Enum;
44

5-
/**
6-
* The current state of the function. When the state is `Inactive`, you can reactivate the function by invoking it.
7-
*/
85
final class State
96
{
107
public const ACTIVE = 'Active';

0 commit comments

Comments
 (0)