/api/vendor/aws/aws-sdk-php/src/Aws/Lambda/Resources/lambda-2014-11-11.php

https://gitlab.com/x33n/respond · PHP · 742 lines · 727 code · 1 blank · 14 comment · 0 complexity · 8d9f4d21733aedbfd336173982448fad MD5 · raw file

  1. <?php
  2. /**
  3. * Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License").
  6. * You may not use this file except in compliance with the License.
  7. * A copy of the License is located at
  8. *
  9. * http://aws.amazon.com/apache2.0
  10. *
  11. * or in the "license" file accompanying this file. This file is distributed
  12. * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  13. * express or implied. See the License for the specific language governing
  14. * permissions and limitations under the License.
  15. */
  16. return array (
  17. 'apiVersion' => '2014-11-11',
  18. 'endpointPrefix' => 'lambda',
  19. 'serviceFullName' => 'AWS Lambda',
  20. 'serviceType' => 'rest-json',
  21. 'signatureVersion' => 'v4',
  22. 'namespace' => 'Lambda',
  23. 'operations' => array(
  24. 'AddEventSource' => array(
  25. 'httpMethod' => 'POST',
  26. 'uri' => '/2014-11-13/event-source-mappings/',
  27. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  28. 'responseClass' => 'EventSourceConfiguration',
  29. 'responseType' => 'model',
  30. 'parameters' => array(
  31. 'EventSource' => array(
  32. 'required' => true,
  33. 'type' => 'string',
  34. 'location' => 'json',
  35. ),
  36. 'FunctionName' => array(
  37. 'required' => true,
  38. 'type' => 'string',
  39. 'location' => 'json',
  40. 'minLength' => 1,
  41. 'maxLength' => 64,
  42. ),
  43. 'Role' => array(
  44. 'required' => true,
  45. 'type' => 'string',
  46. 'location' => 'json',
  47. ),
  48. 'BatchSize' => array(
  49. 'type' => 'numeric',
  50. 'location' => 'json',
  51. ),
  52. 'Parameters' => array(
  53. 'type' => 'object',
  54. 'location' => 'json',
  55. 'additionalProperties' => array(
  56. 'type' => 'string',
  57. 'data' => array(
  58. 'shape_name' => 'String',
  59. ),
  60. ),
  61. ),
  62. ),
  63. 'errorResponses' => array(
  64. array(
  65. 'reason' => 'The AWS Lambda service encountered an internal error.',
  66. 'class' => 'ServiceException',
  67. ),
  68. array(
  69. 'reason' => 'One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the UploadFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.',
  70. 'class' => 'InvalidParameterValueException',
  71. ),
  72. ),
  73. ),
  74. 'DeleteFunction' => array(
  75. 'httpMethod' => 'DELETE',
  76. 'uri' => '/2014-11-13/functions/{FunctionName}',
  77. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  78. 'responseClass' => 'EmptyOutput',
  79. 'responseType' => 'model',
  80. 'parameters' => array(
  81. 'FunctionName' => array(
  82. 'required' => true,
  83. 'type' => 'string',
  84. 'location' => 'uri',
  85. 'minLength' => 1,
  86. 'maxLength' => 64,
  87. ),
  88. ),
  89. 'errorResponses' => array(
  90. array(
  91. 'reason' => 'The AWS Lambda service encountered an internal error.',
  92. 'class' => 'ServiceException',
  93. ),
  94. array(
  95. 'reason' => 'The function or the event source specified in the request does not exist.',
  96. 'class' => 'ResourceNotFoundException',
  97. ),
  98. ),
  99. ),
  100. 'GetEventSource' => array(
  101. 'httpMethod' => 'GET',
  102. 'uri' => '/2014-11-13/event-source-mappings/{UUID}',
  103. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  104. 'responseClass' => 'EventSourceConfiguration',
  105. 'responseType' => 'model',
  106. 'parameters' => array(
  107. 'UUID' => array(
  108. 'required' => true,
  109. 'type' => 'string',
  110. 'location' => 'uri',
  111. ),
  112. ),
  113. 'errorResponses' => array(
  114. array(
  115. 'reason' => 'The AWS Lambda service encountered an internal error.',
  116. 'class' => 'ServiceException',
  117. ),
  118. array(
  119. 'reason' => 'The function or the event source specified in the request does not exist.',
  120. 'class' => 'ResourceNotFoundException',
  121. ),
  122. array(
  123. 'reason' => 'One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the UploadFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.',
  124. 'class' => 'InvalidParameterValueException',
  125. ),
  126. ),
  127. ),
  128. 'GetFunction' => array(
  129. 'httpMethod' => 'GET',
  130. 'uri' => '/2014-11-13/functions/{FunctionName}',
  131. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  132. 'responseClass' => 'GetFunctionResponse',
  133. 'responseType' => 'model',
  134. 'parameters' => array(
  135. 'FunctionName' => array(
  136. 'required' => true,
  137. 'type' => 'string',
  138. 'location' => 'uri',
  139. 'minLength' => 1,
  140. 'maxLength' => 64,
  141. ),
  142. ),
  143. 'errorResponses' => array(
  144. array(
  145. 'reason' => 'The AWS Lambda service encountered an internal error.',
  146. 'class' => 'ServiceException',
  147. ),
  148. array(
  149. 'reason' => 'The function or the event source specified in the request does not exist.',
  150. 'class' => 'ResourceNotFoundException',
  151. ),
  152. ),
  153. ),
  154. 'GetFunctionConfiguration' => array(
  155. 'httpMethod' => 'GET',
  156. 'uri' => '/2014-11-13/functions/{FunctionName}/configuration',
  157. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  158. 'responseClass' => 'FunctionConfiguration',
  159. 'responseType' => 'model',
  160. 'parameters' => array(
  161. 'FunctionName' => array(
  162. 'required' => true,
  163. 'type' => 'string',
  164. 'location' => 'uri',
  165. 'minLength' => 1,
  166. 'maxLength' => 64,
  167. ),
  168. ),
  169. 'errorResponses' => array(
  170. array(
  171. 'reason' => 'The AWS Lambda service encountered an internal error.',
  172. 'class' => 'ServiceException',
  173. ),
  174. array(
  175. 'reason' => 'The function or the event source specified in the request does not exist.',
  176. 'class' => 'ResourceNotFoundException',
  177. ),
  178. ),
  179. ),
  180. 'InvokeAsync' => array(
  181. 'httpMethod' => 'POST',
  182. 'uri' => '/2014-11-13/functions/{FunctionName}/invoke-async/',
  183. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  184. 'responseClass' => 'InvokeAsyncResponse',
  185. 'responseType' => 'model',
  186. 'parameters' => array(
  187. 'FunctionName' => array(
  188. 'required' => true,
  189. 'type' => 'string',
  190. 'location' => 'uri',
  191. 'minLength' => 1,
  192. 'maxLength' => 64,
  193. ),
  194. 'InvokeArgs' => array(
  195. 'required' => true,
  196. 'type' => array(
  197. 'string',
  198. 'object',
  199. ),
  200. 'location' => 'body',
  201. ),
  202. ),
  203. 'errorResponses' => array(
  204. array(
  205. 'reason' => 'The AWS Lambda service encountered an internal error.',
  206. 'class' => 'ServiceException',
  207. ),
  208. array(
  209. 'reason' => 'The function or the event source specified in the request does not exist.',
  210. 'class' => 'ResourceNotFoundException',
  211. ),
  212. array(
  213. 'reason' => 'The request body could not be parsed as JSON.',
  214. 'class' => 'InvalidRequestContentException',
  215. ),
  216. ),
  217. ),
  218. 'ListEventSources' => array(
  219. 'httpMethod' => 'GET',
  220. 'uri' => '/2014-11-13/event-source-mappings/',
  221. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  222. 'responseClass' => 'ListEventSourcesResponse',
  223. 'responseType' => 'model',
  224. 'parameters' => array(
  225. 'EventSourceArn' => array(
  226. 'type' => 'string',
  227. 'location' => 'query',
  228. 'sentAs' => 'EventSource',
  229. ),
  230. 'FunctionName' => array(
  231. 'type' => 'string',
  232. 'location' => 'query',
  233. 'minLength' => 1,
  234. 'maxLength' => 64,
  235. ),
  236. 'Marker' => array(
  237. 'type' => 'string',
  238. 'location' => 'query',
  239. ),
  240. 'MaxItems' => array(
  241. 'type' => 'numeric',
  242. 'location' => 'query',
  243. 'minimum' => 1,
  244. 'maximum' => 10000,
  245. ),
  246. ),
  247. 'errorResponses' => array(
  248. array(
  249. 'reason' => 'The AWS Lambda service encountered an internal error.',
  250. 'class' => 'ServiceException',
  251. ),
  252. array(
  253. 'reason' => 'The function or the event source specified in the request does not exist.',
  254. 'class' => 'ResourceNotFoundException',
  255. ),
  256. array(
  257. 'reason' => 'One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the UploadFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.',
  258. 'class' => 'InvalidParameterValueException',
  259. ),
  260. ),
  261. ),
  262. 'ListFunctions' => array(
  263. 'httpMethod' => 'GET',
  264. 'uri' => '/2014-11-13/functions/',
  265. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  266. 'responseClass' => 'ListFunctionsResponse',
  267. 'responseType' => 'model',
  268. 'parameters' => array(
  269. 'Marker' => array(
  270. 'type' => 'string',
  271. 'location' => 'query',
  272. ),
  273. 'MaxItems' => array(
  274. 'type' => 'numeric',
  275. 'location' => 'query',
  276. 'minimum' => 1,
  277. 'maximum' => 10000,
  278. ),
  279. ),
  280. 'errorResponses' => array(
  281. array(
  282. 'reason' => 'The AWS Lambda service encountered an internal error.',
  283. 'class' => 'ServiceException',
  284. ),
  285. ),
  286. ),
  287. 'RemoveEventSource' => array(
  288. 'httpMethod' => 'DELETE',
  289. 'uri' => '/2014-11-13/event-source-mappings/{UUID}',
  290. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  291. 'responseClass' => 'EmptyOutput',
  292. 'responseType' => 'model',
  293. 'parameters' => array(
  294. 'UUID' => array(
  295. 'required' => true,
  296. 'type' => 'string',
  297. 'location' => 'uri',
  298. ),
  299. ),
  300. 'errorResponses' => array(
  301. array(
  302. 'reason' => 'The AWS Lambda service encountered an internal error.',
  303. 'class' => 'ServiceException',
  304. ),
  305. array(
  306. 'reason' => 'The function or the event source specified in the request does not exist.',
  307. 'class' => 'ResourceNotFoundException',
  308. ),
  309. array(
  310. 'reason' => 'One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the UploadFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.',
  311. 'class' => 'InvalidParameterValueException',
  312. ),
  313. ),
  314. ),
  315. 'UpdateFunctionConfiguration' => array(
  316. 'httpMethod' => 'PUT',
  317. 'uri' => '/2014-11-13/functions/{FunctionName}/configuration',
  318. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  319. 'responseClass' => 'FunctionConfiguration',
  320. 'responseType' => 'model',
  321. 'parameters' => array(
  322. 'FunctionName' => array(
  323. 'required' => true,
  324. 'type' => 'string',
  325. 'location' => 'uri',
  326. 'minLength' => 1,
  327. 'maxLength' => 64,
  328. ),
  329. 'Role' => array(
  330. 'type' => 'string',
  331. 'location' => 'query',
  332. ),
  333. 'Handler' => array(
  334. 'type' => 'string',
  335. 'location' => 'query',
  336. ),
  337. 'Description' => array(
  338. 'type' => 'string',
  339. 'location' => 'query',
  340. 'maxLength' => 256,
  341. ),
  342. 'Timeout' => array(
  343. 'type' => 'numeric',
  344. 'location' => 'query',
  345. 'minimum' => 1,
  346. 'maximum' => 60,
  347. ),
  348. 'MemorySize' => array(
  349. 'type' => 'numeric',
  350. 'location' => 'query',
  351. 'minimum' => 64,
  352. 'maximum' => 1024,
  353. ),
  354. ),
  355. 'errorResponses' => array(
  356. array(
  357. 'reason' => 'The AWS Lambda service encountered an internal error.',
  358. 'class' => 'ServiceException',
  359. ),
  360. array(
  361. 'reason' => 'The function or the event source specified in the request does not exist.',
  362. 'class' => 'ResourceNotFoundException',
  363. ),
  364. array(
  365. 'reason' => 'One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the UploadFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.',
  366. 'class' => 'InvalidParameterValueException',
  367. ),
  368. ),
  369. ),
  370. 'UploadFunction' => array(
  371. 'httpMethod' => 'PUT',
  372. 'uri' => '/2014-11-13/functions/{FunctionName}',
  373. 'class' => 'Guzzle\\Service\\Command\\OperationCommand',
  374. 'responseClass' => 'FunctionConfiguration',
  375. 'responseType' => 'model',
  376. 'parameters' => array(
  377. 'FunctionName' => array(
  378. 'required' => true,
  379. 'type' => 'string',
  380. 'location' => 'uri',
  381. 'minLength' => 1,
  382. 'maxLength' => 64,
  383. ),
  384. 'FunctionZip' => array(
  385. 'required' => true,
  386. 'type' => array(
  387. 'string',
  388. 'object',
  389. ),
  390. 'location' => 'body',
  391. ),
  392. 'Runtime' => array(
  393. 'required' => true,
  394. 'type' => 'string',
  395. 'location' => 'query',
  396. ),
  397. 'Role' => array(
  398. 'required' => true,
  399. 'type' => 'string',
  400. 'location' => 'query',
  401. ),
  402. 'Handler' => array(
  403. 'required' => true,
  404. 'type' => 'string',
  405. 'location' => 'query',
  406. ),
  407. 'Mode' => array(
  408. 'required' => true,
  409. 'type' => 'string',
  410. 'location' => 'query',
  411. ),
  412. 'Description' => array(
  413. 'type' => 'string',
  414. 'location' => 'query',
  415. 'maxLength' => 256,
  416. ),
  417. 'Timeout' => array(
  418. 'type' => 'numeric',
  419. 'location' => 'query',
  420. 'minimum' => 1,
  421. 'maximum' => 60,
  422. ),
  423. 'MemorySize' => array(
  424. 'type' => 'numeric',
  425. 'location' => 'query',
  426. 'minimum' => 64,
  427. 'maximum' => 1024,
  428. ),
  429. ),
  430. 'errorResponses' => array(
  431. array(
  432. 'reason' => 'The AWS Lambda service encountered an internal error.',
  433. 'class' => 'ServiceException',
  434. ),
  435. array(
  436. 'reason' => 'One of the parameters in the request is invalid. For example, if you provided an IAM role for AWS Lambda to assume in the UploadFunction or the UpdateFunctionConfiguration API, that AWS Lambda is unable to assume you will get this exception.',
  437. 'class' => 'InvalidParameterValueException',
  438. ),
  439. array(
  440. 'reason' => 'The function or the event source specified in the request does not exist.',
  441. 'class' => 'ResourceNotFoundException',
  442. ),
  443. ),
  444. ),
  445. ),
  446. 'models' => array(
  447. 'EventSourceConfiguration' => array(
  448. 'type' => 'object',
  449. 'additionalProperties' => true,
  450. 'properties' => array(
  451. 'UUID' => array(
  452. 'type' => 'string',
  453. 'location' => 'json',
  454. ),
  455. 'BatchSize' => array(
  456. 'type' => 'numeric',
  457. 'location' => 'json',
  458. ),
  459. 'EventSource' => array(
  460. 'type' => 'string',
  461. 'location' => 'json',
  462. ),
  463. 'FunctionName' => array(
  464. 'type' => 'string',
  465. 'location' => 'json',
  466. ),
  467. 'Parameters' => array(
  468. 'type' => 'object',
  469. 'location' => 'json',
  470. 'additionalProperties' => array(
  471. 'type' => 'string',
  472. ),
  473. ),
  474. 'Role' => array(
  475. 'type' => 'string',
  476. 'location' => 'json',
  477. ),
  478. 'LastModified' => array(
  479. 'type' => 'string',
  480. 'location' => 'json',
  481. ),
  482. 'IsActive' => array(
  483. 'type' => 'string',
  484. 'location' => 'json',
  485. ),
  486. 'Status' => array(
  487. 'type' => 'string',
  488. 'location' => 'json',
  489. ),
  490. ),
  491. ),
  492. 'EmptyOutput' => array(
  493. 'type' => 'object',
  494. 'additionalProperties' => true,
  495. ),
  496. 'GetFunctionResponse' => array(
  497. 'type' => 'object',
  498. 'additionalProperties' => true,
  499. 'properties' => array(
  500. 'Configuration' => array(
  501. 'type' => 'object',
  502. 'location' => 'json',
  503. 'properties' => array(
  504. 'FunctionName' => array(
  505. 'type' => 'string',
  506. ),
  507. 'FunctionARN' => array(
  508. 'type' => 'string',
  509. ),
  510. 'ConfigurationId' => array(
  511. 'type' => 'string',
  512. ),
  513. 'Runtime' => array(
  514. 'type' => 'string',
  515. ),
  516. 'Role' => array(
  517. 'type' => 'string',
  518. ),
  519. 'Handler' => array(
  520. 'type' => 'string',
  521. ),
  522. 'Mode' => array(
  523. 'type' => 'string',
  524. ),
  525. 'CodeSize' => array(
  526. 'type' => 'numeric',
  527. ),
  528. 'Description' => array(
  529. 'type' => 'string',
  530. ),
  531. 'Timeout' => array(
  532. 'type' => 'numeric',
  533. ),
  534. 'MemorySize' => array(
  535. 'type' => 'numeric',
  536. ),
  537. 'LastModified' => array(
  538. 'type' => 'string',
  539. ),
  540. ),
  541. ),
  542. 'Code' => array(
  543. 'type' => 'object',
  544. 'location' => 'json',
  545. 'properties' => array(
  546. 'RepositoryType' => array(
  547. 'type' => 'string',
  548. ),
  549. 'Location' => array(
  550. 'type' => 'string',
  551. ),
  552. ),
  553. ),
  554. ),
  555. ),
  556. 'FunctionConfiguration' => array(
  557. 'type' => 'object',
  558. 'additionalProperties' => true,
  559. 'properties' => array(
  560. 'FunctionName' => array(
  561. 'type' => 'string',
  562. 'location' => 'json',
  563. ),
  564. 'FunctionARN' => array(
  565. 'type' => 'string',
  566. 'location' => 'json',
  567. ),
  568. 'ConfigurationId' => array(
  569. 'type' => 'string',
  570. 'location' => 'json',
  571. ),
  572. 'Runtime' => array(
  573. 'type' => 'string',
  574. 'location' => 'json',
  575. ),
  576. 'Role' => array(
  577. 'type' => 'string',
  578. 'location' => 'json',
  579. ),
  580. 'Handler' => array(
  581. 'type' => 'string',
  582. 'location' => 'json',
  583. ),
  584. 'Mode' => array(
  585. 'type' => 'string',
  586. 'location' => 'json',
  587. ),
  588. 'CodeSize' => array(
  589. 'type' => 'numeric',
  590. 'location' => 'json',
  591. ),
  592. 'Description' => array(
  593. 'type' => 'string',
  594. 'location' => 'json',
  595. ),
  596. 'Timeout' => array(
  597. 'type' => 'numeric',
  598. 'location' => 'json',
  599. ),
  600. 'MemorySize' => array(
  601. 'type' => 'numeric',
  602. 'location' => 'json',
  603. ),
  604. 'LastModified' => array(
  605. 'type' => 'string',
  606. 'location' => 'json',
  607. ),
  608. ),
  609. ),
  610. 'InvokeAsyncResponse' => array(
  611. 'type' => 'object',
  612. 'additionalProperties' => true,
  613. 'properties' => array(
  614. 'Status' => array(
  615. 'type' => 'numeric',
  616. 'location' => 'statusCode',
  617. ),
  618. ),
  619. ),
  620. 'ListEventSourcesResponse' => array(
  621. 'type' => 'object',
  622. 'additionalProperties' => true,
  623. 'properties' => array(
  624. 'NextMarker' => array(
  625. 'type' => 'string',
  626. 'location' => 'json',
  627. ),
  628. 'EventSources' => array(
  629. 'type' => 'array',
  630. 'location' => 'json',
  631. 'items' => array(
  632. 'name' => 'EventSourceConfiguration',
  633. 'type' => 'object',
  634. 'properties' => array(
  635. 'UUID' => array(
  636. 'type' => 'string',
  637. ),
  638. 'BatchSize' => array(
  639. 'type' => 'numeric',
  640. ),
  641. 'EventSource' => array(
  642. 'type' => 'string',
  643. ),
  644. 'FunctionName' => array(
  645. 'type' => 'string',
  646. ),
  647. 'Parameters' => array(
  648. 'type' => 'object',
  649. 'additionalProperties' => array(
  650. 'type' => 'string',
  651. ),
  652. ),
  653. 'Role' => array(
  654. 'type' => 'string',
  655. ),
  656. 'LastModified' => array(
  657. 'type' => 'string',
  658. ),
  659. 'IsActive' => array(
  660. 'type' => 'string',
  661. ),
  662. 'Status' => array(
  663. 'type' => 'string',
  664. ),
  665. ),
  666. ),
  667. ),
  668. ),
  669. ),
  670. 'ListFunctionsResponse' => array(
  671. 'type' => 'object',
  672. 'additionalProperties' => true,
  673. 'properties' => array(
  674. 'NextMarker' => array(
  675. 'type' => 'string',
  676. 'location' => 'json',
  677. ),
  678. 'Functions' => array(
  679. 'type' => 'array',
  680. 'location' => 'json',
  681. 'items' => array(
  682. 'name' => 'FunctionConfiguration',
  683. 'type' => 'object',
  684. 'properties' => array(
  685. 'FunctionName' => array(
  686. 'type' => 'string',
  687. ),
  688. 'FunctionARN' => array(
  689. 'type' => 'string',
  690. ),
  691. 'ConfigurationId' => array(
  692. 'type' => 'string',
  693. ),
  694. 'Runtime' => array(
  695. 'type' => 'string',
  696. ),
  697. 'Role' => array(
  698. 'type' => 'string',
  699. ),
  700. 'Handler' => array(
  701. 'type' => 'string',
  702. ),
  703. 'Mode' => array(
  704. 'type' => 'string',
  705. ),
  706. 'CodeSize' => array(
  707. 'type' => 'numeric',
  708. ),
  709. 'Description' => array(
  710. 'type' => 'string',
  711. ),
  712. 'Timeout' => array(
  713. 'type' => 'numeric',
  714. ),
  715. 'MemorySize' => array(
  716. 'type' => 'numeric',
  717. ),
  718. 'LastModified' => array(
  719. 'type' => 'string',
  720. ),
  721. ),
  722. ),
  723. ),
  724. ),
  725. ),
  726. ),
  727. 'iterators' => array(
  728. 'ListEventSources' => array(
  729. 'input_token' => 'Marker',
  730. 'output_token' => 'NextMarker',
  731. 'limit_key' => 'MaxItems',
  732. 'result_key' => 'EventSources',
  733. ),
  734. 'ListFunctions' => array(
  735. 'input_token' => 'Marker',
  736. 'output_token' => 'NextMarker',
  737. 'limit_key' => 'MaxItems',
  738. 'result_key' => 'Functions',
  739. ),
  740. ),
  741. );