aws-sdk-lambda 1.167.0 → 1.168.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +594 -70
- data/lib/aws-sdk-lambda/client_api.rb +349 -33
- data/lib/aws-sdk-lambda/errors.rb +63 -0
- data/lib/aws-sdk-lambda/types.rb +683 -19
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +179 -19
- data/sig/errors.rbs +12 -0
- data/sig/types.rbs +199 -3
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -87,6 +87,47 @@ module Aws::Lambda
|
|
|
87
87
|
SENSITIVE: []
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
+
class CapacityProvider
|
|
91
|
+
attr_accessor capacity_provider_arn: ::String
|
|
92
|
+
attr_accessor state: ("Pending" | "Active" | "Failed" | "Deleting")
|
|
93
|
+
attr_accessor vpc_config: Types::CapacityProviderVpcConfig
|
|
94
|
+
attr_accessor permissions_config: Types::CapacityProviderPermissionsConfig
|
|
95
|
+
attr_accessor instance_requirements: Types::InstanceRequirements
|
|
96
|
+
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
97
|
+
attr_accessor kms_key_arn: ::String
|
|
98
|
+
attr_accessor last_modified: ::Time
|
|
99
|
+
SENSITIVE: []
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
class CapacityProviderConfig
|
|
103
|
+
attr_accessor lambda_managed_instances_capacity_provider_config: Types::LambdaManagedInstancesCapacityProviderConfig
|
|
104
|
+
SENSITIVE: []
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
class CapacityProviderLimitExceededException
|
|
108
|
+
attr_accessor type: ::String
|
|
109
|
+
attr_accessor message: ::String
|
|
110
|
+
SENSITIVE: []
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
class CapacityProviderPermissionsConfig
|
|
114
|
+
attr_accessor capacity_provider_operator_role_arn: ::String
|
|
115
|
+
SENSITIVE: []
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
class CapacityProviderScalingConfig
|
|
119
|
+
attr_accessor max_v_cpu_count: ::Integer
|
|
120
|
+
attr_accessor scaling_mode: ("Auto" | "Manual")
|
|
121
|
+
attr_accessor scaling_policies: ::Array[Types::TargetTrackingScalingPolicy]
|
|
122
|
+
SENSITIVE: []
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
class CapacityProviderVpcConfig
|
|
126
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
127
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
128
|
+
SENSITIVE: []
|
|
129
|
+
end
|
|
130
|
+
|
|
90
131
|
class CodeSigningConfig
|
|
91
132
|
attr_accessor code_signing_config_id: ::String
|
|
92
133
|
attr_accessor code_signing_config_arn: ::String
|
|
@@ -144,6 +185,22 @@ module Aws::Lambda
|
|
|
144
185
|
SENSITIVE: []
|
|
145
186
|
end
|
|
146
187
|
|
|
188
|
+
class CreateCapacityProviderRequest
|
|
189
|
+
attr_accessor capacity_provider_name: ::String
|
|
190
|
+
attr_accessor vpc_config: Types::CapacityProviderVpcConfig
|
|
191
|
+
attr_accessor permissions_config: Types::CapacityProviderPermissionsConfig
|
|
192
|
+
attr_accessor instance_requirements: Types::InstanceRequirements
|
|
193
|
+
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
194
|
+
attr_accessor kms_key_arn: ::String
|
|
195
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
class CreateCapacityProviderResponse
|
|
200
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
201
|
+
SENSITIVE: []
|
|
202
|
+
end
|
|
203
|
+
|
|
147
204
|
class CreateCodeSigningConfigRequest
|
|
148
205
|
attr_accessor description: ::String
|
|
149
206
|
attr_accessor allowed_publishers: Types::AllowedPublishers
|
|
@@ -213,6 +270,8 @@ module Aws::Lambda
|
|
|
213
270
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
214
271
|
attr_accessor snap_start: Types::SnapStart
|
|
215
272
|
attr_accessor logging_config: Types::LoggingConfig
|
|
273
|
+
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
274
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
216
275
|
attr_accessor tenancy_config: Types::TenancyConfig
|
|
217
276
|
SENSITIVE: []
|
|
218
277
|
end
|
|
@@ -247,6 +306,16 @@ module Aws::Lambda
|
|
|
247
306
|
SENSITIVE: []
|
|
248
307
|
end
|
|
249
308
|
|
|
309
|
+
class DeleteCapacityProviderRequest
|
|
310
|
+
attr_accessor capacity_provider_name: ::String
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
class DeleteCapacityProviderResponse
|
|
315
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
316
|
+
SENSITIVE: []
|
|
317
|
+
end
|
|
318
|
+
|
|
250
319
|
class DeleteCodeSigningConfigRequest
|
|
251
320
|
attr_accessor code_signing_config_arn: ::String
|
|
252
321
|
SENSITIVE: []
|
|
@@ -282,6 +351,11 @@ module Aws::Lambda
|
|
|
282
351
|
SENSITIVE: []
|
|
283
352
|
end
|
|
284
353
|
|
|
354
|
+
class DeleteFunctionResponse
|
|
355
|
+
attr_accessor status_code: ::Integer
|
|
356
|
+
SENSITIVE: []
|
|
357
|
+
end
|
|
358
|
+
|
|
285
359
|
class DeleteFunctionUrlConfigRequest
|
|
286
360
|
attr_accessor function_name: ::String
|
|
287
361
|
attr_accessor qualifier: ::String
|
|
@@ -487,12 +561,12 @@ module Aws::Lambda
|
|
|
487
561
|
attr_accessor master_arn: ::String
|
|
488
562
|
attr_accessor revision_id: ::String
|
|
489
563
|
attr_accessor layers: ::Array[Types::Layer]
|
|
490
|
-
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed")
|
|
564
|
+
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
491
565
|
attr_accessor state_reason: ::String
|
|
492
|
-
attr_accessor state_reason_code: ("Idle" | "Creating" | "Restoring" | "EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError")
|
|
566
|
+
attr_accessor state_reason_code: ("Idle" | "Creating" | "Restoring" | "EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted")
|
|
493
567
|
attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
|
|
494
568
|
attr_accessor last_update_status_reason: ::String
|
|
495
|
-
attr_accessor last_update_status_reason_code: ("EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError")
|
|
569
|
+
attr_accessor last_update_status_reason_code: ("EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted")
|
|
496
570
|
attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
|
|
497
571
|
attr_accessor package_type: ("Zip" | "Image")
|
|
498
572
|
attr_accessor image_config_response: Types::ImageConfigResponse
|
|
@@ -503,6 +577,8 @@ module Aws::Lambda
|
|
|
503
577
|
attr_accessor snap_start: Types::SnapStartResponse
|
|
504
578
|
attr_accessor runtime_version_config: Types::RuntimeVersionConfig
|
|
505
579
|
attr_accessor logging_config: Types::LoggingConfig
|
|
580
|
+
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
581
|
+
attr_accessor config_sha_256: ::String
|
|
506
582
|
attr_accessor tenancy_config: Types::TenancyConfig
|
|
507
583
|
SENSITIVE: []
|
|
508
584
|
end
|
|
@@ -516,6 +592,12 @@ module Aws::Lambda
|
|
|
516
592
|
SENSITIVE: []
|
|
517
593
|
end
|
|
518
594
|
|
|
595
|
+
class FunctionScalingConfig
|
|
596
|
+
attr_accessor min_execution_environments: ::Integer
|
|
597
|
+
attr_accessor max_execution_environments: ::Integer
|
|
598
|
+
SENSITIVE: []
|
|
599
|
+
end
|
|
600
|
+
|
|
519
601
|
class FunctionUrlConfig
|
|
520
602
|
attr_accessor function_url: ::String
|
|
521
603
|
attr_accessor function_arn: ::String
|
|
@@ -527,6 +609,18 @@ module Aws::Lambda
|
|
|
527
609
|
SENSITIVE: []
|
|
528
610
|
end
|
|
529
611
|
|
|
612
|
+
class FunctionVersionsByCapacityProviderListItem
|
|
613
|
+
attr_accessor function_arn: ::String
|
|
614
|
+
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
615
|
+
SENSITIVE: []
|
|
616
|
+
end
|
|
617
|
+
|
|
618
|
+
class FunctionVersionsPerCapacityProviderLimitExceededException
|
|
619
|
+
attr_accessor type: ::String
|
|
620
|
+
attr_accessor message: ::String
|
|
621
|
+
SENSITIVE: []
|
|
622
|
+
end
|
|
623
|
+
|
|
530
624
|
class GetAccountSettingsRequest < Aws::EmptyStructure
|
|
531
625
|
end
|
|
532
626
|
|
|
@@ -542,6 +636,16 @@ module Aws::Lambda
|
|
|
542
636
|
SENSITIVE: []
|
|
543
637
|
end
|
|
544
638
|
|
|
639
|
+
class GetCapacityProviderRequest
|
|
640
|
+
attr_accessor capacity_provider_name: ::String
|
|
641
|
+
SENSITIVE: []
|
|
642
|
+
end
|
|
643
|
+
|
|
644
|
+
class GetCapacityProviderResponse
|
|
645
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
646
|
+
SENSITIVE: []
|
|
647
|
+
end
|
|
648
|
+
|
|
545
649
|
class GetCodeSigningConfigRequest
|
|
546
650
|
attr_accessor code_signing_config_arn: ::String
|
|
547
651
|
SENSITIVE: []
|
|
@@ -615,6 +719,19 @@ module Aws::Lambda
|
|
|
615
719
|
SENSITIVE: []
|
|
616
720
|
end
|
|
617
721
|
|
|
722
|
+
class GetFunctionScalingConfigRequest
|
|
723
|
+
attr_accessor function_name: ::String
|
|
724
|
+
attr_accessor qualifier: ::String
|
|
725
|
+
SENSITIVE: []
|
|
726
|
+
end
|
|
727
|
+
|
|
728
|
+
class GetFunctionScalingConfigResponse
|
|
729
|
+
attr_accessor function_arn: ::String
|
|
730
|
+
attr_accessor applied_function_scaling_config: Types::FunctionScalingConfig
|
|
731
|
+
attr_accessor requested_function_scaling_config: Types::FunctionScalingConfig
|
|
732
|
+
SENSITIVE: []
|
|
733
|
+
end
|
|
734
|
+
|
|
618
735
|
class GetFunctionUrlConfigRequest
|
|
619
736
|
attr_accessor function_name: ::String
|
|
620
737
|
attr_accessor qualifier: ::String
|
|
@@ -728,6 +845,13 @@ module Aws::Lambda
|
|
|
728
845
|
SENSITIVE: []
|
|
729
846
|
end
|
|
730
847
|
|
|
848
|
+
class InstanceRequirements
|
|
849
|
+
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
850
|
+
attr_accessor allowed_instance_types: ::Array[::String]
|
|
851
|
+
attr_accessor excluded_instance_types: ::Array[::String]
|
|
852
|
+
SENSITIVE: []
|
|
853
|
+
end
|
|
854
|
+
|
|
731
855
|
class InvalidCodeSignatureException
|
|
732
856
|
attr_accessor type: ::String
|
|
733
857
|
attr_accessor message: ::String
|
|
@@ -877,6 +1001,13 @@ module Aws::Lambda
|
|
|
877
1001
|
SENSITIVE: []
|
|
878
1002
|
end
|
|
879
1003
|
|
|
1004
|
+
class LambdaManagedInstancesCapacityProviderConfig
|
|
1005
|
+
attr_accessor capacity_provider_arn: ::String
|
|
1006
|
+
attr_accessor per_execution_environment_max_concurrency: ::Integer
|
|
1007
|
+
attr_accessor execution_environment_memory_gi_b_per_v_cpu: ::Float
|
|
1008
|
+
SENSITIVE: []
|
|
1009
|
+
end
|
|
1010
|
+
|
|
880
1011
|
class Layer
|
|
881
1012
|
attr_accessor arn: ::String
|
|
882
1013
|
attr_accessor code_size: ::Integer
|
|
@@ -934,6 +1065,19 @@ module Aws::Lambda
|
|
|
934
1065
|
SENSITIVE: []
|
|
935
1066
|
end
|
|
936
1067
|
|
|
1068
|
+
class ListCapacityProvidersRequest
|
|
1069
|
+
attr_accessor state: ("Pending" | "Active" | "Failed" | "Deleting")
|
|
1070
|
+
attr_accessor marker: ::String
|
|
1071
|
+
attr_accessor max_items: ::Integer
|
|
1072
|
+
SENSITIVE: []
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
class ListCapacityProvidersResponse
|
|
1076
|
+
attr_accessor capacity_providers: ::Array[Types::CapacityProvider]
|
|
1077
|
+
attr_accessor next_marker: ::String
|
|
1078
|
+
SENSITIVE: []
|
|
1079
|
+
end
|
|
1080
|
+
|
|
937
1081
|
class ListCodeSigningConfigsRequest
|
|
938
1082
|
attr_accessor marker: ::String
|
|
939
1083
|
attr_accessor max_items: ::Integer
|
|
@@ -986,6 +1130,20 @@ module Aws::Lambda
|
|
|
986
1130
|
SENSITIVE: []
|
|
987
1131
|
end
|
|
988
1132
|
|
|
1133
|
+
class ListFunctionVersionsByCapacityProviderRequest
|
|
1134
|
+
attr_accessor capacity_provider_name: ::String
|
|
1135
|
+
attr_accessor marker: ::String
|
|
1136
|
+
attr_accessor max_items: ::Integer
|
|
1137
|
+
SENSITIVE: []
|
|
1138
|
+
end
|
|
1139
|
+
|
|
1140
|
+
class ListFunctionVersionsByCapacityProviderResponse
|
|
1141
|
+
attr_accessor capacity_provider_arn: ::String
|
|
1142
|
+
attr_accessor function_versions: ::Array[Types::FunctionVersionsByCapacityProviderListItem]
|
|
1143
|
+
attr_accessor next_marker: ::String
|
|
1144
|
+
SENSITIVE: []
|
|
1145
|
+
end
|
|
1146
|
+
|
|
989
1147
|
class ListFunctionsByCodeSigningConfigRequest
|
|
990
1148
|
attr_accessor code_signing_config_arn: ::String
|
|
991
1149
|
attr_accessor marker: ::String
|
|
@@ -1086,6 +1244,12 @@ module Aws::Lambda
|
|
|
1086
1244
|
SENSITIVE: []
|
|
1087
1245
|
end
|
|
1088
1246
|
|
|
1247
|
+
class NoPublishedVersionException
|
|
1248
|
+
attr_accessor type: ::String
|
|
1249
|
+
attr_accessor message: ::String
|
|
1250
|
+
SENSITIVE: []
|
|
1251
|
+
end
|
|
1252
|
+
|
|
1089
1253
|
class OnFailure
|
|
1090
1254
|
attr_accessor destination: ::String
|
|
1091
1255
|
SENSITIVE: []
|
|
@@ -1160,6 +1324,7 @@ module Aws::Lambda
|
|
|
1160
1324
|
attr_accessor code_sha_256: ::String
|
|
1161
1325
|
attr_accessor description: ::String
|
|
1162
1326
|
attr_accessor revision_id: ::String
|
|
1327
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
1163
1328
|
SENSITIVE: []
|
|
1164
1329
|
end
|
|
1165
1330
|
|
|
@@ -1201,6 +1366,18 @@ module Aws::Lambda
|
|
|
1201
1366
|
SENSITIVE: []
|
|
1202
1367
|
end
|
|
1203
1368
|
|
|
1369
|
+
class PutFunctionScalingConfigRequest
|
|
1370
|
+
attr_accessor function_name: ::String
|
|
1371
|
+
attr_accessor qualifier: ::String
|
|
1372
|
+
attr_accessor function_scaling_config: Types::FunctionScalingConfig
|
|
1373
|
+
SENSITIVE: []
|
|
1374
|
+
end
|
|
1375
|
+
|
|
1376
|
+
class PutFunctionScalingConfigResponse
|
|
1377
|
+
attr_accessor function_state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
1378
|
+
SENSITIVE: []
|
|
1379
|
+
end
|
|
1380
|
+
|
|
1204
1381
|
class PutProvisionedConcurrencyConfigRequest
|
|
1205
1382
|
attr_accessor function_name: ::String
|
|
1206
1383
|
attr_accessor qualifier: ::String
|
|
@@ -1378,6 +1555,12 @@ module Aws::Lambda
|
|
|
1378
1555
|
SENSITIVE: []
|
|
1379
1556
|
end
|
|
1380
1557
|
|
|
1558
|
+
class TargetTrackingScalingPolicy
|
|
1559
|
+
attr_accessor predefined_metric_type: ("LambdaCapacityProviderAverageCPUUtilization")
|
|
1560
|
+
attr_accessor target_value: ::Float
|
|
1561
|
+
SENSITIVE: []
|
|
1562
|
+
end
|
|
1563
|
+
|
|
1381
1564
|
class TenancyConfig
|
|
1382
1565
|
attr_accessor tenant_isolation_mode: ("PER_TENANT")
|
|
1383
1566
|
SENSITIVE: []
|
|
@@ -1423,6 +1606,17 @@ module Aws::Lambda
|
|
|
1423
1606
|
SENSITIVE: []
|
|
1424
1607
|
end
|
|
1425
1608
|
|
|
1609
|
+
class UpdateCapacityProviderRequest
|
|
1610
|
+
attr_accessor capacity_provider_name: ::String
|
|
1611
|
+
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
1612
|
+
SENSITIVE: []
|
|
1613
|
+
end
|
|
1614
|
+
|
|
1615
|
+
class UpdateCapacityProviderResponse
|
|
1616
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
1617
|
+
SENSITIVE: []
|
|
1618
|
+
end
|
|
1619
|
+
|
|
1426
1620
|
class UpdateCodeSigningConfigRequest
|
|
1427
1621
|
attr_accessor code_signing_config_arn: ::String
|
|
1428
1622
|
attr_accessor description: ::String
|
|
@@ -1473,6 +1667,7 @@ module Aws::Lambda
|
|
|
1473
1667
|
attr_accessor revision_id: ::String
|
|
1474
1668
|
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
1475
1669
|
attr_accessor source_kms_key_arn: ::String
|
|
1670
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
1476
1671
|
SENSITIVE: [:zip_file]
|
|
1477
1672
|
end
|
|
1478
1673
|
|
|
@@ -1496,6 +1691,7 @@ module Aws::Lambda
|
|
|
1496
1691
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
1497
1692
|
attr_accessor snap_start: Types::SnapStart
|
|
1498
1693
|
attr_accessor logging_config: Types::LoggingConfig
|
|
1694
|
+
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
1499
1695
|
SENSITIVE: []
|
|
1500
1696
|
end
|
|
1501
1697
|
|