@aws-sdk/client-lambda 3.325.0 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +7 -0
- package/dist-types/commands/AddPermissionCommand.d.ts +6 -0
- package/dist-types/commands/CreateAliasCommand.d.ts +15 -0
- package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +19 -0
- package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +72 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +99 -0
- package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +26 -0
- package/dist-types/commands/DeleteAliasCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +72 -0
- package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLayerVersionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +4 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetAliasCommand.d.ts +15 -0
- package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +19 -0
- package/dist-types/commands/GetEventSourceMappingCommand.d.ts +72 -0
- package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +7 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +113 -0
- package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +27 -0
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +24 -0
- package/dist-types/commands/GetLayerVersionCommand.d.ts +24 -0
- package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +7 -0
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +11 -0
- package/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +8 -0
- package/dist-types/commands/InvokeAsyncCommand.d.ts +6 -0
- package/dist-types/commands/InvokeCommand.d.ts +10 -0
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +18 -0
- package/dist-types/commands/ListAliasesCommand.d.ts +20 -0
- package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +22 -0
- package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +77 -0
- package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +22 -0
- package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +32 -0
- package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +9 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +104 -0
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +21 -0
- package/dist-types/commands/ListLayersCommand.d.ts +25 -0
- package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +17 -0
- package/dist-types/commands/ListTagsCommand.d.ts +8 -0
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +104 -0
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +24 -0
- package/dist-types/commands/PublishVersionCommand.d.ts +99 -0
- package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +7 -0
- package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +6 -0
- package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +11 -0
- package/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +8 -0
- package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +4 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAliasCommand.d.ts +15 -0
- package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +19 -0
- package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +72 -0
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +99 -0
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +27 -0
- package/package.json +3 -3
|
@@ -32,6 +32,15 @@ export interface GetProvisionedConcurrencyConfigCommandOutput extends GetProvisi
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetProvisionedConcurrencyConfigCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetProvisionedConcurrencyConfigResponse
|
|
36
|
+
* // RequestedProvisionedConcurrentExecutions: Number("int"),
|
|
37
|
+
* // AvailableProvisionedConcurrentExecutions: Number("int"),
|
|
38
|
+
* // AllocatedProvisionedConcurrentExecutions: Number("int"),
|
|
39
|
+
* // Status: "IN_PROGRESS" || "READY" || "FAILED",
|
|
40
|
+
* // StatusReason: "STRING_VALUE",
|
|
41
|
+
* // LastModified: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param GetProvisionedConcurrencyConfigCommandInput - {@link GetProvisionedConcurrencyConfigCommandInput}
|
|
@@ -55,6 +64,8 @@ export interface GetProvisionedConcurrencyConfigCommandOutput extends GetProvisi
|
|
|
55
64
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
65
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
57
66
|
*
|
|
67
|
+
* @throws {@link LambdaServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
58
69
|
*
|
|
59
70
|
*/
|
|
60
71
|
export declare class GetProvisionedConcurrencyConfigCommand extends $Command<GetProvisionedConcurrencyConfigCommandInput, GetProvisionedConcurrencyConfigCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -34,6 +34,12 @@ export interface GetRuntimeManagementConfigCommandOutput extends GetRuntimeManag
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetRuntimeManagementConfigCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetRuntimeManagementConfigResponse
|
|
38
|
+
* // UpdateRuntimeOn: "Auto" || "Manual" || "FunctionUpdate",
|
|
39
|
+
* // RuntimeVersionArn: "STRING_VALUE",
|
|
40
|
+
* // FunctionArn: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
37
43
|
* ```
|
|
38
44
|
*
|
|
39
45
|
* @param GetRuntimeManagementConfigCommandInput - {@link GetRuntimeManagementConfigCommandInput}
|
|
@@ -54,6 +60,8 @@ export interface GetRuntimeManagementConfigCommandOutput extends GetRuntimeManag
|
|
|
54
60
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
61
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
56
62
|
*
|
|
63
|
+
* @throws {@link LambdaServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
57
65
|
*
|
|
58
66
|
*/
|
|
59
67
|
export declare class GetRuntimeManagementConfigCommand extends $Command<GetRuntimeManagementConfigCommandInput, GetRuntimeManagementConfigCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -47,6 +47,10 @@ export interface InvokeAsyncCommandOutput extends InvokeAsyncResponse, __Metadat
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new InvokeAsyncCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // InvokeAsyncResponse
|
|
51
|
+
* // Status: Number("int"),
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
50
54
|
* ```
|
|
51
55
|
*
|
|
52
56
|
* @param InvokeAsyncCommandInput - {@link InvokeAsyncCommandInput}
|
|
@@ -70,6 +74,8 @@ export interface InvokeAsyncCommandOutput extends InvokeAsyncResponse, __Metadat
|
|
|
70
74
|
* @throws {@link ServiceException} (server fault)
|
|
71
75
|
* <p>The Lambda service encountered an internal error.</p>
|
|
72
76
|
*
|
|
77
|
+
* @throws {@link LambdaServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
73
79
|
*
|
|
74
80
|
*/
|
|
75
81
|
export declare class InvokeAsyncCommand extends $Command<InvokeAsyncCommandInput, InvokeAsyncCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -60,6 +60,14 @@ export interface InvokeCommandOutput extends InvocationResponse, __MetadataBeare
|
|
|
60
60
|
* };
|
|
61
61
|
* const command = new InvokeCommand(input);
|
|
62
62
|
* const response = await client.send(command);
|
|
63
|
+
* // { // InvocationResponse
|
|
64
|
+
* // StatusCode: Number("int"),
|
|
65
|
+
* // FunctionError: "STRING_VALUE",
|
|
66
|
+
* // LogResult: "STRING_VALUE",
|
|
67
|
+
* // Payload: "BLOB_VALUE",
|
|
68
|
+
* // ExecutedVersion: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
63
71
|
* ```
|
|
64
72
|
*
|
|
65
73
|
* @param InvokeCommandInput - {@link InvokeCommandInput}
|
|
@@ -168,6 +176,8 @@ export interface InvokeCommandOutput extends InvocationResponse, __MetadataBeare
|
|
|
168
176
|
* @throws {@link UnsupportedMediaTypeException} (client fault)
|
|
169
177
|
* <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
|
|
170
178
|
*
|
|
179
|
+
* @throws {@link LambdaServiceException}
|
|
180
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
171
181
|
*
|
|
172
182
|
*/
|
|
173
183
|
export declare class InvokeCommand extends $Command<InvokeCommandInput, InvokeCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -39,6 +39,22 @@ export interface InvokeWithResponseStreamCommandOutput extends InvokeWithRespons
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new InvokeWithResponseStreamCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // InvokeWithResponseStreamResponse
|
|
43
|
+
* // StatusCode: Number("int"),
|
|
44
|
+
* // ExecutedVersion: "STRING_VALUE",
|
|
45
|
+
* // EventStream: { // InvokeWithResponseStreamResponseEvent Union: only one key present
|
|
46
|
+
* // PayloadChunk: { // InvokeResponseStreamUpdate
|
|
47
|
+
* // Payload: "BLOB_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // InvokeComplete: { // InvokeWithResponseStreamCompleteEvent
|
|
50
|
+
* // ErrorCode: "STRING_VALUE",
|
|
51
|
+
* // ErrorDetails: "STRING_VALUE",
|
|
52
|
+
* // LogResult: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // ResponseStreamContentType: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
42
58
|
* ```
|
|
43
59
|
*
|
|
44
60
|
* @param InvokeWithResponseStreamCommandInput - {@link InvokeWithResponseStreamCommandInput}
|
|
@@ -147,6 +163,8 @@ export interface InvokeWithResponseStreamCommandOutput extends InvokeWithRespons
|
|
|
147
163
|
* @throws {@link UnsupportedMediaTypeException} (client fault)
|
|
148
164
|
* <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
|
|
149
165
|
*
|
|
166
|
+
* @throws {@link LambdaServiceException}
|
|
167
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
150
168
|
*
|
|
151
169
|
*/
|
|
152
170
|
export declare class InvokeWithResponseStreamCommand extends $Command<InvokeWithResponseStreamCommandInput, InvokeWithResponseStreamCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -35,6 +35,24 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListAliasesCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListAliasesResponse
|
|
39
|
+
* // NextMarker: "STRING_VALUE",
|
|
40
|
+
* // Aliases: [ // AliasList
|
|
41
|
+
* // { // AliasConfiguration
|
|
42
|
+
* // AliasArn: "STRING_VALUE",
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // FunctionVersion: "STRING_VALUE",
|
|
45
|
+
* // Description: "STRING_VALUE",
|
|
46
|
+
* // RoutingConfig: { // AliasRoutingConfiguration
|
|
47
|
+
* // AdditionalVersionWeights: { // AdditionalVersionWeights
|
|
48
|
+
* // "<keys>": Number("double"),
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // RevisionId: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
38
56
|
* ```
|
|
39
57
|
*
|
|
40
58
|
* @param ListAliasesCommandInput - {@link ListAliasesCommandInput}
|
|
@@ -55,6 +73,8 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat
|
|
|
55
73
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
74
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
57
75
|
*
|
|
76
|
+
* @throws {@link LambdaServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
58
78
|
*
|
|
59
79
|
*/
|
|
60
80
|
export declare class ListAliasesCommand extends $Command<ListAliasesCommandInput, ListAliasesCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -34,6 +34,26 @@ export interface ListCodeSigningConfigsCommandOutput extends ListCodeSigningConf
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListCodeSigningConfigsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListCodeSigningConfigsResponse
|
|
38
|
+
* // NextMarker: "STRING_VALUE",
|
|
39
|
+
* // CodeSigningConfigs: [ // CodeSigningConfigList
|
|
40
|
+
* // { // CodeSigningConfig
|
|
41
|
+
* // CodeSigningConfigId: "STRING_VALUE", // required
|
|
42
|
+
* // CodeSigningConfigArn: "STRING_VALUE", // required
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // AllowedPublishers: { // AllowedPublishers
|
|
45
|
+
* // SigningProfileVersionArns: [ // SigningProfileVersionArns // required
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // },
|
|
49
|
+
* // CodeSigningPolicies: { // CodeSigningPolicies
|
|
50
|
+
* // UntrustedArtifactOnDeployment: "Warn" || "Enforce",
|
|
51
|
+
* // },
|
|
52
|
+
* // LastModified: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
37
57
|
* ```
|
|
38
58
|
*
|
|
39
59
|
* @param ListCodeSigningConfigsCommandInput - {@link ListCodeSigningConfigsCommandInput}
|
|
@@ -48,6 +68,8 @@ export interface ListCodeSigningConfigsCommandOutput extends ListCodeSigningConf
|
|
|
48
68
|
* @throws {@link ServiceException} (server fault)
|
|
49
69
|
* <p>The Lambda service encountered an internal error.</p>
|
|
50
70
|
*
|
|
71
|
+
* @throws {@link LambdaServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
51
73
|
*
|
|
52
74
|
*/
|
|
53
75
|
export declare class ListCodeSigningConfigsCommand extends $Command<ListCodeSigningConfigsCommandInput, ListCodeSigningConfigsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -35,6 +35,81 @@ export interface ListEventSourceMappingsCommandOutput extends ListEventSourceMap
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListEventSourceMappingsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListEventSourceMappingsResponse
|
|
39
|
+
* // NextMarker: "STRING_VALUE",
|
|
40
|
+
* // EventSourceMappings: [ // EventSourceMappingsList
|
|
41
|
+
* // { // EventSourceMappingConfiguration
|
|
42
|
+
* // UUID: "STRING_VALUE",
|
|
43
|
+
* // StartingPosition: "TRIM_HORIZON" || "LATEST" || "AT_TIMESTAMP",
|
|
44
|
+
* // StartingPositionTimestamp: new Date("TIMESTAMP"),
|
|
45
|
+
* // BatchSize: Number("int"),
|
|
46
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
47
|
+
* // ParallelizationFactor: Number("int"),
|
|
48
|
+
* // EventSourceArn: "STRING_VALUE",
|
|
49
|
+
* // FilterCriteria: { // FilterCriteria
|
|
50
|
+
* // Filters: [ // FilterList
|
|
51
|
+
* // { // Filter
|
|
52
|
+
* // Pattern: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // FunctionArn: "STRING_VALUE",
|
|
57
|
+
* // LastModified: new Date("TIMESTAMP"),
|
|
58
|
+
* // LastProcessingResult: "STRING_VALUE",
|
|
59
|
+
* // State: "STRING_VALUE",
|
|
60
|
+
* // StateTransitionReason: "STRING_VALUE",
|
|
61
|
+
* // DestinationConfig: { // DestinationConfig
|
|
62
|
+
* // OnSuccess: { // OnSuccess
|
|
63
|
+
* // Destination: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // OnFailure: { // OnFailure
|
|
66
|
+
* // Destination: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // Topics: [ // Topics
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // Queues: [ // Queues
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // SourceAccessConfigurations: [ // SourceAccessConfigurations
|
|
76
|
+
* // { // SourceAccessConfiguration
|
|
77
|
+
* // Type: "BASIC_AUTH" || "VPC_SUBNET" || "VPC_SECURITY_GROUP" || "SASL_SCRAM_512_AUTH" || "SASL_SCRAM_256_AUTH" || "VIRTUAL_HOST" || "CLIENT_CERTIFICATE_TLS_AUTH" || "SERVER_ROOT_CA_CERTIFICATE",
|
|
78
|
+
* // URI: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // SelfManagedEventSource: { // SelfManagedEventSource
|
|
82
|
+
* // Endpoints: { // Endpoints
|
|
83
|
+
* // "<keys>": [ // EndpointLists
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // MaximumRecordAgeInSeconds: Number("int"),
|
|
89
|
+
* // BisectBatchOnFunctionError: true || false,
|
|
90
|
+
* // MaximumRetryAttempts: Number("int"),
|
|
91
|
+
* // TumblingWindowInSeconds: Number("int"),
|
|
92
|
+
* // FunctionResponseTypes: [ // FunctionResponseTypeList
|
|
93
|
+
* // "ReportBatchItemFailures",
|
|
94
|
+
* // ],
|
|
95
|
+
* // AmazonManagedKafkaEventSourceConfig: { // AmazonManagedKafkaEventSourceConfig
|
|
96
|
+
* // ConsumerGroupId: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // SelfManagedKafkaEventSourceConfig: { // SelfManagedKafkaEventSourceConfig
|
|
99
|
+
* // ConsumerGroupId: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // ScalingConfig: { // ScalingConfig
|
|
102
|
+
* // MaximumConcurrency: Number("int"),
|
|
103
|
+
* // },
|
|
104
|
+
* // DocumentDBEventSourceConfig: { // DocumentDBEventSourceConfig
|
|
105
|
+
* // DatabaseName: "STRING_VALUE",
|
|
106
|
+
* // CollectionName: "STRING_VALUE",
|
|
107
|
+
* // FullDocument: "UpdateLookup" || "Default",
|
|
108
|
+
* // },
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // };
|
|
112
|
+
*
|
|
38
113
|
* ```
|
|
39
114
|
*
|
|
40
115
|
* @param ListEventSourceMappingsCommandInput - {@link ListEventSourceMappingsCommandInput}
|
|
@@ -55,6 +130,8 @@ export interface ListEventSourceMappingsCommandOutput extends ListEventSourceMap
|
|
|
55
130
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
131
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
57
132
|
*
|
|
133
|
+
* @throws {@link LambdaServiceException}
|
|
134
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
58
135
|
*
|
|
59
136
|
*/
|
|
60
137
|
export declare class ListEventSourceMappingsCommand extends $Command<ListEventSourceMappingsCommandInput, ListEventSourceMappingsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -34,6 +34,26 @@ export interface ListFunctionEventInvokeConfigsCommandOutput extends ListFunctio
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListFunctionEventInvokeConfigsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListFunctionEventInvokeConfigsResponse
|
|
38
|
+
* // FunctionEventInvokeConfigs: [ // FunctionEventInvokeConfigList
|
|
39
|
+
* // { // FunctionEventInvokeConfig
|
|
40
|
+
* // LastModified: new Date("TIMESTAMP"),
|
|
41
|
+
* // FunctionArn: "STRING_VALUE",
|
|
42
|
+
* // MaximumRetryAttempts: Number("int"),
|
|
43
|
+
* // MaximumEventAgeInSeconds: Number("int"),
|
|
44
|
+
* // DestinationConfig: { // DestinationConfig
|
|
45
|
+
* // OnSuccess: { // OnSuccess
|
|
46
|
+
* // Destination: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // OnFailure: { // OnFailure
|
|
49
|
+
* // Destination: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // NextMarker: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
37
57
|
* ```
|
|
38
58
|
*
|
|
39
59
|
* @param ListFunctionEventInvokeConfigsCommandInput - {@link ListFunctionEventInvokeConfigsCommandInput}
|
|
@@ -54,6 +74,8 @@ export interface ListFunctionEventInvokeConfigsCommandOutput extends ListFunctio
|
|
|
54
74
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
75
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
56
76
|
*
|
|
77
|
+
* @throws {@link LambdaServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
57
79
|
*
|
|
58
80
|
*/
|
|
59
81
|
export declare class ListFunctionEventInvokeConfigsCommand extends $Command<ListFunctionEventInvokeConfigsCommandInput, ListFunctionEventInvokeConfigsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -33,6 +33,36 @@ export interface ListFunctionUrlConfigsCommandOutput extends ListFunctionUrlConf
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListFunctionUrlConfigsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListFunctionUrlConfigsResponse
|
|
37
|
+
* // FunctionUrlConfigs: [ // FunctionUrlConfigList // required
|
|
38
|
+
* // { // FunctionUrlConfig
|
|
39
|
+
* // FunctionUrl: "STRING_VALUE", // required
|
|
40
|
+
* // FunctionArn: "STRING_VALUE", // required
|
|
41
|
+
* // CreationTime: "STRING_VALUE", // required
|
|
42
|
+
* // LastModifiedTime: "STRING_VALUE", // required
|
|
43
|
+
* // Cors: { // Cors
|
|
44
|
+
* // AllowCredentials: true || false,
|
|
45
|
+
* // AllowHeaders: [ // HeadersList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // AllowMethods: [ // AllowMethodsList
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // AllowOrigins: [ // AllowOriginsList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // ExposeHeaders: [
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // MaxAge: Number("int"),
|
|
58
|
+
* // },
|
|
59
|
+
* // AuthType: "NONE" || "AWS_IAM", // required
|
|
60
|
+
* // InvokeMode: "BUFFERED" || "RESPONSE_STREAM",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // NextMarker: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
36
66
|
* ```
|
|
37
67
|
*
|
|
38
68
|
* @param ListFunctionUrlConfigsCommandInput - {@link ListFunctionUrlConfigsCommandInput}
|
|
@@ -53,6 +83,8 @@ export interface ListFunctionUrlConfigsCommandOutput extends ListFunctionUrlConf
|
|
|
53
83
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
54
84
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
55
85
|
*
|
|
86
|
+
* @throws {@link LambdaServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
56
88
|
*
|
|
57
89
|
*/
|
|
58
90
|
export declare class ListFunctionUrlConfigsCommand extends $Command<ListFunctionUrlConfigsCommandInput, ListFunctionUrlConfigsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -34,6 +34,13 @@ export interface ListFunctionsByCodeSigningConfigCommandOutput extends ListFunct
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListFunctionsByCodeSigningConfigCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListFunctionsByCodeSigningConfigResponse
|
|
38
|
+
* // NextMarker: "STRING_VALUE",
|
|
39
|
+
* // FunctionArns: [ // FunctionArnList
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
37
44
|
* ```
|
|
38
45
|
*
|
|
39
46
|
* @param ListFunctionsByCodeSigningConfigCommandInput - {@link ListFunctionsByCodeSigningConfigCommandInput}
|
|
@@ -51,6 +58,8 @@ export interface ListFunctionsByCodeSigningConfigCommandOutput extends ListFunct
|
|
|
51
58
|
* @throws {@link ServiceException} (server fault)
|
|
52
59
|
* <p>The Lambda service encountered an internal error.</p>
|
|
53
60
|
*
|
|
61
|
+
* @throws {@link LambdaServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
54
63
|
*
|
|
55
64
|
*/
|
|
56
65
|
export declare class ListFunctionsByCodeSigningConfigCommand extends $Command<ListFunctionsByCodeSigningConfigCommandInput, ListFunctionsByCodeSigningConfigCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -42,6 +42,108 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new ListFunctionsCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // ListFunctionsResponse
|
|
46
|
+
* // NextMarker: "STRING_VALUE",
|
|
47
|
+
* // Functions: [ // FunctionList
|
|
48
|
+
* // { // FunctionConfiguration
|
|
49
|
+
* // FunctionName: "STRING_VALUE",
|
|
50
|
+
* // FunctionArn: "STRING_VALUE",
|
|
51
|
+
* // Runtime: "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17",
|
|
52
|
+
* // Role: "STRING_VALUE",
|
|
53
|
+
* // Handler: "STRING_VALUE",
|
|
54
|
+
* // CodeSize: Number("long"),
|
|
55
|
+
* // Description: "STRING_VALUE",
|
|
56
|
+
* // Timeout: Number("int"),
|
|
57
|
+
* // MemorySize: Number("int"),
|
|
58
|
+
* // LastModified: "STRING_VALUE",
|
|
59
|
+
* // CodeSha256: "STRING_VALUE",
|
|
60
|
+
* // Version: "STRING_VALUE",
|
|
61
|
+
* // VpcConfig: { // VpcConfigResponse
|
|
62
|
+
* // SubnetIds: [ // SubnetIds
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // SecurityGroupIds: [ // SecurityGroupIds
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // VpcId: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // DeadLetterConfig: { // DeadLetterConfig
|
|
71
|
+
* // TargetArn: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // Environment: { // EnvironmentResponse
|
|
74
|
+
* // Variables: { // EnvironmentVariables
|
|
75
|
+
* // "<keys>": "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // Error: { // EnvironmentError
|
|
78
|
+
* // ErrorCode: "STRING_VALUE",
|
|
79
|
+
* // Message: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // KMSKeyArn: "STRING_VALUE",
|
|
83
|
+
* // TracingConfig: { // TracingConfigResponse
|
|
84
|
+
* // Mode: "Active" || "PassThrough",
|
|
85
|
+
* // },
|
|
86
|
+
* // MasterArn: "STRING_VALUE",
|
|
87
|
+
* // RevisionId: "STRING_VALUE",
|
|
88
|
+
* // Layers: [ // LayersReferenceList
|
|
89
|
+
* // { // Layer
|
|
90
|
+
* // Arn: "STRING_VALUE",
|
|
91
|
+
* // CodeSize: Number("long"),
|
|
92
|
+
* // SigningProfileVersionArn: "STRING_VALUE",
|
|
93
|
+
* // SigningJobArn: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // State: "Pending" || "Active" || "Inactive" || "Failed",
|
|
97
|
+
* // StateReason: "STRING_VALUE",
|
|
98
|
+
* // StateReasonCode: "Idle" || "Creating" || "Restoring" || "EniLimitExceeded" || "InsufficientRolePermissions" || "InvalidConfiguration" || "InternalError" || "SubnetOutOfIPAddresses" || "InvalidSubnet" || "InvalidSecurityGroup" || "ImageDeleted" || "ImageAccessDenied" || "InvalidImage" || "KMSKeyAccessDenied" || "KMSKeyNotFound" || "InvalidStateKMSKey" || "DisabledKMSKey" || "EFSIOError" || "EFSMountConnectivityError" || "EFSMountFailure" || "EFSMountTimeout" || "InvalidRuntime" || "InvalidZipFileException" || "FunctionError",
|
|
99
|
+
* // LastUpdateStatus: "Successful" || "Failed" || "InProgress",
|
|
100
|
+
* // LastUpdateStatusReason: "STRING_VALUE",
|
|
101
|
+
* // LastUpdateStatusReasonCode: "EniLimitExceeded" || "InsufficientRolePermissions" || "InvalidConfiguration" || "InternalError" || "SubnetOutOfIPAddresses" || "InvalidSubnet" || "InvalidSecurityGroup" || "ImageDeleted" || "ImageAccessDenied" || "InvalidImage" || "KMSKeyAccessDenied" || "KMSKeyNotFound" || "InvalidStateKMSKey" || "DisabledKMSKey" || "EFSIOError" || "EFSMountConnectivityError" || "EFSMountFailure" || "EFSMountTimeout" || "InvalidRuntime" || "InvalidZipFileException" || "FunctionError",
|
|
102
|
+
* // FileSystemConfigs: [ // FileSystemConfigList
|
|
103
|
+
* // { // FileSystemConfig
|
|
104
|
+
* // Arn: "STRING_VALUE", // required
|
|
105
|
+
* // LocalMountPath: "STRING_VALUE", // required
|
|
106
|
+
* // },
|
|
107
|
+
* // ],
|
|
108
|
+
* // PackageType: "Zip" || "Image",
|
|
109
|
+
* // ImageConfigResponse: { // ImageConfigResponse
|
|
110
|
+
* // ImageConfig: { // ImageConfig
|
|
111
|
+
* // EntryPoint: [ // StringList
|
|
112
|
+
* // "STRING_VALUE",
|
|
113
|
+
* // ],
|
|
114
|
+
* // Command: [
|
|
115
|
+
* // "STRING_VALUE",
|
|
116
|
+
* // ],
|
|
117
|
+
* // WorkingDirectory: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // Error: { // ImageConfigError
|
|
120
|
+
* // ErrorCode: "STRING_VALUE",
|
|
121
|
+
* // Message: "STRING_VALUE",
|
|
122
|
+
* // },
|
|
123
|
+
* // },
|
|
124
|
+
* // SigningProfileVersionArn: "STRING_VALUE",
|
|
125
|
+
* // SigningJobArn: "STRING_VALUE",
|
|
126
|
+
* // Architectures: [ // ArchitecturesList
|
|
127
|
+
* // "x86_64" || "arm64",
|
|
128
|
+
* // ],
|
|
129
|
+
* // EphemeralStorage: { // EphemeralStorage
|
|
130
|
+
* // Size: Number("int"), // required
|
|
131
|
+
* // },
|
|
132
|
+
* // SnapStart: { // SnapStartResponse
|
|
133
|
+
* // ApplyOn: "PublishedVersions" || "None",
|
|
134
|
+
* // OptimizationStatus: "On" || "Off",
|
|
135
|
+
* // },
|
|
136
|
+
* // RuntimeVersionConfig: { // RuntimeVersionConfig
|
|
137
|
+
* // RuntimeVersionArn: "STRING_VALUE",
|
|
138
|
+
* // Error: { // RuntimeVersionError
|
|
139
|
+
* // ErrorCode: "STRING_VALUE",
|
|
140
|
+
* // Message: "STRING_VALUE",
|
|
141
|
+
* // },
|
|
142
|
+
* // },
|
|
143
|
+
* // },
|
|
144
|
+
* // ],
|
|
145
|
+
* // };
|
|
146
|
+
*
|
|
45
147
|
* ```
|
|
46
148
|
*
|
|
47
149
|
* @param ListFunctionsCommandInput - {@link ListFunctionsCommandInput}
|
|
@@ -59,6 +161,8 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met
|
|
|
59
161
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
60
162
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
61
163
|
*
|
|
164
|
+
* @throws {@link LambdaServiceException}
|
|
165
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
62
166
|
*
|
|
63
167
|
*/
|
|
64
168
|
export declare class ListFunctionsCommand extends $Command<ListFunctionsCommandInput, ListFunctionsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -38,6 +38,25 @@ export interface ListLayerVersionsCommandOutput extends ListLayerVersionsRespons
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListLayerVersionsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListLayerVersionsResponse
|
|
42
|
+
* // NextMarker: "STRING_VALUE",
|
|
43
|
+
* // LayerVersions: [ // LayerVersionsList
|
|
44
|
+
* // { // LayerVersionsListItem
|
|
45
|
+
* // LayerVersionArn: "STRING_VALUE",
|
|
46
|
+
* // Version: Number("long"),
|
|
47
|
+
* // Description: "STRING_VALUE",
|
|
48
|
+
* // CreatedDate: "STRING_VALUE",
|
|
49
|
+
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
50
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17",
|
|
51
|
+
* // ],
|
|
52
|
+
* // LicenseInfo: "STRING_VALUE",
|
|
53
|
+
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
54
|
+
* // "x86_64" || "arm64",
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
41
60
|
* ```
|
|
42
61
|
*
|
|
43
62
|
* @param ListLayerVersionsCommandInput - {@link ListLayerVersionsCommandInput}
|
|
@@ -58,6 +77,8 @@ export interface ListLayerVersionsCommandOutput extends ListLayerVersionsRespons
|
|
|
58
77
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
59
78
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
60
79
|
*
|
|
80
|
+
* @throws {@link LambdaServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
61
82
|
*
|
|
62
83
|
*/
|
|
63
84
|
export declare class ListLayerVersionsCommand extends $Command<ListLayerVersionsCommandInput, ListLayerVersionsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -39,6 +39,29 @@ export interface ListLayersCommandOutput extends ListLayersResponse, __MetadataB
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListLayersCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListLayersResponse
|
|
43
|
+
* // NextMarker: "STRING_VALUE",
|
|
44
|
+
* // Layers: [ // LayersList
|
|
45
|
+
* // { // LayersListItem
|
|
46
|
+
* // LayerName: "STRING_VALUE",
|
|
47
|
+
* // LayerArn: "STRING_VALUE",
|
|
48
|
+
* // LatestMatchingVersion: { // LayerVersionsListItem
|
|
49
|
+
* // LayerVersionArn: "STRING_VALUE",
|
|
50
|
+
* // Version: Number("long"),
|
|
51
|
+
* // Description: "STRING_VALUE",
|
|
52
|
+
* // CreatedDate: "STRING_VALUE",
|
|
53
|
+
* // CompatibleRuntimes: [ // CompatibleRuntimes
|
|
54
|
+
* // "nodejs" || "nodejs4.3" || "nodejs6.10" || "nodejs8.10" || "nodejs10.x" || "nodejs12.x" || "nodejs14.x" || "nodejs16.x" || "java8" || "java8.al2" || "java11" || "python2.7" || "python3.6" || "python3.7" || "python3.8" || "python3.9" || "dotnetcore1.0" || "dotnetcore2.0" || "dotnetcore2.1" || "dotnetcore3.1" || "dotnet6" || "nodejs4.3-edge" || "go1.x" || "ruby2.5" || "ruby2.7" || "provided" || "provided.al2" || "nodejs18.x" || "python3.10" || "java17",
|
|
55
|
+
* // ],
|
|
56
|
+
* // LicenseInfo: "STRING_VALUE",
|
|
57
|
+
* // CompatibleArchitectures: [ // CompatibleArchitectures
|
|
58
|
+
* // "x86_64" || "arm64",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
42
65
|
* ```
|
|
43
66
|
*
|
|
44
67
|
* @param ListLayersCommandInput - {@link ListLayersCommandInput}
|
|
@@ -56,6 +79,8 @@ export interface ListLayersCommandOutput extends ListLayersResponse, __MetadataB
|
|
|
56
79
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
80
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
58
81
|
*
|
|
82
|
+
* @throws {@link LambdaServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
59
84
|
*
|
|
60
85
|
*/
|
|
61
86
|
export declare class ListLayersCommand extends $Command<ListLayersCommandInput, ListLayersCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListProvisionedConcurrencyConfigsCommandOutput extends ListProv
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListProvisionedConcurrencyConfigsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListProvisionedConcurrencyConfigsResponse
|
|
37
|
+
* // ProvisionedConcurrencyConfigs: [ // ProvisionedConcurrencyConfigList
|
|
38
|
+
* // { // ProvisionedConcurrencyConfigListItem
|
|
39
|
+
* // FunctionArn: "STRING_VALUE",
|
|
40
|
+
* // RequestedProvisionedConcurrentExecutions: Number("int"),
|
|
41
|
+
* // AvailableProvisionedConcurrentExecutions: Number("int"),
|
|
42
|
+
* // AllocatedProvisionedConcurrentExecutions: Number("int"),
|
|
43
|
+
* // Status: "IN_PROGRESS" || "READY" || "FAILED",
|
|
44
|
+
* // StatusReason: "STRING_VALUE",
|
|
45
|
+
* // LastModified: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextMarker: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListProvisionedConcurrencyConfigsCommandInput - {@link ListProvisionedConcurrencyConfigsCommandInput}
|
|
@@ -53,6 +68,8 @@ export interface ListProvisionedConcurrencyConfigsCommandOutput extends ListProv
|
|
|
53
68
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
54
69
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
55
70
|
*
|
|
71
|
+
* @throws {@link LambdaServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
56
73
|
*
|
|
57
74
|
*/
|
|
58
75
|
export declare class ListProvisionedConcurrencyConfigsCommand extends $Command<ListProvisionedConcurrencyConfigsCommandInput, ListProvisionedConcurrencyConfigsCommandOutput, LambdaClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListTagsResponse
|
|
36
|
+
* // Tags: { // Tags
|
|
37
|
+
* // "<keys>": "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param ListTagsCommandInput - {@link ListTagsCommandInput}
|
|
@@ -52,6 +58,8 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
52
58
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
53
59
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
54
60
|
*
|
|
61
|
+
* @throws {@link LambdaServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Lambda service.</p>
|
|
55
63
|
*
|
|
56
64
|
*/
|
|
57
65
|
export declare class ListTagsCommand extends $Command<ListTagsCommandInput, ListTagsCommandOutput, LambdaClientResolvedConfig> {
|