@aws-sdk/client-lambda 3.300.0 → 3.301.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 +1 -1
- package/dist-types/commands/AddPermissionCommand.d.ts +1 -1
- package/dist-types/commands/CreateAliasCommand.d.ts +3 -3
- package/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +4 -4
- package/dist-types/commands/CreateEventSourceMappingCommand.d.ts +19 -19
- package/dist-types/commands/CreateFunctionCommand.d.ts +18 -18
- package/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +5 -5
- package/dist-types/commands/DeleteAliasCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFunctionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLayerVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetAliasCommand.d.ts +1 -1
- package/dist-types/commands/GetCodeSigningConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetEventSourceMappingCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
- package/dist-types/commands/InvokeAsyncCommand.d.ts +1 -1
- package/dist-types/commands/InvokeCommand.d.ts +1 -1
- package/dist-types/commands/ListAliasesCommand.d.ts +1 -1
- package/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListEventSourceMappingsCommand.d.ts +1 -1
- package/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +1 -1
- package/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLayersCommand.d.ts +1 -1
- package/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -1
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +4 -4
- package/dist-types/commands/PublishVersionCommand.d.ts +1 -1
- package/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +1 -1
- package/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +1 -1
- package/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +4 -4
- package/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +1 -1
- package/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +1 -1
- package/dist-types/commands/RemovePermissionCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAliasCommand.d.ts +3 -3
- package/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +12 -12
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +15 -15
- package/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +4 -4
- package/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +5 -5
- package/package.json +3 -3
|
@@ -31,7 +31,7 @@ export interface AddLayerVersionPermissionCommandOutput extends AddLayerVersionP
|
|
|
31
31
|
* import { LambdaClient, AddLayerVersionPermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
32
32
|
* // const { LambdaClient, AddLayerVersionPermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
33
33
|
* const client = new LambdaClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // AddLayerVersionPermissionRequest
|
|
35
35
|
* LayerName: "STRING_VALUE", // required
|
|
36
36
|
* VersionNumber: Number("long"), // required
|
|
37
37
|
* StatementId: "STRING_VALUE", // required
|
|
@@ -38,7 +38,7 @@ export interface AddPermissionCommandOutput extends AddPermissionResponse, __Met
|
|
|
38
38
|
* import { LambdaClient, AddPermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
39
39
|
* // const { LambdaClient, AddPermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
40
40
|
* const client = new LambdaClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // AddPermissionRequest
|
|
42
42
|
* FunctionName: "STRING_VALUE", // required
|
|
43
43
|
* StatementId: "STRING_VALUE", // required
|
|
44
44
|
* Action: "STRING_VALUE", // required
|
|
@@ -31,13 +31,13 @@ export interface CreateAliasCommandOutput extends AliasConfiguration, __Metadata
|
|
|
31
31
|
* import { LambdaClient, CreateAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
32
32
|
* // const { LambdaClient, CreateAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
33
33
|
* const client = new LambdaClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateAliasRequest
|
|
35
35
|
* FunctionName: "STRING_VALUE", // required
|
|
36
36
|
* Name: "STRING_VALUE", // required
|
|
37
37
|
* FunctionVersion: "STRING_VALUE", // required
|
|
38
38
|
* Description: "STRING_VALUE",
|
|
39
|
-
* RoutingConfig: {
|
|
40
|
-
* AdditionalVersionWeights: {
|
|
39
|
+
* RoutingConfig: { // AliasRoutingConfiguration
|
|
40
|
+
* AdditionalVersionWeights: { // AdditionalVersionWeights
|
|
41
41
|
* "<keys>": Number("double"),
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
@@ -28,14 +28,14 @@ export interface CreateCodeSigningConfigCommandOutput extends CreateCodeSigningC
|
|
|
28
28
|
* import { LambdaClient, CreateCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, CreateCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateCodeSigningConfigRequest
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
|
-
* AllowedPublishers: {
|
|
34
|
-
* SigningProfileVersionArns: [ // required
|
|
33
|
+
* AllowedPublishers: { // AllowedPublishers
|
|
34
|
+
* SigningProfileVersionArns: [ // SigningProfileVersionArns // required
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* },
|
|
38
|
-
* CodeSigningPolicies: {
|
|
38
|
+
* CodeSigningPolicies: { // CodeSigningPolicies
|
|
39
39
|
* UntrustedArtifactOnDeployment: "Warn" || "Enforce",
|
|
40
40
|
* },
|
|
41
41
|
* };
|
|
@@ -127,14 +127,14 @@ export interface CreateEventSourceMappingCommandOutput extends EventSourceMappin
|
|
|
127
127
|
* import { LambdaClient, CreateEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
128
128
|
* // const { LambdaClient, CreateEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
129
129
|
* const client = new LambdaClient(config);
|
|
130
|
-
* const input = {
|
|
130
|
+
* const input = { // CreateEventSourceMappingRequest
|
|
131
131
|
* EventSourceArn: "STRING_VALUE",
|
|
132
132
|
* FunctionName: "STRING_VALUE", // required
|
|
133
133
|
* Enabled: true || false,
|
|
134
134
|
* BatchSize: Number("int"),
|
|
135
|
-
* FilterCriteria: {
|
|
136
|
-
* Filters: [
|
|
137
|
-
* {
|
|
135
|
+
* FilterCriteria: { // FilterCriteria
|
|
136
|
+
* Filters: [ // FilterList
|
|
137
|
+
* { // Filter
|
|
138
138
|
* Pattern: "STRING_VALUE",
|
|
139
139
|
* },
|
|
140
140
|
* ],
|
|
@@ -143,11 +143,11 @@ export interface CreateEventSourceMappingCommandOutput extends EventSourceMappin
|
|
|
143
143
|
* ParallelizationFactor: Number("int"),
|
|
144
144
|
* StartingPosition: "TRIM_HORIZON" || "LATEST" || "AT_TIMESTAMP",
|
|
145
145
|
* StartingPositionTimestamp: new Date("TIMESTAMP"),
|
|
146
|
-
* DestinationConfig: {
|
|
147
|
-
* OnSuccess: {
|
|
146
|
+
* DestinationConfig: { // DestinationConfig
|
|
147
|
+
* OnSuccess: { // OnSuccess
|
|
148
148
|
* Destination: "STRING_VALUE",
|
|
149
149
|
* },
|
|
150
|
-
* OnFailure: {
|
|
150
|
+
* OnFailure: { // OnFailure
|
|
151
151
|
* Destination: "STRING_VALUE",
|
|
152
152
|
* },
|
|
153
153
|
* },
|
|
@@ -155,38 +155,38 @@ export interface CreateEventSourceMappingCommandOutput extends EventSourceMappin
|
|
|
155
155
|
* BisectBatchOnFunctionError: true || false,
|
|
156
156
|
* MaximumRetryAttempts: Number("int"),
|
|
157
157
|
* TumblingWindowInSeconds: Number("int"),
|
|
158
|
-
* Topics: [
|
|
158
|
+
* Topics: [ // Topics
|
|
159
159
|
* "STRING_VALUE",
|
|
160
160
|
* ],
|
|
161
|
-
* Queues: [
|
|
161
|
+
* Queues: [ // Queues
|
|
162
162
|
* "STRING_VALUE",
|
|
163
163
|
* ],
|
|
164
|
-
* SourceAccessConfigurations: [
|
|
165
|
-
* {
|
|
164
|
+
* SourceAccessConfigurations: [ // SourceAccessConfigurations
|
|
165
|
+
* { // SourceAccessConfiguration
|
|
166
166
|
* 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",
|
|
167
167
|
* URI: "STRING_VALUE",
|
|
168
168
|
* },
|
|
169
169
|
* ],
|
|
170
|
-
* SelfManagedEventSource: {
|
|
171
|
-
* Endpoints: {
|
|
172
|
-
* "<keys>": [
|
|
170
|
+
* SelfManagedEventSource: { // SelfManagedEventSource
|
|
171
|
+
* Endpoints: { // Endpoints
|
|
172
|
+
* "<keys>": [ // EndpointLists
|
|
173
173
|
* "STRING_VALUE",
|
|
174
174
|
* ],
|
|
175
175
|
* },
|
|
176
176
|
* },
|
|
177
|
-
* FunctionResponseTypes: [
|
|
177
|
+
* FunctionResponseTypes: [ // FunctionResponseTypeList
|
|
178
178
|
* "ReportBatchItemFailures",
|
|
179
179
|
* ],
|
|
180
|
-
* AmazonManagedKafkaEventSourceConfig: {
|
|
180
|
+
* AmazonManagedKafkaEventSourceConfig: { // AmazonManagedKafkaEventSourceConfig
|
|
181
181
|
* ConsumerGroupId: "STRING_VALUE",
|
|
182
182
|
* },
|
|
183
|
-
* SelfManagedKafkaEventSourceConfig: {
|
|
183
|
+
* SelfManagedKafkaEventSourceConfig: { // SelfManagedKafkaEventSourceConfig
|
|
184
184
|
* ConsumerGroupId: "STRING_VALUE",
|
|
185
185
|
* },
|
|
186
|
-
* ScalingConfig: {
|
|
186
|
+
* ScalingConfig: { // ScalingConfig
|
|
187
187
|
* MaximumConcurrency: Number("int"),
|
|
188
188
|
* },
|
|
189
|
-
* DocumentDBEventSourceConfig: {
|
|
189
|
+
* DocumentDBEventSourceConfig: { // DocumentDBEventSourceConfig
|
|
190
190
|
* DatabaseName: "STRING_VALUE",
|
|
191
191
|
* CollectionName: "STRING_VALUE",
|
|
192
192
|
* FullDocument: "UpdateLookup" || "Default",
|
|
@@ -63,12 +63,12 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
|
|
|
63
63
|
* import { LambdaClient, CreateFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
64
64
|
* // const { LambdaClient, CreateFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
65
65
|
* const client = new LambdaClient(config);
|
|
66
|
-
* const input = {
|
|
66
|
+
* const input = { // CreateFunctionRequest
|
|
67
67
|
* FunctionName: "STRING_VALUE", // required
|
|
68
68
|
* 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",
|
|
69
69
|
* Role: "STRING_VALUE", // required
|
|
70
70
|
* Handler: "STRING_VALUE",
|
|
71
|
-
* Code: {
|
|
71
|
+
* Code: { // FunctionCode
|
|
72
72
|
* ZipFile: "BLOB_VALUE",
|
|
73
73
|
* S3Bucket: "STRING_VALUE",
|
|
74
74
|
* S3Key: "STRING_VALUE",
|
|
@@ -79,41 +79,41 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
|
|
|
79
79
|
* Timeout: Number("int"),
|
|
80
80
|
* MemorySize: Number("int"),
|
|
81
81
|
* Publish: true || false,
|
|
82
|
-
* VpcConfig: {
|
|
83
|
-
* SubnetIds: [
|
|
82
|
+
* VpcConfig: { // VpcConfig
|
|
83
|
+
* SubnetIds: [ // SubnetIds
|
|
84
84
|
* "STRING_VALUE",
|
|
85
85
|
* ],
|
|
86
|
-
* SecurityGroupIds: [
|
|
86
|
+
* SecurityGroupIds: [ // SecurityGroupIds
|
|
87
87
|
* "STRING_VALUE",
|
|
88
88
|
* ],
|
|
89
89
|
* },
|
|
90
90
|
* PackageType: "Zip" || "Image",
|
|
91
|
-
* DeadLetterConfig: {
|
|
91
|
+
* DeadLetterConfig: { // DeadLetterConfig
|
|
92
92
|
* TargetArn: "STRING_VALUE",
|
|
93
93
|
* },
|
|
94
|
-
* Environment: {
|
|
95
|
-
* Variables: {
|
|
94
|
+
* Environment: { // Environment
|
|
95
|
+
* Variables: { // EnvironmentVariables
|
|
96
96
|
* "<keys>": "STRING_VALUE",
|
|
97
97
|
* },
|
|
98
98
|
* },
|
|
99
99
|
* KMSKeyArn: "STRING_VALUE",
|
|
100
|
-
* TracingConfig: {
|
|
100
|
+
* TracingConfig: { // TracingConfig
|
|
101
101
|
* Mode: "Active" || "PassThrough",
|
|
102
102
|
* },
|
|
103
|
-
* Tags: {
|
|
103
|
+
* Tags: { // Tags
|
|
104
104
|
* "<keys>": "STRING_VALUE",
|
|
105
105
|
* },
|
|
106
|
-
* Layers: [
|
|
106
|
+
* Layers: [ // LayerList
|
|
107
107
|
* "STRING_VALUE",
|
|
108
108
|
* ],
|
|
109
|
-
* FileSystemConfigs: [
|
|
110
|
-
* {
|
|
109
|
+
* FileSystemConfigs: [ // FileSystemConfigList
|
|
110
|
+
* { // FileSystemConfig
|
|
111
111
|
* Arn: "STRING_VALUE", // required
|
|
112
112
|
* LocalMountPath: "STRING_VALUE", // required
|
|
113
113
|
* },
|
|
114
114
|
* ],
|
|
115
|
-
* ImageConfig: {
|
|
116
|
-
* EntryPoint: [
|
|
115
|
+
* ImageConfig: { // ImageConfig
|
|
116
|
+
* EntryPoint: [ // StringList
|
|
117
117
|
* "STRING_VALUE",
|
|
118
118
|
* ],
|
|
119
119
|
* Command: [
|
|
@@ -122,13 +122,13 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
|
|
|
122
122
|
* WorkingDirectory: "STRING_VALUE",
|
|
123
123
|
* },
|
|
124
124
|
* CodeSigningConfigArn: "STRING_VALUE",
|
|
125
|
-
* Architectures: [
|
|
125
|
+
* Architectures: [ // ArchitecturesList
|
|
126
126
|
* "x86_64" || "arm64",
|
|
127
127
|
* ],
|
|
128
|
-
* EphemeralStorage: {
|
|
128
|
+
* EphemeralStorage: { // EphemeralStorage
|
|
129
129
|
* Size: Number("int"), // required
|
|
130
130
|
* },
|
|
131
|
-
* SnapStart: {
|
|
131
|
+
* SnapStart: { // SnapStart
|
|
132
132
|
* ApplyOn: "PublishedVersions" || "None",
|
|
133
133
|
* },
|
|
134
134
|
* };
|
|
@@ -27,19 +27,19 @@ export interface CreateFunctionUrlConfigCommandOutput extends CreateFunctionUrlC
|
|
|
27
27
|
* import { LambdaClient, CreateFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, CreateFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateFunctionUrlConfigRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Qualifier: "STRING_VALUE",
|
|
33
33
|
* AuthType: "NONE" || "AWS_IAM", // required
|
|
34
|
-
* Cors: {
|
|
34
|
+
* Cors: { // Cors
|
|
35
35
|
* AllowCredentials: true || false,
|
|
36
|
-
* AllowHeaders: [
|
|
36
|
+
* AllowHeaders: [ // HeadersList
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* AllowMethods: [
|
|
39
|
+
* AllowMethods: [ // AllowMethodsList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* AllowOrigins: [
|
|
42
|
+
* AllowOrigins: [ // AllowOriginsList
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* ExposeHeaders: [
|
|
@@ -26,7 +26,7 @@ export interface DeleteAliasCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { LambdaClient, DeleteAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, DeleteAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteAliasRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DeleteCodeSigningConfigCommandOutput extends DeleteCodeSigningC
|
|
|
27
27
|
* import { LambdaClient, DeleteCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, DeleteCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteCodeSigningConfigRequest
|
|
31
31
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteCodeSigningConfigCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DeleteEventSourceMappingCommandOutput extends EventSourceMappin
|
|
|
29
29
|
* import { LambdaClient, DeleteEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
30
30
|
* // const { LambdaClient, DeleteEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
31
31
|
* const client = new LambdaClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteEventSourceMappingRequest
|
|
33
33
|
* UUID: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteEventSourceMappingCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteFunctionCodeSigningConfigCommandOutput extends __Metadata
|
|
|
26
26
|
* import { LambdaClient, DeleteFunctionCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, DeleteFunctionCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteFunctionCodeSigningConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteFunctionCodeSigningConfigCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DeleteFunctionCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { LambdaClient, DeleteFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
30
30
|
* // const { LambdaClient, DeleteFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
31
31
|
* const client = new LambdaClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteFunctionRequest
|
|
33
33
|
* FunctionName: "STRING_VALUE", // required
|
|
34
34
|
* Qualifier: "STRING_VALUE",
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteFunctionConcurrencyCommandOutput extends __MetadataBearer
|
|
|
26
26
|
* import { LambdaClient, DeleteFunctionConcurrencyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, DeleteFunctionConcurrencyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteFunctionConcurrencyRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteFunctionConcurrencyCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteFunctionEventInvokeConfigCommandOutput extends __Metadata
|
|
|
27
27
|
* import { LambdaClient, DeleteFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, DeleteFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteFunctionEventInvokeConfigRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Qualifier: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DeleteFunctionUrlConfigCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { LambdaClient, DeleteFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, DeleteFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteFunctionUrlConfigRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Qualifier: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DeleteLayerVersionCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { LambdaClient, DeleteLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, DeleteLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteLayerVersionRequest
|
|
32
32
|
* LayerName: "STRING_VALUE", // required
|
|
33
33
|
* VersionNumber: Number("long"), // required
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteProvisionedConcurrencyConfigCommandOutput extends __Metad
|
|
|
26
26
|
* import { LambdaClient, DeleteProvisionedConcurrencyConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, DeleteProvisionedConcurrencyConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteProvisionedConcurrencyConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Qualifier: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetAliasCommandOutput extends AliasConfiguration, __MetadataBea
|
|
|
26
26
|
* import { LambdaClient, GetAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, GetAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetAliasRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetCodeSigningConfigCommandOutput extends GetCodeSigningConfigR
|
|
|
26
26
|
* import { LambdaClient, GetCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, GetCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetCodeSigningConfigRequest
|
|
30
30
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetCodeSigningConfigCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetEventSourceMappingCommandOutput extends EventSourceMappingCo
|
|
|
27
27
|
* import { LambdaClient, GetEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, GetEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetEventSourceMappingRequest
|
|
31
31
|
* UUID: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetEventSourceMappingCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetFunctionCodeSigningConfigCommandOutput extends GetFunctionCo
|
|
|
26
26
|
* import { LambdaClient, GetFunctionCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, GetFunctionCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetFunctionCodeSigningConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetFunctionCodeSigningConfigCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat
|
|
|
28
28
|
* import { LambdaClient, GetFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, GetFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetFunctionRequest
|
|
32
32
|
* FunctionName: "STRING_VALUE", // required
|
|
33
33
|
* Qualifier: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetFunctionConcurrencyCommandOutput extends GetFunctionConcurre
|
|
|
27
27
|
* import { LambdaClient, GetFunctionConcurrencyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, GetFunctionConcurrencyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetFunctionConcurrencyRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetFunctionConcurrencyCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetFunctionConfigurationCommandOutput extends FunctionConfigura
|
|
|
28
28
|
* import { LambdaClient, GetFunctionConfigurationCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, GetFunctionConfigurationCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetFunctionConfigurationRequest
|
|
32
32
|
* FunctionName: "STRING_VALUE", // required
|
|
33
33
|
* Qualifier: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetFunctionEventInvokeConfigCommandOutput extends FunctionEvent
|
|
|
27
27
|
* import { LambdaClient, GetFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, GetFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetFunctionEventInvokeConfigRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Qualifier: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetFunctionUrlConfigCommandOutput extends GetFunctionUrlConfigR
|
|
|
26
26
|
* import { LambdaClient, GetFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, GetFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetFunctionUrlConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Qualifier: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -28,7 +28,7 @@ export interface GetLayerVersionByArnCommandOutput extends GetLayerVersionRespon
|
|
|
28
28
|
* import { LambdaClient, GetLayerVersionByArnCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, GetLayerVersionByArnCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetLayerVersionByArnRequest
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetLayerVersionByArnCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetLayerVersionCommandOutput extends GetLayerVersionResponse, _
|
|
|
28
28
|
* import { LambdaClient, GetLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, GetLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetLayerVersionRequest
|
|
32
32
|
* LayerName: "STRING_VALUE", // required
|
|
33
33
|
* VersionNumber: Number("long"), // required
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetLayerVersionPolicyCommandOutput extends GetLayerVersionPolic
|
|
|
27
27
|
* import { LambdaClient, GetLayerVersionPolicyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, GetLayerVersionPolicyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetLayerVersionPolicyRequest
|
|
31
31
|
* LayerName: "STRING_VALUE", // required
|
|
32
32
|
* VersionNumber: Number("long"), // required
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
26
26
|
* import { LambdaClient, GetPolicyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, GetPolicyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetPolicyRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Qualifier: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetProvisionedConcurrencyConfigCommandOutput extends GetProvisi
|
|
|
26
26
|
* import { LambdaClient, GetProvisionedConcurrencyConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, GetProvisionedConcurrencyConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetProvisionedConcurrencyConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Qualifier: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -28,7 +28,7 @@ export interface GetRuntimeManagementConfigCommandOutput extends GetRuntimeManag
|
|
|
28
28
|
* import { LambdaClient, GetRuntimeManagementConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, GetRuntimeManagementConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetRuntimeManagementConfigRequest
|
|
32
32
|
* FunctionName: "STRING_VALUE", // required
|
|
33
33
|
* Qualifier: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -41,7 +41,7 @@ export interface InvokeAsyncCommandOutput extends InvokeAsyncResponse, __Metadat
|
|
|
41
41
|
* import { LambdaClient, InvokeAsyncCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
42
42
|
* // const { LambdaClient, InvokeAsyncCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
43
43
|
* const client = new LambdaClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // InvokeAsyncRequest
|
|
45
45
|
* FunctionName: "STRING_VALUE", // required
|
|
46
46
|
* InvokeArgs: "STREAMING_BLOB_VALUE", // required
|
|
47
47
|
* };
|
|
@@ -50,7 +50,7 @@ export interface InvokeCommandOutput extends InvocationResponse, __MetadataBeare
|
|
|
50
50
|
* import { LambdaClient, InvokeCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
51
51
|
* // const { LambdaClient, InvokeCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
52
52
|
* const client = new LambdaClient(config);
|
|
53
|
-
* const input = {
|
|
53
|
+
* const input = { // InvocationRequest
|
|
54
54
|
* FunctionName: "STRING_VALUE", // required
|
|
55
55
|
* InvocationType: "Event" || "RequestResponse" || "DryRun",
|
|
56
56
|
* LogType: "None" || "Tail",
|
|
@@ -27,7 +27,7 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat
|
|
|
27
27
|
* import { LambdaClient, ListAliasesCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, ListAliasesCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListAliasesRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* FunctionVersion: "STRING_VALUE",
|
|
33
33
|
* Marker: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListCodeSigningConfigsCommandOutput extends ListCodeSigningConf
|
|
|
28
28
|
* import { LambdaClient, ListCodeSigningConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, ListCodeSigningConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListCodeSigningConfigsRequest
|
|
32
32
|
* Marker: "STRING_VALUE",
|
|
33
33
|
* MaxItems: Number("int"),
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListEventSourceMappingsCommandOutput extends ListEventSourceMap
|
|
|
27
27
|
* import { LambdaClient, ListEventSourceMappingsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, ListEventSourceMappingsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListEventSourceMappingsRequest
|
|
31
31
|
* EventSourceArn: "STRING_VALUE",
|
|
32
32
|
* FunctionName: "STRING_VALUE",
|
|
33
33
|
* Marker: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListFunctionEventInvokeConfigsCommandOutput extends ListFunctio
|
|
|
27
27
|
* import { LambdaClient, ListFunctionEventInvokeConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, ListFunctionEventInvokeConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListFunctionEventInvokeConfigsRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Marker: "STRING_VALUE",
|
|
33
33
|
* MaxItems: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListFunctionUrlConfigsCommandOutput extends ListFunctionUrlConf
|
|
|
26
26
|
* import { LambdaClient, ListFunctionUrlConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, ListFunctionUrlConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListFunctionUrlConfigsRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Marker: "STRING_VALUE",
|
|
32
32
|
* MaxItems: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListFunctionsByCodeSigningConfigCommandOutput extends ListFunct
|
|
|
27
27
|
* import { LambdaClient, ListFunctionsByCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, ListFunctionsByCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListFunctionsByCodeSigningConfigRequest
|
|
31
31
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
32
32
|
* Marker: "STRING_VALUE",
|
|
33
33
|
* MaxItems: Number("int"),
|
|
@@ -34,7 +34,7 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met
|
|
|
34
34
|
* import { LambdaClient, ListFunctionsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, ListFunctionsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
36
|
* const client = new LambdaClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // ListFunctionsRequest
|
|
38
38
|
* MasterRegion: "STRING_VALUE",
|
|
39
39
|
* FunctionVersion: "ALL",
|
|
40
40
|
* Marker: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface ListLayerVersionsCommandOutput extends ListLayerVersionsRespons
|
|
|
29
29
|
* import { LambdaClient, ListLayerVersionsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
30
30
|
* // const { LambdaClient, ListLayerVersionsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
31
31
|
* const client = new LambdaClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListLayerVersionsRequest
|
|
33
33
|
* CompatibleRuntime: "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",
|
|
34
34
|
* LayerName: "STRING_VALUE", // required
|
|
35
35
|
* Marker: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface ListLayersCommandOutput extends ListLayersResponse, __MetadataB
|
|
|
31
31
|
* import { LambdaClient, ListLayersCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
32
32
|
* // const { LambdaClient, ListLayersCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
33
33
|
* const client = new LambdaClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListLayersRequest
|
|
35
35
|
* CompatibleRuntime: "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",
|
|
36
36
|
* Marker: "STRING_VALUE",
|
|
37
37
|
* MaxItems: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListProvisionedConcurrencyConfigsCommandOutput extends ListProv
|
|
|
26
26
|
* import { LambdaClient, ListProvisionedConcurrencyConfigsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, ListProvisionedConcurrencyConfigsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListProvisionedConcurrencyConfigsRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Marker: "STRING_VALUE",
|
|
32
32
|
* MaxItems: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBeare
|
|
|
27
27
|
* import { LambdaClient, ListTagsCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, ListTagsCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsRequest
|
|
31
31
|
* Resource: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ListVersionsByFunctionCommandOutput extends ListVersionsByFunct
|
|
|
27
27
|
* import { LambdaClient, ListVersionsByFunctionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, ListVersionsByFunctionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListVersionsByFunctionRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Marker: "STRING_VALUE",
|
|
33
33
|
* MaxItems: Number("int"),
|
|
@@ -29,20 +29,20 @@ export interface PublishLayerVersionCommandOutput extends PublishLayerVersionRes
|
|
|
29
29
|
* import { LambdaClient, PublishLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
30
30
|
* // const { LambdaClient, PublishLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
31
31
|
* const client = new LambdaClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // PublishLayerVersionRequest
|
|
33
33
|
* LayerName: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* Content: {
|
|
35
|
+
* Content: { // LayerVersionContentInput
|
|
36
36
|
* S3Bucket: "STRING_VALUE",
|
|
37
37
|
* S3Key: "STRING_VALUE",
|
|
38
38
|
* S3ObjectVersion: "STRING_VALUE",
|
|
39
39
|
* ZipFile: "BLOB_VALUE",
|
|
40
40
|
* },
|
|
41
|
-
* CompatibleRuntimes: [
|
|
41
|
+
* CompatibleRuntimes: [ // CompatibleRuntimes
|
|
42
42
|
* "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",
|
|
43
43
|
* ],
|
|
44
44
|
* LicenseInfo: "STRING_VALUE",
|
|
45
|
-
* CompatibleArchitectures: [
|
|
45
|
+
* CompatibleArchitectures: [ // CompatibleArchitectures
|
|
46
46
|
* "x86_64" || "arm64",
|
|
47
47
|
* ],
|
|
48
48
|
* };
|
|
@@ -32,7 +32,7 @@ export interface PublishVersionCommandOutput extends FunctionConfiguration, __Me
|
|
|
32
32
|
* import { LambdaClient, PublishVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
33
33
|
* // const { LambdaClient, PublishVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
34
34
|
* const client = new LambdaClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // PublishVersionRequest
|
|
36
36
|
* FunctionName: "STRING_VALUE", // required
|
|
37
37
|
* CodeSha256: "STRING_VALUE",
|
|
38
38
|
* Description: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface PutFunctionCodeSigningConfigCommandOutput extends PutFunctionCo
|
|
|
27
27
|
* import { LambdaClient, PutFunctionCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, PutFunctionCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // PutFunctionCodeSigningConfigRequest
|
|
31
31
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
32
32
|
* FunctionName: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -34,7 +34,7 @@ export interface PutFunctionConcurrencyCommandOutput extends Concurrency, __Meta
|
|
|
34
34
|
* import { LambdaClient, PutFunctionConcurrencyCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
35
35
|
* // const { LambdaClient, PutFunctionConcurrencyCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
36
36
|
* const client = new LambdaClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // PutFunctionConcurrencyRequest
|
|
38
38
|
* FunctionName: "STRING_VALUE", // required
|
|
39
39
|
* ReservedConcurrentExecutions: Number("int"), // required
|
|
40
40
|
* };
|
|
@@ -36,16 +36,16 @@ export interface PutFunctionEventInvokeConfigCommandOutput extends FunctionEvent
|
|
|
36
36
|
* import { LambdaClient, PutFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
37
37
|
* // const { LambdaClient, PutFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
38
38
|
* const client = new LambdaClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // PutFunctionEventInvokeConfigRequest
|
|
40
40
|
* FunctionName: "STRING_VALUE", // required
|
|
41
41
|
* Qualifier: "STRING_VALUE",
|
|
42
42
|
* MaximumRetryAttempts: Number("int"),
|
|
43
43
|
* MaximumEventAgeInSeconds: Number("int"),
|
|
44
|
-
* DestinationConfig: {
|
|
45
|
-
* OnSuccess: {
|
|
44
|
+
* DestinationConfig: { // DestinationConfig
|
|
45
|
+
* OnSuccess: { // OnSuccess
|
|
46
46
|
* Destination: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
|
-
* OnFailure: {
|
|
48
|
+
* OnFailure: { // OnFailure
|
|
49
49
|
* Destination: "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
51
|
* },
|
|
@@ -26,7 +26,7 @@ export interface PutProvisionedConcurrencyConfigCommandOutput extends PutProvisi
|
|
|
26
26
|
* import { LambdaClient, PutProvisionedConcurrencyConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, PutProvisionedConcurrencyConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PutProvisionedConcurrencyConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Qualifier: "STRING_VALUE", // required
|
|
32
32
|
* ProvisionedConcurrentExecutions: Number("int"), // required
|
|
@@ -27,7 +27,7 @@ export interface PutRuntimeManagementConfigCommandOutput extends PutRuntimeManag
|
|
|
27
27
|
* import { LambdaClient, PutRuntimeManagementConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, PutRuntimeManagementConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // PutRuntimeManagementConfigRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Qualifier: "STRING_VALUE",
|
|
33
33
|
* UpdateRuntimeOn: "Auto" || "Manual" || "FunctionUpdate", // required
|
|
@@ -28,7 +28,7 @@ export interface RemoveLayerVersionPermissionCommandOutput extends __MetadataBea
|
|
|
28
28
|
* import { LambdaClient, RemoveLayerVersionPermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
29
29
|
* // const { LambdaClient, RemoveLayerVersionPermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
30
30
|
* const client = new LambdaClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // RemoveLayerVersionPermissionRequest
|
|
32
32
|
* LayerName: "STRING_VALUE", // required
|
|
33
33
|
* VersionNumber: Number("long"), // required
|
|
34
34
|
* StatementId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface RemovePermissionCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { LambdaClient, RemovePermissionCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, RemovePermissionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // RemovePermissionRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* StatementId: "STRING_VALUE", // required
|
|
33
33
|
* Qualifier: "STRING_VALUE",
|
|
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { LambdaClient, TagResourceCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, TagResourceCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* Resource: "STRING_VALUE", // required
|
|
31
|
-
* Tags: { // required
|
|
31
|
+
* Tags: { // Tags // required
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { LambdaClient, UntagResourceCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, UntagResourceCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* Resource: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -26,13 +26,13 @@ export interface UpdateAliasCommandOutput extends AliasConfiguration, __Metadata
|
|
|
26
26
|
* import { LambdaClient, UpdateAliasCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, UpdateAliasCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateAliasRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* FunctionVersion: "STRING_VALUE",
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* RoutingConfig: {
|
|
35
|
-
* AdditionalVersionWeights: {
|
|
34
|
+
* RoutingConfig: { // AliasRoutingConfiguration
|
|
35
|
+
* AdditionalVersionWeights: { // AdditionalVersionWeights
|
|
36
36
|
* "<keys>": Number("double"),
|
|
37
37
|
* },
|
|
38
38
|
* },
|
|
@@ -27,15 +27,15 @@ export interface UpdateCodeSigningConfigCommandOutput extends UpdateCodeSigningC
|
|
|
27
27
|
* import { LambdaClient, UpdateCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, UpdateCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateCodeSigningConfigRequest
|
|
31
31
|
* CodeSigningConfigArn: "STRING_VALUE", // required
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
|
-
* AllowedPublishers: {
|
|
34
|
-
* SigningProfileVersionArns: [ // required
|
|
33
|
+
* AllowedPublishers: { // AllowedPublishers
|
|
34
|
+
* SigningProfileVersionArns: [ // SigningProfileVersionArns // required
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* },
|
|
38
|
-
* CodeSigningPolicies: {
|
|
38
|
+
* CodeSigningPolicies: { // CodeSigningPolicies
|
|
39
39
|
* UntrustedArtifactOnDeployment: "Warn" || "Enforce",
|
|
40
40
|
* },
|
|
41
41
|
* };
|
|
@@ -128,24 +128,24 @@ export interface UpdateEventSourceMappingCommandOutput extends EventSourceMappin
|
|
|
128
128
|
* import { LambdaClient, UpdateEventSourceMappingCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
129
129
|
* // const { LambdaClient, UpdateEventSourceMappingCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
130
130
|
* const client = new LambdaClient(config);
|
|
131
|
-
* const input = {
|
|
131
|
+
* const input = { // UpdateEventSourceMappingRequest
|
|
132
132
|
* UUID: "STRING_VALUE", // required
|
|
133
133
|
* FunctionName: "STRING_VALUE",
|
|
134
134
|
* Enabled: true || false,
|
|
135
135
|
* BatchSize: Number("int"),
|
|
136
|
-
* FilterCriteria: {
|
|
137
|
-
* Filters: [
|
|
138
|
-
* {
|
|
136
|
+
* FilterCriteria: { // FilterCriteria
|
|
137
|
+
* Filters: [ // FilterList
|
|
138
|
+
* { // Filter
|
|
139
139
|
* Pattern: "STRING_VALUE",
|
|
140
140
|
* },
|
|
141
141
|
* ],
|
|
142
142
|
* },
|
|
143
143
|
* MaximumBatchingWindowInSeconds: Number("int"),
|
|
144
|
-
* DestinationConfig: {
|
|
145
|
-
* OnSuccess: {
|
|
144
|
+
* DestinationConfig: { // DestinationConfig
|
|
145
|
+
* OnSuccess: { // OnSuccess
|
|
146
146
|
* Destination: "STRING_VALUE",
|
|
147
147
|
* },
|
|
148
|
-
* OnFailure: {
|
|
148
|
+
* OnFailure: { // OnFailure
|
|
149
149
|
* Destination: "STRING_VALUE",
|
|
150
150
|
* },
|
|
151
151
|
* },
|
|
@@ -153,20 +153,20 @@ export interface UpdateEventSourceMappingCommandOutput extends EventSourceMappin
|
|
|
153
153
|
* BisectBatchOnFunctionError: true || false,
|
|
154
154
|
* MaximumRetryAttempts: Number("int"),
|
|
155
155
|
* ParallelizationFactor: Number("int"),
|
|
156
|
-
* SourceAccessConfigurations: [
|
|
157
|
-
* {
|
|
156
|
+
* SourceAccessConfigurations: [ // SourceAccessConfigurations
|
|
157
|
+
* { // SourceAccessConfiguration
|
|
158
158
|
* 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",
|
|
159
159
|
* URI: "STRING_VALUE",
|
|
160
160
|
* },
|
|
161
161
|
* ],
|
|
162
162
|
* TumblingWindowInSeconds: Number("int"),
|
|
163
|
-
* FunctionResponseTypes: [
|
|
163
|
+
* FunctionResponseTypes: [ // FunctionResponseTypeList
|
|
164
164
|
* "ReportBatchItemFailures",
|
|
165
165
|
* ],
|
|
166
|
-
* ScalingConfig: {
|
|
166
|
+
* ScalingConfig: { // ScalingConfig
|
|
167
167
|
* MaximumConcurrency: Number("int"),
|
|
168
168
|
* },
|
|
169
|
-
* DocumentDBEventSourceConfig: {
|
|
169
|
+
* DocumentDBEventSourceConfig: { // DocumentDBEventSourceConfig
|
|
170
170
|
* DatabaseName: "STRING_VALUE",
|
|
171
171
|
* CollectionName: "STRING_VALUE",
|
|
172
172
|
* FullDocument: "UpdateLookup" || "Default",
|
|
@@ -41,7 +41,7 @@ export interface UpdateFunctionCodeCommandOutput extends FunctionConfiguration,
|
|
|
41
41
|
* import { LambdaClient, UpdateFunctionCodeCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
42
42
|
* // const { LambdaClient, UpdateFunctionCodeCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
43
43
|
* const client = new LambdaClient(config);
|
|
44
|
-
* const input = {
|
|
44
|
+
* const input = { // UpdateFunctionCodeRequest
|
|
45
45
|
* FunctionName: "STRING_VALUE", // required
|
|
46
46
|
* ZipFile: "BLOB_VALUE",
|
|
47
47
|
* S3Bucket: "STRING_VALUE",
|
|
@@ -51,7 +51,7 @@ export interface UpdateFunctionCodeCommandOutput extends FunctionConfiguration,
|
|
|
51
51
|
* Publish: true || false,
|
|
52
52
|
* DryRun: true || false,
|
|
53
53
|
* RevisionId: "STRING_VALUE",
|
|
54
|
-
* Architectures: [
|
|
54
|
+
* Architectures: [ // ArchitecturesList
|
|
55
55
|
* "x86_64" || "arm64",
|
|
56
56
|
* ],
|
|
57
57
|
* };
|
|
@@ -37,46 +37,46 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig
|
|
|
37
37
|
* import { LambdaClient, UpdateFunctionConfigurationCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
38
38
|
* // const { LambdaClient, UpdateFunctionConfigurationCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
39
39
|
* const client = new LambdaClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // UpdateFunctionConfigurationRequest
|
|
41
41
|
* FunctionName: "STRING_VALUE", // required
|
|
42
42
|
* Role: "STRING_VALUE",
|
|
43
43
|
* Handler: "STRING_VALUE",
|
|
44
44
|
* Description: "STRING_VALUE",
|
|
45
45
|
* Timeout: Number("int"),
|
|
46
46
|
* MemorySize: Number("int"),
|
|
47
|
-
* VpcConfig: {
|
|
48
|
-
* SubnetIds: [
|
|
47
|
+
* VpcConfig: { // VpcConfig
|
|
48
|
+
* SubnetIds: [ // SubnetIds
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
|
-
* SecurityGroupIds: [
|
|
51
|
+
* SecurityGroupIds: [ // SecurityGroupIds
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
|
-
* Environment: {
|
|
56
|
-
* Variables: {
|
|
55
|
+
* Environment: { // Environment
|
|
56
|
+
* Variables: { // EnvironmentVariables
|
|
57
57
|
* "<keys>": "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
59
|
* },
|
|
60
60
|
* 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",
|
|
61
|
-
* DeadLetterConfig: {
|
|
61
|
+
* DeadLetterConfig: { // DeadLetterConfig
|
|
62
62
|
* TargetArn: "STRING_VALUE",
|
|
63
63
|
* },
|
|
64
64
|
* KMSKeyArn: "STRING_VALUE",
|
|
65
|
-
* TracingConfig: {
|
|
65
|
+
* TracingConfig: { // TracingConfig
|
|
66
66
|
* Mode: "Active" || "PassThrough",
|
|
67
67
|
* },
|
|
68
68
|
* RevisionId: "STRING_VALUE",
|
|
69
|
-
* Layers: [
|
|
69
|
+
* Layers: [ // LayerList
|
|
70
70
|
* "STRING_VALUE",
|
|
71
71
|
* ],
|
|
72
|
-
* FileSystemConfigs: [
|
|
73
|
-
* {
|
|
72
|
+
* FileSystemConfigs: [ // FileSystemConfigList
|
|
73
|
+
* { // FileSystemConfig
|
|
74
74
|
* Arn: "STRING_VALUE", // required
|
|
75
75
|
* LocalMountPath: "STRING_VALUE", // required
|
|
76
76
|
* },
|
|
77
77
|
* ],
|
|
78
|
-
* ImageConfig: {
|
|
79
|
-
* EntryPoint: [
|
|
78
|
+
* ImageConfig: { // ImageConfig
|
|
79
|
+
* EntryPoint: [ // StringList
|
|
80
80
|
* "STRING_VALUE",
|
|
81
81
|
* ],
|
|
82
82
|
* Command: [
|
|
@@ -84,10 +84,10 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig
|
|
|
84
84
|
* ],
|
|
85
85
|
* WorkingDirectory: "STRING_VALUE",
|
|
86
86
|
* },
|
|
87
|
-
* EphemeralStorage: {
|
|
87
|
+
* EphemeralStorage: { // EphemeralStorage
|
|
88
88
|
* Size: Number("int"), // required
|
|
89
89
|
* },
|
|
90
|
-
* SnapStart: {
|
|
90
|
+
* SnapStart: { // SnapStart
|
|
91
91
|
* ApplyOn: "PublishedVersions" || "None",
|
|
92
92
|
* },
|
|
93
93
|
* };
|
|
@@ -27,16 +27,16 @@ export interface UpdateFunctionEventInvokeConfigCommandOutput extends FunctionEv
|
|
|
27
27
|
* import { LambdaClient, UpdateFunctionEventInvokeConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
28
28
|
* // const { LambdaClient, UpdateFunctionEventInvokeConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
29
29
|
* const client = new LambdaClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateFunctionEventInvokeConfigRequest
|
|
31
31
|
* FunctionName: "STRING_VALUE", // required
|
|
32
32
|
* Qualifier: "STRING_VALUE",
|
|
33
33
|
* MaximumRetryAttempts: Number("int"),
|
|
34
34
|
* MaximumEventAgeInSeconds: Number("int"),
|
|
35
|
-
* DestinationConfig: {
|
|
36
|
-
* OnSuccess: {
|
|
35
|
+
* DestinationConfig: { // DestinationConfig
|
|
36
|
+
* OnSuccess: { // OnSuccess
|
|
37
37
|
* Destination: "STRING_VALUE",
|
|
38
38
|
* },
|
|
39
|
-
* OnFailure: {
|
|
39
|
+
* OnFailure: { // OnFailure
|
|
40
40
|
* Destination: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
@@ -26,19 +26,19 @@ export interface UpdateFunctionUrlConfigCommandOutput extends UpdateFunctionUrlC
|
|
|
26
26
|
* import { LambdaClient, UpdateFunctionUrlConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
|
|
27
27
|
* // const { LambdaClient, UpdateFunctionUrlConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
|
|
28
28
|
* const client = new LambdaClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateFunctionUrlConfigRequest
|
|
30
30
|
* FunctionName: "STRING_VALUE", // required
|
|
31
31
|
* Qualifier: "STRING_VALUE",
|
|
32
32
|
* AuthType: "NONE" || "AWS_IAM",
|
|
33
|
-
* Cors: {
|
|
33
|
+
* Cors: { // Cors
|
|
34
34
|
* AllowCredentials: true || false,
|
|
35
|
-
* AllowHeaders: [
|
|
35
|
+
* AllowHeaders: [ // HeadersList
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
|
-
* AllowMethods: [
|
|
38
|
+
* AllowMethods: [ // AllowMethodsList
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* AllowOrigins: [
|
|
41
|
+
* AllowOrigins: [ // AllowOriginsList
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* ExposeHeaders: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|