Skip to content

Commit f39a7e9

Browse files
authored
Fix list in generated doc (#1434)
1 parent 17c910d commit f39a7e9

File tree

4 files changed

+0
-10
lines changed

4 files changed

+0
-10
lines changed

src/Input/DeleteFunctionRequest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ final class DeleteFunctionRequest extends Input
1515
* **Name formats**
1616
*
1717
* - **Function name** – `my-function` (name-only), `my-function:1` (with version).
18-
* -
1918
* - **Function ARN** – `arn:aws:lambda:us-west-2:123456789012:function:my-function`.
20-
* -
2119
* - **Partial ARN** – `123456789012:function:my-function`.
2220
*
2321
* You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.

src/Input/InvocationRequest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ final class InvocationRequest extends Input
1717
* **Name formats**
1818
*
1919
* - **Function name** – `my-function` (name-only), `my-function:v1` (with alias).
20-
* -
2120
* - **Function ARN** – `arn:aws:lambda:us-west-2:123456789012:function:my-function`.
22-
* -
2321
* - **Partial ARN** – `123456789012:function:my-function`.
2422
*
2523
* You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN.
@@ -36,10 +34,8 @@ final class InvocationRequest extends Input
3634
*
3735
* - `RequestResponse` (default) – Invoke the function synchronously. Keep the connection open until the function
3836
* returns a response or times out. The API response includes the function response and additional data.
39-
* -
4037
* - `Event` – Invoke the function asynchronously. Send events that fail multiple times to the function's dead-letter
4138
* queue (if one is configured). The API response only includes a status code.
42-
* -
4339
* - `DryRun` – Validate parameter values and verify that the user or role has permission to invoke the function.
4440
*
4541
* @var InvocationType::*|null

src/Input/ListVersionsByFunctionRequest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ final class ListVersionsByFunctionRequest extends Input
1515
* **Name formats**
1616
*
1717
* - **Function name** - `MyFunction`.
18-
* -
1918
* - **Function ARN** - `arn:aws:lambda:us-west-2:123456789012:function:MyFunction`.
20-
* -
2119
* - **Partial ARN** - `123456789012:function:MyFunction`.
2220
*
2321
* The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64

src/Input/PublishLayerVersionRequest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ final class PublishLayerVersionRequest extends Input
5353
* The layer's software license. It can be any of the following:.
5454
*
5555
* - An SPDX license identifier [^1]. For example, `MIT`.
56-
* -
5756
* - The URL of a license hosted on the internet. For example, `https://opensource.org/licenses/MIT`.
58-
* -
5957
* - The full text of the license.
6058
*
6159
* [^1]: https://spdx.org/licenses/

0 commit comments

Comments
 (0)