aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,303 +0,0 @@
1
- {
2
- "operations": {
3
- "AddEventSource": "<p>Identifies a stream as an event source for an AWS Lambda function. It can be either an Amazon Kinesis stream or a Amazon DynamoDB stream. AWS Lambda invokes the specified function when records are posted to the stream.</p> <p>This is the pull model, where AWS Lambda invokes the function. For more information, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">AWS Lambda: How it Works</a> in the AWS Lambda Developer Guide.</p> <p>This association between an Amazon Kinesis stream and an AWS Lambda function is called the event source mapping. You provide the configuration information (for example, which stream to read from and which AWS Lambda function to invoke) for the event source mapping in the request body.</p> <p> Each event source, such as a Kinesis stream, can only be associated with one AWS Lambda function. If you call <a>AddEventSource</a> for an event source that is already mapped to another AWS Lambda function, the existing mapping is updated to call the new function instead of the old one. </p> <p>This operation requires permission for the <code>iam:PassRole</code> action for the IAM role. It also requires permission for the <code>lambda:AddEventSource</code> action.</p>",
4
- "DeleteFunction": "<p>Deletes the specified Lambda function code and configuration.</p> <p>This operation requires permission for the <code>lambda:DeleteFunction</code> action.</p>",
5
- "GetEventSource": "<p>Returns configuration information for the specified event source mapping (see <a>AddEventSource</a>).</p> <p>This operation requires permission for the <code>lambda:GetEventSource</code> action.</p>",
6
- "GetFunction": "<p>Returns the configuration information of the Lambda function and a presigned URL link to the .zip file you uploaded with <a>UploadFunction</a> so you can download the .zip file. Note that the URL is valid for up to 10 minutes. The configuration information is the same information you provided as parameters when uploading the function.</p> <p>This operation requires permission for the <code>lambda:GetFunction</code> action.</p>",
7
- "GetFunctionConfiguration": "<p>Returns the configuration information of the Lambda function. This the same information you provided as parameters when uploading the function by using <a>UploadFunction</a>.</p> <p>This operation requires permission for the <code>lambda:GetFunctionConfiguration</code> operation.</p>",
8
- "InvokeAsync": "<p>Submits an invocation request to AWS Lambda. Upon receiving the request, Lambda executes the specified function asynchronously. To see the logs generated by the Lambda function execution, see the CloudWatch logs console.</p> <p>This operation requires permission for the <code>lambda:InvokeFunction</code> action.</p>",
9
- "ListEventSources": "<p>Returns a list of event source mappings you created using the <code>AddEventSource</code> (see <a>AddEventSource</a>), where you identify a stream as event source. This list does not include Amazon S3 event sources. </p> <p>For each mapping, the API returns configuration information. You can optionally specify filters to retrieve specific event source mappings.</p> <p>This operation requires permission for the <code>lambda:ListEventSources</code> action.</p>",
10
- "ListFunctions": "<p>Returns a list of your Lambda functions. For each function, the response includes the function configuration information. You must use <a>GetFunction</a> to retrieve the code for your function.</p> <p>This operation requires permission for the <code>lambda:ListFunctions</code> action.</p>",
11
- "RemoveEventSource": "<p>Removes an event source mapping. This means AWS Lambda will no longer invoke the function for events in the associated source.</p> <p>This operation requires permission for the <code>lambda:RemoveEventSource</code> action.</p>",
12
- "UpdateFunctionConfiguration": "<p>Updates the configuration parameters for the specified Lambda function by using the values provided in the request. You provide only the parameters you want to change. This operation must only be used on an existing Lambda function and cannot be used to update the function's code. </p> <p>This operation requires permission for the <code>lambda:UpdateFunctionConfiguration</code> action.</p>",
13
- "UploadFunction": "<p>Creates a new Lambda function or updates an existing function. The function metadata is created from the request parameters, and the code for the function is provided by a .zip file in the request body. If the function name already exists, the existing Lambda function is updated with the new code and metadata. </p> <p>This operation requires permission for the <code>lambda:UploadFunction</code> action.</p>"
14
- },
15
- "service": "<fullname>AWS Lambda</fullname> <p><b>Overview</b></p> <p>This is the AWS Lambda API Reference. The AWS Lambda Developer Guide provides additional information. For the service overview, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/welcome.html\">What is AWS Lambda</a>, and for information about how the service works, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">AWS LambdaL How it Works</a> in the AWS Lambda Developer Guide.</p>",
16
- "shapes": {
17
- "AddEventSourceRequest": {
18
- "base": null,
19
- "refs": {
20
- }
21
- },
22
- "Blob": {
23
- "base": null,
24
- "refs": {
25
- "InvokeAsyncRequest$InvokeArgs": "<p>JSON that you want to provide to your Lambda function as input.</p>",
26
- "UploadFunctionRequest$FunctionZip": "<p>A .zip file containing your packaged source code. For more information about creating a .zip file, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/walkthrough-custom-events.html\">AWS LambdaL How it Works</a> in the AWS Lambda Developer Guide. </p>"
27
- }
28
- },
29
- "DeleteFunctionRequest": {
30
- "base": null,
31
- "refs": {
32
- }
33
- },
34
- "Description": {
35
- "base": null,
36
- "refs": {
37
- "FunctionConfiguration$Description": "<p>The user-provided description.</p>",
38
- "UpdateFunctionConfigurationRequest$Description": "<p>A short user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.</p>",
39
- "UploadFunctionRequest$Description": "<p>A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.</p>"
40
- }
41
- },
42
- "EventSourceConfiguration": {
43
- "base": "<p>Describes mapping between an Amazon Kinesis stream and a Lambda function.</p>",
44
- "refs": {
45
- "EventSourceList$member": null
46
- }
47
- },
48
- "EventSourceList": {
49
- "base": null,
50
- "refs": {
51
- "ListEventSourcesResponse$EventSources": "<p>An arrary of <code>EventSourceConfiguration</code> objects.</p>"
52
- }
53
- },
54
- "FunctionArn": {
55
- "base": null,
56
- "refs": {
57
- "FunctionConfiguration$FunctionARN": "<p>The Amazon Resource Name (ARN) assigned to the function.</p>"
58
- }
59
- },
60
- "FunctionCodeLocation": {
61
- "base": "<p>The object for the Lambda function location.</p>",
62
- "refs": {
63
- "GetFunctionResponse$Code": null
64
- }
65
- },
66
- "FunctionConfiguration": {
67
- "base": "<p>A complex type that describes function metadata.</p>",
68
- "refs": {
69
- "FunctionList$member": null,
70
- "GetFunctionResponse$Configuration": null
71
- }
72
- },
73
- "FunctionList": {
74
- "base": null,
75
- "refs": {
76
- "ListFunctionsResponse$Functions": "<p>A list of Lambda functions.</p>"
77
- }
78
- },
79
- "FunctionName": {
80
- "base": null,
81
- "refs": {
82
- "AddEventSourceRequest$FunctionName": "<p>The Lambda function to invoke when AWS Lambda detects an event on the stream.</p>",
83
- "DeleteFunctionRequest$FunctionName": "<p>The Lambda function to delete.</p>",
84
- "EventSourceConfiguration$FunctionName": "<p>The Lambda function to invoke when AWS Lambda detects an event on the stream.</p>",
85
- "FunctionConfiguration$FunctionName": "<p>The name of the function.</p>",
86
- "GetFunctionConfigurationRequest$FunctionName": "<p>The name of the Lambda function for which you want to retrieve the configuration information.</p>",
87
- "GetFunctionRequest$FunctionName": "<p>The Lambda function name.</p>",
88
- "InvokeAsyncRequest$FunctionName": "<p>The Lambda function name.</p>",
89
- "ListEventSourcesRequest$FunctionName": "<p>The name of the AWS Lambda function.</p>",
90
- "UpdateFunctionConfigurationRequest$FunctionName": "<p>The name of the Lambda function.</p>",
91
- "UploadFunctionRequest$FunctionName": "<p>The name you want to assign to the function you are uploading. The function names appear in the console and are returned in the <a>ListFunctions</a> API. Function names are used to specify functions to other AWS Lambda APIs, such as <a>InvokeAsync</a>. </p>"
92
- }
93
- },
94
- "GetEventSourceRequest": {
95
- "base": null,
96
- "refs": {
97
- }
98
- },
99
- "GetFunctionConfigurationRequest": {
100
- "base": null,
101
- "refs": {
102
- }
103
- },
104
- "GetFunctionRequest": {
105
- "base": null,
106
- "refs": {
107
- }
108
- },
109
- "GetFunctionResponse": {
110
- "base": "<p>This response contains the object for AWS Lambda function location (see <a>API_FunctionCodeLocation</a></p>",
111
- "refs": {
112
- }
113
- },
114
- "Handler": {
115
- "base": null,
116
- "refs": {
117
- "FunctionConfiguration$Handler": "<p>The function Lambda calls to begin executing your function.</p>",
118
- "UpdateFunctionConfigurationRequest$Handler": "<p>The function that Lambda calls to begin executing your function. For Node.js, it is the <i>module-name.export</i> value in your function. </p>",
119
- "UploadFunctionRequest$Handler": "<p>The function that Lambda calls to begin execution. For Node.js, it is the <i>module-name</i>.<i>export</i> value in your function. </p>"
120
- }
121
- },
122
- "HttpStatus": {
123
- "base": null,
124
- "refs": {
125
- "InvokeAsyncResponse$Status": "<p>It will be 202 upon success.</p>"
126
- }
127
- },
128
- "Integer": {
129
- "base": null,
130
- "refs": {
131
- "AddEventSourceRequest$BatchSize": "<p>The largest number of records that AWS Lambda will give to your function in a single event. The default is 100 records.</p>",
132
- "EventSourceConfiguration$BatchSize": "<p>The largest number of records that AWS Lambda will POST in the invocation request to your function.</p>"
133
- }
134
- },
135
- "InvalidParameterValueException": {
136
- "base": "<p>One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the <code>UploadFunction</code> or the <code>UpdateFunctionConfiguration</code> API, that AWS Lambda is unable to assume you will get this exception. </p>",
137
- "refs": {
138
- }
139
- },
140
- "InvalidRequestContentException": {
141
- "base": "<p>The request body could not be parsed as JSON.</p>",
142
- "refs": {
143
- }
144
- },
145
- "InvokeAsyncRequest": {
146
- "base": null,
147
- "refs": {
148
- }
149
- },
150
- "InvokeAsyncResponse": {
151
- "base": "<p>Upon success, it returns empty response. Otherwise, throws an exception.</p>",
152
- "refs": {
153
- }
154
- },
155
- "ListEventSourcesRequest": {
156
- "base": null,
157
- "refs": {
158
- }
159
- },
160
- "ListEventSourcesResponse": {
161
- "base": "<p>Contains a list of event sources (see <a>API_EventSourceConfiguration</a>)</p>",
162
- "refs": {
163
- }
164
- },
165
- "ListFunctionsRequest": {
166
- "base": null,
167
- "refs": {
168
- }
169
- },
170
- "ListFunctionsResponse": {
171
- "base": "<p>Contains a list of AWS Lambda function configurations (see <a>API_FunctionConfiguration</a>.</p>",
172
- "refs": {
173
- }
174
- },
175
- "Long": {
176
- "base": null,
177
- "refs": {
178
- "FunctionConfiguration$CodeSize": "<p>The size, in bytes, of the function .zip file you uploaded.</p>"
179
- }
180
- },
181
- "Map": {
182
- "base": null,
183
- "refs": {
184
- "AddEventSourceRequest$Parameters": "<p>A map (key-value pairs) defining the configuration for AWS Lambda to use when reading the event source. Currently, AWS Lambda supports only the <code>InitialPositionInStream</code> key. The valid values are: \"TRIM_HORIZON\" and \"LATEST\". The default value is \"TRIM_HORIZON\". For more information, go to <a href=\"http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType\">ShardIteratorType</a> in the Amazon Kinesis Service API Reference. </p>",
185
- "EventSourceConfiguration$Parameters": "<p>The map (key-value pairs) defining the configuration for AWS Lambda to use when reading the event source.</p>"
186
- }
187
- },
188
- "MaxListItems": {
189
- "base": null,
190
- "refs": {
191
- "ListEventSourcesRequest$MaxItems": "<p>Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.</p>",
192
- "ListFunctionsRequest$MaxItems": "<p>Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.</p>"
193
- }
194
- },
195
- "MemorySize": {
196
- "base": null,
197
- "refs": {
198
- "FunctionConfiguration$MemorySize": "<p>The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.</p>",
199
- "UpdateFunctionConfigurationRequest$MemorySize": "<p>The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of CPU allocated to your function. Your function use-case determines your CPU and memory requirements. For example, a database operation might need less memory compared to an image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.</p>",
200
- "UploadFunctionRequest$MemorySize": "<p>The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of CPU allocated to your function. Your function use-case determines your CPU and memory requirements. For example, database operation might need less memory compared to image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.</p>"
201
- }
202
- },
203
- "Mode": {
204
- "base": null,
205
- "refs": {
206
- "FunctionConfiguration$Mode": "<p>The type of the Lambda function you uploaded. </p>",
207
- "UploadFunctionRequest$Mode": "<p>How the Lambda function will be invoked. Lambda supports only the \"event\" mode. </p>"
208
- }
209
- },
210
- "RemoveEventSourceRequest": {
211
- "base": null,
212
- "refs": {
213
- }
214
- },
215
- "ResourceNotFoundException": {
216
- "base": "<p>The function or the event source specified in the request does not exist.</p>",
217
- "refs": {
218
- }
219
- },
220
- "RoleArn": {
221
- "base": null,
222
- "refs": {
223
- "AddEventSourceRequest$Role": "<p>The ARN of the IAM role (invocation role) that AWS Lambda can assume to read from the stream and invoke the function.</p>",
224
- "EventSourceConfiguration$Role": "<p>The ARN of the IAM role (invocation role) that AWS Lambda can assume to read from the stream and invoke the function.</p>",
225
- "FunctionConfiguration$Role": "<p>The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any other Amazon Web Services (AWS) resources.</p>",
226
- "UpdateFunctionConfigurationRequest$Role": "<p>The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function. </p>",
227
- "UploadFunctionRequest$Role": "<p>The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any other Amazon Web Services (AWS) resources. </p>"
228
- }
229
- },
230
- "Runtime": {
231
- "base": null,
232
- "refs": {
233
- "FunctionConfiguration$Runtime": "<p>The runtime environment for the Lambda function.</p>",
234
- "UploadFunctionRequest$Runtime": "<p>The runtime environment for the Lambda function you are uploading. Currently, Lambda supports only \"nodejs\" as the runtime.</p>"
235
- }
236
- },
237
- "ServiceException": {
238
- "base": "<p>The AWS Lambda service encountered an internal error.</p>",
239
- "refs": {
240
- }
241
- },
242
- "String": {
243
- "base": null,
244
- "refs": {
245
- "AddEventSourceRequest$EventSource": "<p>The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the event source. Any record added to this stream causes AWS Lambda to invoke your Lambda function. AWS Lambda POSTs the Amazon Kinesis event, containing records, to your Lambda function as JSON.</p>",
246
- "EventSourceConfiguration$UUID": "<p>The AWS Lambda assigned opaque identifier for the mapping.</p>",
247
- "EventSourceConfiguration$EventSource": "<p>The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.</p>",
248
- "EventSourceConfiguration$Status": "<p>The description of the health of the event source mapping. Valid values are: \"PENDING\", \"OK\", and \"PROBLEM:<i>message</i>\". Initially this staus is \"PENDING\". When AWS Lambda begins processing events, it changes the status to \"OK\".</p>",
249
- "FunctionCodeLocation$RepositoryType": "<p>The repository from which you can download the function.</p>",
250
- "FunctionCodeLocation$Location": "<p>The presigned URL you can use to download the function's .zip file that you previously uploaded. The URL is valid for up to 10 minutes.</p>",
251
- "FunctionConfiguration$ConfigurationId": "<p>A Lambda-assigned unique identifier for the current function code and related configuration.</p>",
252
- "GetEventSourceRequest$UUID": "<p>The AWS Lambda assigned ID of the event source mapping.</p>",
253
- "InvalidParameterValueException$Type": null,
254
- "InvalidParameterValueException$message": null,
255
- "InvalidRequestContentException$Type": null,
256
- "InvalidRequestContentException$message": null,
257
- "ListEventSourcesRequest$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the Amazon Kinesis stream.</p>",
258
- "ListEventSourcesRequest$Marker": "<p>Optional string. An opaque pagination token returned from a previous <code>ListEventSources</code> operation. If present, specifies to continue the list from where the returning call left off. </p>",
259
- "ListEventSourcesResponse$NextMarker": "<p>A string, present if there are more event source mappings.</p>",
260
- "ListFunctionsRequest$Marker": "<p>Optional string. An opaque pagination token returned from a previous <code>ListFunctions</code> operation. If present, indicates where to continue the listing. </p>",
261
- "ListFunctionsResponse$NextMarker": "<p>A string, present if there are more functions.</p>",
262
- "Map$key": null,
263
- "Map$value": null,
264
- "RemoveEventSourceRequest$UUID": "<p>The event source mapping ID.</p>",
265
- "ResourceNotFoundException$Type": null,
266
- "ResourceNotFoundException$Message": null,
267
- "ServiceException$Type": null,
268
- "ServiceException$Message": null
269
- }
270
- },
271
- "Timeout": {
272
- "base": null,
273
- "refs": {
274
- "FunctionConfiguration$Timeout": "<p>The function execution time at which Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds. </p>",
275
- "UpdateFunctionConfigurationRequest$Timeout": "<p>The function execution time at which Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds. </p>",
276
- "UploadFunctionRequest$Timeout": "<p>The function execution time at which Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds. </p>"
277
- }
278
- },
279
- "Timestamp": {
280
- "base": null,
281
- "refs": {
282
- "EventSourceConfiguration$LastModified": "<p>The UTC time string indicating the last time the event mapping was updated.</p>",
283
- "FunctionConfiguration$LastModified": "<p>The timestamp of the last time you updated the function.</p>"
284
- }
285
- },
286
- "UpdateFunctionConfigurationRequest": {
287
- "base": null,
288
- "refs": {
289
- }
290
- },
291
- "UploadFunctionRequest": {
292
- "base": null,
293
- "refs": {
294
- }
295
- },
296
- "Boolean": {
297
- "base": null,
298
- "refs": {
299
- "EventSourceConfiguration$IsActive": "<p>Indicates whether the event source mapping is currently honored. Events are only processes if IsActive is true.</p>"
300
- }
301
- }
302
- }
303
- }
@@ -1,490 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AddPermission": "<p>Adds a permission to the access policy associated with the specified AWS Lambda function. In a \"push event\" model, the access policy attached to the Lambda function grants Amazon S3 or a user application permission for the Lambda <code>lambda:Invoke</code> action. For information about the push model, see <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">AWS Lambda: How it Works</a>. Each Lambda function has one access policy associated with it. You can use the <code>AddPermission</code> API to add a permission to the policy. You have one access policy but it can have multiple permission statements.</p> <p>This operation requires permission for the <code>lambda:AddPermission</code> action.</p>",
5
- "CreateEventSourceMapping": "<p>Identifies a stream as an event source for a Lambda function. It can be either an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS Lambda invokes the specified function when records are posted to the stream.</p> <p>This is the pull model, where AWS Lambda invokes the function. For more information, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">AWS Lambda: How it Works</a> in the <i>AWS Lambda Developer Guide</i>.</p> <p>This association between an Amazon Kinesis stream and a Lambda function is called the event source mapping. You provide the configuration information (for example, which stream to read from and which Lambda function to invoke) for the event source mapping in the request body.</p> <p> Each event source, such as an Amazon Kinesis or a DynamoDB stream, can be associated with multiple AWS Lambda function. A given Lambda function can be associated with multiple AWS event sources. </p> <p>This operation requires permission for the <code>lambda:CreateEventSourceMapping</code> action.</p>",
6
- "CreateFunction": "<p>Creates a new Lambda function. The function metadata is created from the request parameters, and the code for the function is provided by a .zip file in the request body. If the function name already exists, the operation will fail. Note that the function name is case-sensitive. </p> <p>This operation requires permission for the <code>lambda:CreateFunction</code> action.</p>",
7
- "DeleteEventSourceMapping": "<p>Removes an event source mapping. This means AWS Lambda will no longer invoke the function for events in the associated source.</p> <p>This operation requires permission for the <code>lambda:DeleteEventSourceMapping</code> action.</p>",
8
- "DeleteFunction": "<p>Deletes the specified Lambda function code and configuration.</p> <p>When you delete a function the associated access policy is also deleted. You will need to delete the event source mappings explicitly.</p> <p>This operation requires permission for the <code>lambda:DeleteFunction</code> action.</p>",
9
- "GetEventSourceMapping": "<p>Returns configuration information for the specified event source mapping (see <a>CreateEventSourceMapping</a>).</p> <p>This operation requires permission for the <code>lambda:GetEventSourceMapping</code> action.</p>",
10
- "GetFunction": "<p>Returns the configuration information of the Lambda function and a presigned URL link to the .zip file you uploaded with <a>CreateFunction</a> so you can download the .zip file. Note that the URL is valid for up to 10 minutes. The configuration information is the same information you provided as parameters when uploading the function.</p> <p>This operation requires permission for the <code>lambda:GetFunction</code> action.</p>",
11
- "GetFunctionConfiguration": "<p>Returns the configuration information of the Lambda function. This the same information you provided as parameters when uploading the function by using <a>CreateFunction</a>.</p> <p>This operation requires permission for the <code>lambda:GetFunctionConfiguration</code> operation.</p>",
12
- "GetPolicy": "<p>Returns the access policy, containing a list of permissions granted via the <code>AddPermission</code> API, associated with the specified bucket.</p> <p>You need permission for the <code>lambda:GetPolicy action.</code></p>",
13
- "Invoke": "<p> Invokes a specified Lambda function. </p> <p>This operation requires permission for the <code>lambda:InvokeFunction</code> action.</p>",
14
- "InvokeAsync": "<important>This API is deprecated. We recommend you use <code>Invoke</code> API (see <a>Invoke</a>).</important> <p>Submits an invocation request to AWS Lambda. Upon receiving the request, Lambda executes the specified function asynchronously. To see the logs generated by the Lambda function execution, see the CloudWatch logs console.</p> <p>This operation requires permission for the <code>lambda:InvokeFunction</code> action.</p>",
15
- "ListEventSourceMappings": "<p>Returns a list of event source mappings you created using the <code>CreateEventSourceMapping</code> (see <a>CreateEventSourceMapping</a>), where you identify a stream as an event source. This list does not include Amazon S3 event sources. </p> <p>For each mapping, the API returns configuration information. You can optionally specify filters to retrieve specific event source mappings.</p> <p>This operation requires permission for the <code>lambda:ListEventSourceMappings</code> action.</p>",
16
- "ListFunctions": "<p>Returns a list of your Lambda functions. For each function, the response includes the function configuration information. You must use <a>GetFunction</a> to retrieve the code for your function.</p> <p>This operation requires permission for the <code>lambda:ListFunctions</code> action.</p>",
17
- "RemovePermission": "<p>You can remove individual permissions from an access policy associated with a Lambda function by providing a Statement ID. </p> <p>Note that removal of a permission will cause an active event source to lose permission to the function. </p> <p>You need permission for the <code>lambda:RemovePermission</code> action.</p>",
18
- "UpdateEventSourceMapping": "<p>You can update an event source mapping. This is useful if you want to change the parameters of the existing mapping without losing your position in the stream. You can change which function will receive the stream records, but to change the stream itself, you must create a new mapping. </p> <p>This operation requires permission for the <code>lambda:UpdateEventSourceMapping</code> action.</p>",
19
- "UpdateFunctionCode": "<p> Updates the code for the specified Lambda function. This operation must only be used on an existing Lambda function and cannot be used to update the function configuration. </p> <p>This operation requires permission for the <code>lambda:UpdateFunctionCode</code> action.</p>",
20
- "UpdateFunctionConfiguration": "<p>Updates the configuration parameters for the specified Lambda function by using the values provided in the request. You provide only the parameters you want to change. This operation must only be used on an existing Lambda function and cannot be used to update the function's code. </p> <p>This operation requires permission for the <code>lambda:UpdateFunctionConfiguration</code> action.</p>"
21
- },
22
- "service": "<fullname>AWS Lambda</fullname> <p><b>Overview</b></p> <p>This is the <i>AWS Lambda API Reference</i>. The AWS Lambda Developer Guide provides additional information. For the service overview, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/welcome.html\">What is AWS Lambda</a>, and for information about how the service works, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">AWS Lambda: How it Works</a> in the <i>AWS Lambda Developer Guide</i>.</p>",
23
- "shapes": {
24
- "Action": {
25
- "base": null,
26
- "refs": {
27
- "AddPermissionRequest$Action": "<p>The AWS Lambda action you want to allow in this statement. Each Lambda action is a string starting with \"lambda:\" followed by the API name (see <a>Operations</a>). For example, \"lambda:CreateFunction\". You can use wildcard (\"lambda:*\") to grant permission for all AWS Lambda actions. </p>"
28
- }
29
- },
30
- "AddPermissionRequest": {
31
- "base": null,
32
- "refs": {
33
- }
34
- },
35
- "AddPermissionResponse": {
36
- "base": null,
37
- "refs": {
38
- }
39
- },
40
- "Arn": {
41
- "base": null,
42
- "refs": {
43
- "AddPermissionRequest$SourceArn": "<p>This is optional; however, when granting Amazon S3 permission to invoke your function, you should specify this field with the bucket Amazon Resource Name (ARN) as its value. This ensures that only events generated from the specified bucket can invoke the function. </p> <important>If you add a permission for the Amazon S3 principal without providing the source ARN, any AWS account that creates a mapping to your function ARN can send events to invoke your Lambda function from Amazon S3.</important>",
44
- "CreateEventSourceMappingRequest$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the Amazon Kinesis or the Amazon DynamoDB stream that is the event source. Any record added to this stream could cause AWS Lambda to invoke your Lambda function, it depends on the <code>BatchSize</code>. AWS Lambda POSTs the Amazon Kinesis event, containing records, to your Lambda function as JSON.</p>",
45
- "EventSourceMappingConfiguration$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source of events.</p>",
46
- "ListEventSourceMappingsRequest$EventSourceArn": "<p>The Amazon Resource Name (ARN) of the Amazon Kinesis stream.</p>"
47
- }
48
- },
49
- "BatchSize": {
50
- "base": null,
51
- "refs": {
52
- "CreateEventSourceMappingRequest$BatchSize": "<p>The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function. Your function receives an event with all the retrieved records. The default is 100 records.</p>",
53
- "EventSourceMappingConfiguration$BatchSize": "<p>The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function. Your function receives an event with all the retrieved records.</p>",
54
- "UpdateEventSourceMappingRequest$BatchSize": "<p>The maximum number of stream records that can be sent to your Lambda function for a single invocation.</p>"
55
- }
56
- },
57
- "Blob": {
58
- "base": null,
59
- "refs": {
60
- "FunctionCode$ZipFile": "<p>A base64-encoded .zip file containing your deployment package. For more information about creating a .zip file, go to <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html\">Execution Permissions</a> in the <i>AWS Lambda Developer Guide</i>. </p>",
61
- "InvocationRequest$Payload": "<p>JSON that you want to provide to your Lambda function as input.</p>",
62
- "InvocationResponse$Payload": "<p> It is the JSON representation of the object returned by the Lambda function. In This is present only if the invocation type is \"RequestResponse\". </p> <p>In the event of a function error this field contains a message describing the error. For the <code>Handled</code> errors the Lambda function will report this message. For <code>Unhandled</code> errors AWS Lambda reports the message. </p>",
63
- "UpdateFunctionCodeRequest$ZipFile": "<p>Based64-encoded .zip file containing your packaged source code.</p>"
64
- }
65
- },
66
- "BlobStream": {
67
- "base": null,
68
- "refs": {
69
- "InvokeAsyncRequest$InvokeArgs": "<p>JSON that you want to provide to your Lambda function as input.</p>"
70
- }
71
- },
72
- "CodeStorageExceededException": {
73
- "base": null,
74
- "refs": {
75
- }
76
- },
77
- "CreateEventSourceMappingRequest": {
78
- "base": null,
79
- "refs": {
80
- }
81
- },
82
- "CreateFunctionRequest": {
83
- "base": null,
84
- "refs": {
85
- }
86
- },
87
- "Date": {
88
- "base": null,
89
- "refs": {
90
- "EventSourceMappingConfiguration$LastModified": "<p>The UTC time string indicating the last time the event mapping was updated.</p>"
91
- }
92
- },
93
- "DeleteEventSourceMappingRequest": {
94
- "base": null,
95
- "refs": {
96
- }
97
- },
98
- "DeleteFunctionRequest": {
99
- "base": null,
100
- "refs": {
101
- }
102
- },
103
- "Description": {
104
- "base": null,
105
- "refs": {
106
- "CreateFunctionRequest$Description": "<p>A short, user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.</p>",
107
- "FunctionConfiguration$Description": "<p>The user-provided description.</p>",
108
- "UpdateFunctionConfigurationRequest$Description": "<p>A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.</p>"
109
- }
110
- },
111
- "Enabled": {
112
- "base": null,
113
- "refs": {
114
- "CreateEventSourceMappingRequest$Enabled": "<p>Indicates whether AWS Lambda should begin polling the event source. </p>",
115
- "UpdateEventSourceMappingRequest$Enabled": "<p>Specifies whether AWS Lambda should actively poll the stream or not. If disabled, AWS Lambda will not poll the stream.</p>"
116
- }
117
- },
118
- "EventSourceMappingConfiguration": {
119
- "base": "<p>Describes mapping between an Amazon Kinesis stream and a Lambda function.</p>",
120
- "refs": {
121
- "EventSourceMappingsList$member": null
122
- }
123
- },
124
- "EventSourceMappingsList": {
125
- "base": null,
126
- "refs": {
127
- "ListEventSourceMappingsResponse$EventSourceMappings": "<p>An array of <code>EventSourceMappingConfiguration</code> objects.</p>"
128
- }
129
- },
130
- "EventSourcePosition": {
131
- "base": null,
132
- "refs": {
133
- "CreateEventSourceMappingRequest$StartingPosition": "<p>The position in the stream where AWS Lambda should start reading. For more information, go to <a href=\"http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType\">ShardIteratorType</a> in the <i>Amazon Kinesis API Reference</i>. </p>"
134
- }
135
- },
136
- "FunctionArn": {
137
- "base": null,
138
- "refs": {
139
- "EventSourceMappingConfiguration$FunctionArn": "<p>The Lambda function to invoke when AWS Lambda detects an event on the stream.</p>",
140
- "FunctionConfiguration$FunctionArn": "<p>The Amazon Resource Name (ARN) assigned to the function.</p>"
141
- }
142
- },
143
- "FunctionCode": {
144
- "base": "<p>The code for the Lambda function.</p>",
145
- "refs": {
146
- "CreateFunctionRequest$Code": "<p>The code for the Lambda function. </p>"
147
- }
148
- },
149
- "FunctionCodeLocation": {
150
- "base": "<p>The object for the Lambda function location.</p>",
151
- "refs": {
152
- "GetFunctionResponse$Code": null
153
- }
154
- },
155
- "FunctionConfiguration": {
156
- "base": "<p>A complex type that describes function metadata.</p>",
157
- "refs": {
158
- "FunctionList$member": null,
159
- "GetFunctionResponse$Configuration": null
160
- }
161
- },
162
- "FunctionList": {
163
- "base": null,
164
- "refs": {
165
- "ListFunctionsResponse$Functions": "<p>A list of Lambda functions.</p>"
166
- }
167
- },
168
- "FunctionName": {
169
- "base": null,
170
- "refs": {
171
- "AddPermissionRequest$FunctionName": "<p>Name of the Lambda function whose access policy you are updating by adding a new permission.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
172
- "CreateEventSourceMappingRequest$FunctionName": "<p>The Lambda function to invoke when AWS Lambda detects an event on the stream.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
173
- "CreateFunctionRequest$FunctionName": "<p>The name you want to assign to the function you are uploading. You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. The function names appear in the console and are returned in the <a>ListFunctions</a> API. Function names are used to specify functions to other AWS Lambda APIs, such as <a>Invoke</a>. </p>",
174
- "DeleteFunctionRequest$FunctionName": "<p>The Lambda function to delete.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
175
- "FunctionConfiguration$FunctionName": "<p>The name of the function.</p>",
176
- "GetFunctionConfigurationRequest$FunctionName": "<p>The name of the Lambda function for which you want to retrieve the configuration information.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
177
- "GetFunctionRequest$FunctionName": "<p>The Lambda function name. </p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
178
- "GetPolicyRequest$FunctionName": "<p>Function name whose access policy you want to retrieve. </p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
179
- "InvocationRequest$FunctionName": "<p>The Lambda function name. </p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
180
- "InvokeAsyncRequest$FunctionName": "<p>The Lambda function name.</p>",
181
- "ListEventSourceMappingsRequest$FunctionName": "<p>The name of the Lambda function.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
182
- "RemovePermissionRequest$FunctionName": "<p>Lambda function whose access policy you want to remove a permission from.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
183
- "UpdateEventSourceMappingRequest$FunctionName": "<p>The Lambda function to which you want the stream records sent.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
184
- "UpdateFunctionCodeRequest$FunctionName": "<p>The existing Lambda function name whose code you want to replace.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>",
185
- "UpdateFunctionConfigurationRequest$FunctionName": "<p>The name of the Lambda function.</p> <p> You can specify an unqualified function name (for example, \"Thumbnail\") or you can specify Amazon Resource Name (ARN) of the function (for example, \"arn:aws:lambda:us-west-2:account-id:function:ThumbNail\"). AWS Lambda also allows you to specify only the account ID qualifier (for example, \"account-id:Thumbnail\"). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 character in length. </p>"
186
- }
187
- },
188
- "GetEventSourceMappingRequest": {
189
- "base": null,
190
- "refs": {
191
- }
192
- },
193
- "GetFunctionConfigurationRequest": {
194
- "base": null,
195
- "refs": {
196
- }
197
- },
198
- "GetFunctionRequest": {
199
- "base": null,
200
- "refs": {
201
- }
202
- },
203
- "GetFunctionResponse": {
204
- "base": "<p>This response contains the object for the Lambda function location (see <a>API_FunctionCodeLocation</a></p>",
205
- "refs": {
206
- }
207
- },
208
- "GetPolicyRequest": {
209
- "base": null,
210
- "refs": {
211
- }
212
- },
213
- "GetPolicyResponse": {
214
- "base": null,
215
- "refs": {
216
- }
217
- },
218
- "Handler": {
219
- "base": null,
220
- "refs": {
221
- "CreateFunctionRequest$Handler": "<p>The function within your code that Lambda calls to begin execution. For Node.js, it is the <i>module-name</i>.<i>export</i> value in your function. </p>",
222
- "FunctionConfiguration$Handler": "<p>The function Lambda calls to begin executing your function.</p>",
223
- "UpdateFunctionConfigurationRequest$Handler": "<p>The function that Lambda calls to begin executing your function. For Node.js, it is the <i>module-name.export</i> value in your function. </p>"
224
- }
225
- },
226
- "HttpStatus": {
227
- "base": null,
228
- "refs": {
229
- "InvokeAsyncResponse$Status": "<p>It will be 202 upon success.</p>"
230
- }
231
- },
232
- "Integer": {
233
- "base": null,
234
- "refs": {
235
- "InvocationResponse$StatusCode": "<p>The HTTP status code will be in the 200 range for successful request. For the \"RequestResonse\" invocation type this status code will be 200. For the \"Event\" invocation type this status code will be 202. For the \"DryRun\" invocation type the status code will be 204. </p>"
236
- }
237
- },
238
- "InvalidParameterValueException": {
239
- "base": "<p>One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the <code>CreateFunction</code> or the <code>UpdateFunctionConfiguration</code> API, that AWS Lambda is unable to assume you will get this exception. </p>",
240
- "refs": {
241
- }
242
- },
243
- "InvalidRequestContentException": {
244
- "base": "<p>The request body could not be parsed as JSON.</p>",
245
- "refs": {
246
- }
247
- },
248
- "InvocationRequest": {
249
- "base": null,
250
- "refs": {
251
- }
252
- },
253
- "InvocationResponse": {
254
- "base": "<p>Upon success, returns an empty response. Otherwise, throws an exception.</p>",
255
- "refs": {
256
- }
257
- },
258
- "InvocationType": {
259
- "base": null,
260
- "refs": {
261
- "InvocationRequest$InvocationType": "<p>By default, the <code>Invoke</code> API assumes \"RequestResponse\" invocation type. You can optionally request asynchronous execution by specifying \"Event\" as the <code>InvocationType</code>. You can also use this parameter to request AWS Lambda to not execute the function but do some verification, such as if the caller is authorized to invoke the function and if the inputs are valid. You request this by specifying \"DryRun\" as the <code>InvocationType</code>. This is useful in a cross-account scenario when you want to verify access to a function without running it. </p>"
262
- }
263
- },
264
- "InvokeAsyncRequest": {
265
- "base": null,
266
- "refs": {
267
- }
268
- },
269
- "InvokeAsyncResponse": {
270
- "base": "<p>Upon success, it returns empty response. Otherwise, throws an exception.</p>",
271
- "refs": {
272
- }
273
- },
274
- "ListEventSourceMappingsRequest": {
275
- "base": null,
276
- "refs": {
277
- }
278
- },
279
- "ListEventSourceMappingsResponse": {
280
- "base": "<p>Contains a list of event sources (see <a>API_EventSourceMappingConfiguration</a>)</p>",
281
- "refs": {
282
- }
283
- },
284
- "ListFunctionsRequest": {
285
- "base": null,
286
- "refs": {
287
- }
288
- },
289
- "ListFunctionsResponse": {
290
- "base": "<p>Contains a list of AWS Lambda function configurations (see <a>FunctionConfiguration</a>.</p>",
291
- "refs": {
292
- }
293
- },
294
- "LogType": {
295
- "base": null,
296
- "refs": {
297
- "InvocationRequest$LogType": "<p>You can set this optional parameter to \"Tail\" in the request only if you specify the <code>InvocationType</code> parameter with value \"RequestResponse\". In this case, AWS Lambda returns the base64-encoded last 4 KB of log data produced by your Lambda function in the <code>x-amz-log-results</code> header. </p>"
298
- }
299
- },
300
- "Long": {
301
- "base": null,
302
- "refs": {
303
- "FunctionConfiguration$CodeSize": "<p>The size, in bytes, of the function .zip file you uploaded.</p>"
304
- }
305
- },
306
- "MaxListItems": {
307
- "base": null,
308
- "refs": {
309
- "ListEventSourceMappingsRequest$MaxItems": "<p>Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.</p>",
310
- "ListFunctionsRequest$MaxItems": "<p>Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.</p>"
311
- }
312
- },
313
- "MemorySize": {
314
- "base": null,
315
- "refs": {
316
- "CreateFunctionRequest$MemorySize": "<p>The amount of memory, in MB, your Lambda function is given. Lambda uses this memory size to infer the amount of CPU and memory allocated to your function. Your function use-case determines your CPU and memory requirements. For example, a database operation might need less memory compared to an image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.</p>",
317
- "FunctionConfiguration$MemorySize": "<p>The memory size, in MB, you configured for the function. Must be a multiple of 64 MB.</p>",
318
- "UpdateFunctionConfigurationRequest$MemorySize": "<p>The amount of memory, in MB, your Lambda function is given. AWS Lambda uses this memory size to infer the amount of CPU allocated to your function. Your function use-case determines your CPU and memory requirements. For example, a database operation might need less memory compared to an image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.</p>"
319
- }
320
- },
321
- "PolicyLengthExceededException": {
322
- "base": "<p>Lambda function access policy is limited to 20 KB.</p>",
323
- "refs": {
324
- }
325
- },
326
- "Principal": {
327
- "base": null,
328
- "refs": {
329
- "AddPermissionRequest$Principal": "<p>The principal who is getting this permission. It can be Amazon S3 service Principal (\"s3.amazonaws.com\") if you want Amazon S3 to invoke the function, an AWS account ID if you are granting cross-account permission, or any valid AWS service principal such as \"sns.amazonaws.com\". For example, you might want to allow a custom application in another AWS account to push events to AWS Lambda by invoking your function. </p>"
330
- }
331
- },
332
- "RemovePermissionRequest": {
333
- "base": null,
334
- "refs": {
335
- }
336
- },
337
- "RequestTooLargeException": {
338
- "base": null,
339
- "refs": {
340
- }
341
- },
342
- "ResourceConflictException": {
343
- "base": "<p>The resource already exists.</p>",
344
- "refs": {
345
- }
346
- },
347
- "ResourceNotFoundException": {
348
- "base": "<p>The resource (for example, a Lambda function or access policy statement) specified in the request does not exist.</p>",
349
- "refs": {
350
- }
351
- },
352
- "RoleArn": {
353
- "base": null,
354
- "refs": {
355
- "CreateFunctionRequest$Role": "<p>The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any other Amazon Web Services (AWS) resources. For more information, see <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html\">AWS Lambda: How it Works</a> </p>",
356
- "FunctionConfiguration$Role": "<p>The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it executes your function to access any other Amazon Web Services (AWS) resources. </p>",
357
- "UpdateFunctionConfigurationRequest$Role": "<p>The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function. </p>"
358
- }
359
- },
360
- "Runtime": {
361
- "base": null,
362
- "refs": {
363
- "CreateFunctionRequest$Runtime": "<p>The runtime environment for the Lambda function you are uploading. Currently, Lambda supports only \"nodejs\" as the runtime.</p>",
364
- "FunctionConfiguration$Runtime": "<p>The runtime environment for the Lambda function.</p>"
365
- }
366
- },
367
- "S3Bucket": {
368
- "base": null,
369
- "refs": {
370
- "FunctionCode$S3Bucket": "<p>Amazon S3 bucket name where the .zip file containing your deployment package is stored. This bucket must reside in the same AWS region where you are creating the Lambda function. </p>",
371
- "UpdateFunctionCodeRequest$S3Bucket": "<p>Amazon S3 bucket name where the .zip file containing your deployment package is stored. This bucket must reside in the same AWS region where you are creating the Lambda function.</p>"
372
- }
373
- },
374
- "S3Key": {
375
- "base": null,
376
- "refs": {
377
- "FunctionCode$S3Key": "<p>The Amazon S3 object (the deployment package) key name you want to upload. </p>",
378
- "UpdateFunctionCodeRequest$S3Key": "<p>The Amazon S3 object (the deployment package) key name you want to upload. </p>"
379
- }
380
- },
381
- "S3ObjectVersion": {
382
- "base": null,
383
- "refs": {
384
- "FunctionCode$S3ObjectVersion": "<p>The Amazon S3 object (the deployment package) version you want to upload.</p>",
385
- "UpdateFunctionCodeRequest$S3ObjectVersion": "<p>The Amazon S3 object (the deployment package) version you want to upload.</p>"
386
- }
387
- },
388
- "ServiceException": {
389
- "base": "<p>The AWS Lambda service encountered an internal error.</p>",
390
- "refs": {
391
- }
392
- },
393
- "SourceOwner": {
394
- "base": null,
395
- "refs": {
396
- "AddPermissionRequest$SourceAccount": "<p>The AWS account ID (without a hyphen) of the source owner. If the <code>SourceArn</code> identifies a bucket, then this is the bucket owner's account ID. You can use this additional condition to ensure the bucket you specify is owned by a specific account (it is possible the bucket owner deleted the bucket and some other AWS account created the bucket). You can also use this condition to specify all sources (that is, you don't specify the <code>SourceArn</code>) owned by a specific account. </p>"
397
- }
398
- },
399
- "StatementId": {
400
- "base": null,
401
- "refs": {
402
- "AddPermissionRequest$StatementId": "<p>A unique statement identifier.</p>",
403
- "RemovePermissionRequest$StatementId": "<p>Statement ID of the permission to remove.</p>"
404
- }
405
- },
406
- "String": {
407
- "base": null,
408
- "refs": {
409
- "AddPermissionResponse$Statement": "<p>The permission statement you specified in the request. The response returns the same as a string using \"\\\" as an escape character in the JSON. </p>",
410
- "CodeStorageExceededException$Type": null,
411
- "CodeStorageExceededException$message": null,
412
- "DeleteEventSourceMappingRequest$UUID": "<p>The event source mapping ID.</p>",
413
- "EventSourceMappingConfiguration$UUID": "<p>The AWS Lambda assigned opaque identifier for the mapping.</p>",
414
- "EventSourceMappingConfiguration$LastProcessingResult": "<p>The result of the last AWS Lambda invocation of your Lambda function.</p>",
415
- "EventSourceMappingConfiguration$State": "<p>The state of the event source mapping. It can be \"Creating\", \"Enabled\", \"Disabled\", \"Enabling\", \"Disabling\", \"Updating\", or \"Deleting\".</p>",
416
- "EventSourceMappingConfiguration$StateTransitionReason": "<p>The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.</p>",
417
- "FunctionCodeLocation$RepositoryType": "<p>The repository from which you can download the function.</p>",
418
- "FunctionCodeLocation$Location": "<p>The presigned URL you can use to download the function's .zip file that you previously uploaded. The URL is valid for up to 10 minutes.</p>",
419
- "GetEventSourceMappingRequest$UUID": "<p>The AWS Lambda assigned ID of the event source mapping.</p>",
420
- "GetPolicyResponse$Policy": "<p>The access policy associated with the specified function. The response returns the same as a string using \"\\\" as an escape character in the JSON. </p>",
421
- "InvalidParameterValueException$Type": null,
422
- "InvalidParameterValueException$message": null,
423
- "InvalidRequestContentException$Type": null,
424
- "InvalidRequestContentException$message": null,
425
- "InvocationRequest$ClientContext": "<p>Using the <code>ClientContext</code> you can pass client-specific information to the Lambda function you are invoking. You can then process the client information in your Lambda function as you choose through the context variable. For an example of a ClientContext JSON, go to <a href=\"http://docs.aws.amazon.com/mobileanalytics/latest/ug/PutEvents.html\">PutEvents</a> in the <i>Amazon Mobile Analytics API Reference and User Guide</i>.</p> <p>The ClientContext JSON must be base64-encoded.</p>",
426
- "InvocationResponse$FunctionError": "<p>Indicates whether an error occurred while executing the Lambda function. If an error occurred this field will have one of two values; <code>Handled</code> or <code>Unhandled</code>. <code>Handled</code> errors are errors that are reported by the function while the <code>Unhandled</code> errors are those detected and reported by AWS Lambda. Unhandled errors include out of memory errors and function timeouts. For information about how to report an <code>Handled</code> error, see <a href=\"http://docs.aws.amazon.com/lambda/latest/dg/programming-model.html\">Programming Model</a>. </p>",
427
- "InvocationResponse$LogResult": "<p> It is the base64-encoded logs for the Lambda function invocation. This is present only if the invocation type is \"RequestResponse\" and the logs were requested. </p>",
428
- "ListEventSourceMappingsRequest$Marker": "<p>Optional string. An opaque pagination token returned from a previous <code>ListEventSourceMappings</code> operation. If present, specifies to continue the list from where the returning call left off. </p>",
429
- "ListEventSourceMappingsResponse$NextMarker": "<p>A string, present if there are more event source mappings.</p>",
430
- "ListFunctionsRequest$Marker": "<p>Optional string. An opaque pagination token returned from a previous <code>ListFunctions</code> operation. If present, indicates where to continue the listing. </p>",
431
- "ListFunctionsResponse$NextMarker": "<p>A string, present if there are more functions.</p>",
432
- "PolicyLengthExceededException$Type": null,
433
- "PolicyLengthExceededException$message": null,
434
- "RequestTooLargeException$Type": null,
435
- "RequestTooLargeException$message": null,
436
- "ResourceConflictException$Type": null,
437
- "ResourceConflictException$message": null,
438
- "ResourceNotFoundException$Type": null,
439
- "ResourceNotFoundException$Message": null,
440
- "ServiceException$Type": null,
441
- "ServiceException$Message": null,
442
- "TooManyRequestsException$retryAfterSeconds": "<p>The number of seconds the caller should wait before retrying.</p>",
443
- "TooManyRequestsException$Type": null,
444
- "TooManyRequestsException$message": null,
445
- "UnsupportedMediaTypeException$Type": null,
446
- "UnsupportedMediaTypeException$message": null,
447
- "UpdateEventSourceMappingRequest$UUID": "<p>The event source mapping identifier.</p>"
448
- }
449
- },
450
- "Timeout": {
451
- "base": null,
452
- "refs": {
453
- "CreateFunctionRequest$Timeout": "<p>The function execution time at which Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds. </p>",
454
- "FunctionConfiguration$Timeout": "<p>The function execution time at which Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds. </p>",
455
- "UpdateFunctionConfigurationRequest$Timeout": "<p>The function execution time at which AWS Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds. </p>"
456
- }
457
- },
458
- "Timestamp": {
459
- "base": null,
460
- "refs": {
461
- "FunctionConfiguration$LastModified": "<p>The timestamp of the last time you updated the function.</p>"
462
- }
463
- },
464
- "TooManyRequestsException": {
465
- "base": null,
466
- "refs": {
467
- }
468
- },
469
- "UnsupportedMediaTypeException": {
470
- "base": null,
471
- "refs": {
472
- }
473
- },
474
- "UpdateEventSourceMappingRequest": {
475
- "base": null,
476
- "refs": {
477
- }
478
- },
479
- "UpdateFunctionCodeRequest": {
480
- "base": null,
481
- "refs": {
482
- }
483
- },
484
- "UpdateFunctionConfigurationRequest": {
485
- "base": null,
486
- "refs": {
487
- }
488
- }
489
- }
490
- }