aws-sdk-v1 1.52.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +7 -0
  3. data/LICENSE.txt +12 -0
  4. data/README.md +337 -0
  5. data/bin/aws-rb +179 -0
  6. data/ca-bundle.crt +3554 -0
  7. data/endpoints.json +1671 -0
  8. data/lib/aws-sdk-v1.rb +2 -0
  9. data/lib/aws-sdk.rb +1 -0
  10. data/lib/aws.rb +14 -0
  11. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +1070 -0
  12. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +372 -0
  13. data/lib/aws/api_config/CloudFront-2013-05-12.yml +2448 -0
  14. data/lib/aws/api_config/CloudFront-2013-08-26.yml +2599 -0
  15. data/lib/aws/api_config/CloudFront-2013-09-27.yml +2765 -0
  16. data/lib/aws/api_config/CloudFront-2013-11-11.yml +2886 -0
  17. data/lib/aws/api_config/CloudFront-2013-11-22.yml +2918 -0
  18. data/lib/aws/api_config/CloudFront-2014-01-31.yml +2934 -0
  19. data/lib/aws/api_config/CloudFront-2014-05-31.yml +3100 -0
  20. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  21. data/lib/aws/api_config/CloudSearch-2013-01-01.yml +1164 -0
  22. data/lib/aws/api_config/CloudTrail-2013-11-01.yml +130 -0
  23. data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
  24. data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
  25. data/lib/aws/api_config/DirectConnect-2012-10-25.yml +735 -0
  26. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1168 -0
  27. data/lib/aws/api_config/DynamoDB-2012-08-10.yml +2105 -0
  28. data/lib/aws/api_config/EC2-2013-08-15.yml +4708 -0
  29. data/lib/aws/api_config/EC2-2013-10-01.yml +4726 -0
  30. data/lib/aws/api_config/EC2-2013-10-15.yml +4651 -0
  31. data/lib/aws/api_config/EC2-2014-02-01.yml +4755 -0
  32. data/lib/aws/api_config/EC2-2014-05-01.yml +4812 -0
  33. data/lib/aws/api_config/ELB-2012-06-01.yml +766 -0
  34. data/lib/aws/api_config/EMR-2009-03-31.yml +972 -0
  35. data/lib/aws/api_config/ElastiCache-2013-06-15.yml +1188 -0
  36. data/lib/aws/api_config/ElastiCache-2014-03-24.yml +1375 -0
  37. data/lib/aws/api_config/ElastiCache-2014-07-15.yml +1385 -0
  38. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +854 -0
  39. data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +3082 -0
  40. data/lib/aws/api_config/Glacier-2012-06-01.yml +649 -0
  41. data/lib/aws/api_config/IAM-2010-05-08.yml +1339 -0
  42. data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
  43. data/lib/aws/api_config/Kinesis-2013-12-02.yml +201 -0
  44. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +2025 -0
  45. data/lib/aws/api_config/RDS-2013-05-15.yml +2464 -0
  46. data/lib/aws/api_config/RDS-2013-09-09.yml +2640 -0
  47. data/lib/aws/api_config/Redshift-2012-12-01.yml +2161 -0
  48. data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
  49. data/lib/aws/api_config/Route53-2013-04-01.yml +889 -0
  50. data/lib/aws/api_config/SNS-2010-03-31.yml +448 -0
  51. data/lib/aws/api_config/SQS-2012-11-05.yml +404 -0
  52. data/lib/aws/api_config/STS-2011-06-15.yml +151 -0
  53. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
  54. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
  55. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2388 -0
  56. data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
  57. data/lib/aws/api_config/StorageGateway-2013-06-30.yml +1025 -0
  58. data/lib/aws/api_config/Support-2013-04-15.yml +489 -0
  59. data/lib/aws/auto_scaling.rb +163 -0
  60. data/lib/aws/auto_scaling/activity.rb +102 -0
  61. data/lib/aws/auto_scaling/activity_collection.rb +81 -0
  62. data/lib/aws/auto_scaling/client.rb +48 -0
  63. data/lib/aws/auto_scaling/config.rb +18 -0
  64. data/lib/aws/auto_scaling/errors.rb +22 -0
  65. data/lib/aws/auto_scaling/group.rb +421 -0
  66. data/lib/aws/auto_scaling/group_collection.rb +96 -0
  67. data/lib/aws/auto_scaling/group_options.rb +155 -0
  68. data/lib/aws/auto_scaling/instance.rb +192 -0
  69. data/lib/aws/auto_scaling/instance_collection.rb +63 -0
  70. data/lib/aws/auto_scaling/launch_configuration.rb +162 -0
  71. data/lib/aws/auto_scaling/launch_configuration_collection.rb +160 -0
  72. data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
  73. data/lib/aws/auto_scaling/notification_configuration_collection.rb +183 -0
  74. data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
  75. data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
  76. data/lib/aws/auto_scaling/scaling_policy_options.rb +65 -0
  77. data/lib/aws/auto_scaling/scheduled_action.rb +141 -0
  78. data/lib/aws/auto_scaling/scheduled_action_collection.rb +202 -0
  79. data/lib/aws/auto_scaling/tag.rb +59 -0
  80. data/lib/aws/auto_scaling/tag_collection.rb +114 -0
  81. data/lib/aws/cloud_formation.rb +272 -0
  82. data/lib/aws/cloud_formation/client.rb +48 -0
  83. data/lib/aws/cloud_formation/config.rb +18 -0
  84. data/lib/aws/cloud_formation/errors.rb +22 -0
  85. data/lib/aws/cloud_formation/stack.rb +266 -0
  86. data/lib/aws/cloud_formation/stack_collection.rb +232 -0
  87. data/lib/aws/cloud_formation/stack_event.rb +73 -0
  88. data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
  89. data/lib/aws/cloud_formation/stack_options.rb +72 -0
  90. data/lib/aws/cloud_formation/stack_output.rb +53 -0
  91. data/lib/aws/cloud_formation/stack_resource.rb +117 -0
  92. data/lib/aws/cloud_formation/stack_resource_collection.rb +83 -0
  93. data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
  94. data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
  95. data/lib/aws/cloud_front.rb +72 -0
  96. data/lib/aws/cloud_front/client.rb +57 -0
  97. data/lib/aws/cloud_front/config.rb +18 -0
  98. data/lib/aws/cloud_front/errors.rb +22 -0
  99. data/lib/aws/cloud_search.rb +73 -0
  100. data/lib/aws/cloud_search/client.rb +40 -0
  101. data/lib/aws/cloud_search/config.rb +18 -0
  102. data/lib/aws/cloud_search/errors.rb +22 -0
  103. data/lib/aws/cloud_trail.rb +72 -0
  104. data/lib/aws/cloud_trail/client.rb +35 -0
  105. data/lib/aws/cloud_trail/config.rb +18 -0
  106. data/lib/aws/cloud_trail/errors.rb +22 -0
  107. data/lib/aws/cloud_watch.rb +118 -0
  108. data/lib/aws/cloud_watch/alarm.rb +293 -0
  109. data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
  110. data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
  111. data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
  112. data/lib/aws/cloud_watch/client.rb +40 -0
  113. data/lib/aws/cloud_watch/config.rb +18 -0
  114. data/lib/aws/cloud_watch/errors.rb +22 -0
  115. data/lib/aws/cloud_watch/metric.rb +135 -0
  116. data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
  117. data/lib/aws/cloud_watch/metric_collection.rb +129 -0
  118. data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
  119. data/lib/aws/core.rb +716 -0
  120. data/lib/aws/core/async_handle.rb +90 -0
  121. data/lib/aws/core/cacheable.rb +77 -0
  122. data/lib/aws/core/client.rb +787 -0
  123. data/lib/aws/core/collection.rb +263 -0
  124. data/lib/aws/core/collection/simple.rb +82 -0
  125. data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
  126. data/lib/aws/core/collection/with_next_token.rb +97 -0
  127. data/lib/aws/core/configuration.rb +542 -0
  128. data/lib/aws/core/credential_providers.rb +639 -0
  129. data/lib/aws/core/data.rb +247 -0
  130. data/lib/aws/core/deprecations.rb +84 -0
  131. data/lib/aws/core/endpoints.rb +37 -0
  132. data/lib/aws/core/http/connection_pool.rb +369 -0
  133. data/lib/aws/core/http/curb_handler.rb +148 -0
  134. data/lib/aws/core/http/handler.rb +89 -0
  135. data/lib/aws/core/http/net_http_handler.rb +144 -0
  136. data/lib/aws/core/http/patch.rb +102 -0
  137. data/lib/aws/core/http/request.rb +259 -0
  138. data/lib/aws/core/http/response.rb +81 -0
  139. data/lib/aws/core/indifferent_hash.rb +88 -0
  140. data/lib/aws/core/inflection.rb +56 -0
  141. data/lib/aws/core/ini_parser.rb +42 -0
  142. data/lib/aws/core/json_client.rb +47 -0
  143. data/lib/aws/core/json_parser.rb +76 -0
  144. data/lib/aws/core/json_request_builder.rb +35 -0
  145. data/lib/aws/core/json_response_parser.rb +79 -0
  146. data/lib/aws/core/lazy_error_classes.rb +108 -0
  147. data/lib/aws/core/log_formatter.rb +428 -0
  148. data/lib/aws/core/managed_file.rb +32 -0
  149. data/lib/aws/core/meta_utils.rb +45 -0
  150. data/lib/aws/core/model.rb +62 -0
  151. data/lib/aws/core/naming.rb +30 -0
  152. data/lib/aws/core/option_grammar.rb +738 -0
  153. data/lib/aws/core/options/json_serializer.rb +82 -0
  154. data/lib/aws/core/options/validator.rb +155 -0
  155. data/lib/aws/core/options/xml_serializer.rb +118 -0
  156. data/lib/aws/core/page_result.rb +75 -0
  157. data/lib/aws/core/policy.rb +941 -0
  158. data/lib/aws/core/query_client.rb +41 -0
  159. data/lib/aws/core/query_error_parser.rb +24 -0
  160. data/lib/aws/core/query_request_builder.rb +47 -0
  161. data/lib/aws/core/query_response_parser.rb +35 -0
  162. data/lib/aws/core/region.rb +85 -0
  163. data/lib/aws/core/region_collection.rb +80 -0
  164. data/lib/aws/core/resource.rb +413 -0
  165. data/lib/aws/core/resource_cache.rb +40 -0
  166. data/lib/aws/core/response.rb +215 -0
  167. data/lib/aws/core/response_cache.rb +50 -0
  168. data/lib/aws/core/rest_error_parser.rb +24 -0
  169. data/lib/aws/core/rest_json_client.rb +40 -0
  170. data/lib/aws/core/rest_request_builder.rb +154 -0
  171. data/lib/aws/core/rest_response_parser.rb +66 -0
  172. data/lib/aws/core/rest_xml_client.rb +47 -0
  173. data/lib/aws/core/service_interface.rb +83 -0
  174. data/lib/aws/core/signers/base.rb +46 -0
  175. data/lib/aws/core/signers/cloud_front.rb +56 -0
  176. data/lib/aws/core/signers/s3.rb +159 -0
  177. data/lib/aws/core/signers/version_2.rb +72 -0
  178. data/lib/aws/core/signers/version_3.rb +86 -0
  179. data/lib/aws/core/signers/version_3_https.rb +61 -0
  180. data/lib/aws/core/signers/version_4.rb +228 -0
  181. data/lib/aws/core/signers/version_4/chunk_signed_stream.rb +191 -0
  182. data/lib/aws/core/uri_escape.rb +44 -0
  183. data/lib/aws/core/xml/frame.rb +245 -0
  184. data/lib/aws/core/xml/frame_stack.rb +85 -0
  185. data/lib/aws/core/xml/grammar.rb +307 -0
  186. data/lib/aws/core/xml/parser.rb +70 -0
  187. data/lib/aws/core/xml/root_frame.rb +65 -0
  188. data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
  189. data/lib/aws/core/xml/sax_handlers/nokogiri.rb +56 -0
  190. data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
  191. data/lib/aws/core/xml/sax_handlers/rexml.rb +47 -0
  192. data/lib/aws/core/xml/stub.rb +123 -0
  193. data/lib/aws/data_pipeline.rb +72 -0
  194. data/lib/aws/data_pipeline/client.rb +36 -0
  195. data/lib/aws/data_pipeline/config.rb +18 -0
  196. data/lib/aws/data_pipeline/errors.rb +20 -0
  197. data/lib/aws/direct_connect.rb +73 -0
  198. data/lib/aws/direct_connect/client.rb +36 -0
  199. data/lib/aws/direct_connect/config.rb +18 -0
  200. data/lib/aws/direct_connect/errors.rb +22 -0
  201. data/lib/aws/dynamo_db.rb +230 -0
  202. data/lib/aws/dynamo_db/attribute_collection.rb +456 -0
  203. data/lib/aws/dynamo_db/batch_get.rb +213 -0
  204. data/lib/aws/dynamo_db/batch_write.rb +254 -0
  205. data/lib/aws/dynamo_db/binary.rb +35 -0
  206. data/lib/aws/dynamo_db/client.rb +129 -0
  207. data/lib/aws/dynamo_db/client/v20111205.rb +1266 -0
  208. data/lib/aws/dynamo_db/client/v20120810.rb +1409 -0
  209. data/lib/aws/dynamo_db/client_v2.rb +44 -0
  210. data/lib/aws/dynamo_db/config.rb +24 -0
  211. data/lib/aws/dynamo_db/errors.rb +20 -0
  212. data/lib/aws/dynamo_db/expectations.rb +40 -0
  213. data/lib/aws/dynamo_db/item.rb +133 -0
  214. data/lib/aws/dynamo_db/item_collection.rb +856 -0
  215. data/lib/aws/dynamo_db/item_data.rb +31 -0
  216. data/lib/aws/dynamo_db/keys.rb +41 -0
  217. data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
  218. data/lib/aws/dynamo_db/resource.rb +33 -0
  219. data/lib/aws/dynamo_db/table.rb +492 -0
  220. data/lib/aws/dynamo_db/table_collection.rb +165 -0
  221. data/lib/aws/dynamo_db/types.rb +111 -0
  222. data/lib/aws/ec2.rb +428 -0
  223. data/lib/aws/ec2/attachment.rb +135 -0
  224. data/lib/aws/ec2/attachment_collection.rb +54 -0
  225. data/lib/aws/ec2/availability_zone.rb +86 -0
  226. data/lib/aws/ec2/availability_zone_collection.rb +43 -0
  227. data/lib/aws/ec2/block_device_mappings.rb +53 -0
  228. data/lib/aws/ec2/client.rb +154 -0
  229. data/lib/aws/ec2/collection.rb +36 -0
  230. data/lib/aws/ec2/config.rb +21 -0
  231. data/lib/aws/ec2/customer_gateway.rb +90 -0
  232. data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
  233. data/lib/aws/ec2/dhcp_options.rb +106 -0
  234. data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
  235. data/lib/aws/ec2/elastic_ip.rb +209 -0
  236. data/lib/aws/ec2/elastic_ip_collection.rb +93 -0
  237. data/lib/aws/ec2/errors.rb +32 -0
  238. data/lib/aws/ec2/export_task.rb +120 -0
  239. data/lib/aws/ec2/export_task_collection.rb +67 -0
  240. data/lib/aws/ec2/filtered_collection.rb +87 -0
  241. data/lib/aws/ec2/has_permissions.rb +44 -0
  242. data/lib/aws/ec2/image.rb +270 -0
  243. data/lib/aws/ec2/image_collection.rb +219 -0
  244. data/lib/aws/ec2/instance.rb +803 -0
  245. data/lib/aws/ec2/instance_collection.rb +402 -0
  246. data/lib/aws/ec2/internet_gateway.rb +122 -0
  247. data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
  248. data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
  249. data/lib/aws/ec2/key_pair.rb +82 -0
  250. data/lib/aws/ec2/key_pair_collection.rb +99 -0
  251. data/lib/aws/ec2/network_acl.rb +256 -0
  252. data/lib/aws/ec2/network_acl/association.rb +56 -0
  253. data/lib/aws/ec2/network_acl/entry.rb +147 -0
  254. data/lib/aws/ec2/network_acl_collection.rb +64 -0
  255. data/lib/aws/ec2/network_interface.rb +237 -0
  256. data/lib/aws/ec2/network_interface/attachment.rb +100 -0
  257. data/lib/aws/ec2/network_interface_collection.rb +103 -0
  258. data/lib/aws/ec2/permission_collection.rb +174 -0
  259. data/lib/aws/ec2/region.rb +106 -0
  260. data/lib/aws/ec2/region_collection.rb +51 -0
  261. data/lib/aws/ec2/reserved_instances.rb +57 -0
  262. data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
  263. data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
  264. data/lib/aws/ec2/reserved_instances_offering_collection.rb +45 -0
  265. data/lib/aws/ec2/resource.rb +161 -0
  266. data/lib/aws/ec2/resource_tag_collection.rb +211 -0
  267. data/lib/aws/ec2/route_table.rb +205 -0
  268. data/lib/aws/ec2/route_table/association.rb +119 -0
  269. data/lib/aws/ec2/route_table/route.rb +119 -0
  270. data/lib/aws/ec2/route_table_collection.rb +72 -0
  271. data/lib/aws/ec2/security_group.rb +482 -0
  272. data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
  273. data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
  274. data/lib/aws/ec2/security_group_collection.rb +133 -0
  275. data/lib/aws/ec2/snapshot.rb +143 -0
  276. data/lib/aws/ec2/snapshot_collection.rb +131 -0
  277. data/lib/aws/ec2/subnet.rb +161 -0
  278. data/lib/aws/ec2/subnet_collection.rb +119 -0
  279. data/lib/aws/ec2/tag.rb +81 -0
  280. data/lib/aws/ec2/tag_collection.rb +107 -0
  281. data/lib/aws/ec2/tagged_collection.rb +67 -0
  282. data/lib/aws/ec2/tagged_item.rb +85 -0
  283. data/lib/aws/ec2/volume.rb +185 -0
  284. data/lib/aws/ec2/volume_collection.rb +102 -0
  285. data/lib/aws/ec2/vpc.rb +174 -0
  286. data/lib/aws/ec2/vpc_collection.rb +70 -0
  287. data/lib/aws/ec2/vpn_connection.rb +99 -0
  288. data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
  289. data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
  290. data/lib/aws/ec2/vpn_gateway.rb +123 -0
  291. data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
  292. data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
  293. data/lib/aws/elastic_beanstalk.rb +49 -0
  294. data/lib/aws/elastic_beanstalk/client.rb +36 -0
  295. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  296. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  297. data/lib/aws/elastic_transcoder.rb +29 -0
  298. data/lib/aws/elastic_transcoder/client.rb +48 -0
  299. data/lib/aws/elastic_transcoder/config.rb +18 -0
  300. data/lib/aws/elastic_transcoder/errors.rb +23 -0
  301. data/lib/aws/elasticache.rb +49 -0
  302. data/lib/aws/elasticache/client.rb +41 -0
  303. data/lib/aws/elasticache/config.rb +18 -0
  304. data/lib/aws/elasticache/errors.rb +22 -0
  305. data/lib/aws/elb.rb +66 -0
  306. data/lib/aws/elb/availability_zone_collection.rb +138 -0
  307. data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
  308. data/lib/aws/elb/client.rb +35 -0
  309. data/lib/aws/elb/config.rb +18 -0
  310. data/lib/aws/elb/errors.rb +26 -0
  311. data/lib/aws/elb/instance_collection.rb +168 -0
  312. data/lib/aws/elb/listener.rb +190 -0
  313. data/lib/aws/elb/listener_collection.rb +113 -0
  314. data/lib/aws/elb/listener_opts.rb +45 -0
  315. data/lib/aws/elb/load_balancer.rb +280 -0
  316. data/lib/aws/elb/load_balancer_collection.rb +146 -0
  317. data/lib/aws/elb/load_balancer_policy.rb +93 -0
  318. data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
  319. data/lib/aws/emr.rb +87 -0
  320. data/lib/aws/emr/client.rb +35 -0
  321. data/lib/aws/emr/config.rb +18 -0
  322. data/lib/aws/emr/errors.rb +22 -0
  323. data/lib/aws/emr/instance_group.rb +138 -0
  324. data/lib/aws/emr/instance_group_collection.rb +82 -0
  325. data/lib/aws/emr/job_flow.rb +307 -0
  326. data/lib/aws/emr/job_flow_collection.rb +183 -0
  327. data/lib/aws/errors.rb +162 -0
  328. data/lib/aws/glacier.rb +79 -0
  329. data/lib/aws/glacier/archive.rb +56 -0
  330. data/lib/aws/glacier/archive_collection.rb +146 -0
  331. data/lib/aws/glacier/client.rb +49 -0
  332. data/lib/aws/glacier/config.rb +19 -0
  333. data/lib/aws/glacier/errors.rb +22 -0
  334. data/lib/aws/glacier/resource.rb +30 -0
  335. data/lib/aws/glacier/vault.rb +145 -0
  336. data/lib/aws/glacier/vault_collection.rb +75 -0
  337. data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
  338. data/lib/aws/iam.rb +408 -0
  339. data/lib/aws/iam/access_key.rb +185 -0
  340. data/lib/aws/iam/access_key_collection.rb +128 -0
  341. data/lib/aws/iam/account_alias_collection.rb +79 -0
  342. data/lib/aws/iam/client.rb +49 -0
  343. data/lib/aws/iam/collection.rb +83 -0
  344. data/lib/aws/iam/config.rb +18 -0
  345. data/lib/aws/iam/errors.rb +22 -0
  346. data/lib/aws/iam/group.rb +111 -0
  347. data/lib/aws/iam/group_collection.rb +132 -0
  348. data/lib/aws/iam/group_policy_collection.rb +47 -0
  349. data/lib/aws/iam/group_user_collection.rb +84 -0
  350. data/lib/aws/iam/login_profile.rb +111 -0
  351. data/lib/aws/iam/mfa_device.rb +52 -0
  352. data/lib/aws/iam/mfa_device_collection.rb +127 -0
  353. data/lib/aws/iam/policy.rb +46 -0
  354. data/lib/aws/iam/policy_collection.rb +188 -0
  355. data/lib/aws/iam/resource.rb +62 -0
  356. data/lib/aws/iam/server_certificate.rb +148 -0
  357. data/lib/aws/iam/server_certificate_collection.rb +138 -0
  358. data/lib/aws/iam/signing_certificate.rb +186 -0
  359. data/lib/aws/iam/signing_certificate_collection.rb +131 -0
  360. data/lib/aws/iam/user.rb +200 -0
  361. data/lib/aws/iam/user_collection.rb +133 -0
  362. data/lib/aws/iam/user_group_collection.rb +98 -0
  363. data/lib/aws/iam/user_policy.rb +90 -0
  364. data/lib/aws/iam/user_policy_collection.rb +45 -0
  365. data/lib/aws/iam/virtual_mfa_device.rb +139 -0
  366. data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
  367. data/lib/aws/import_export.rb +73 -0
  368. data/lib/aws/import_export/client.rb +35 -0
  369. data/lib/aws/import_export/config.rb +19 -0
  370. data/lib/aws/import_export/errors.rb +22 -0
  371. data/lib/aws/kinesis.rb +53 -0
  372. data/lib/aws/kinesis/client.rb +35 -0
  373. data/lib/aws/kinesis/config.rb +18 -0
  374. data/lib/aws/kinesis/errors.rb +20 -0
  375. data/lib/aws/ops_works.rb +29 -0
  376. data/lib/aws/ops_works/client.rb +35 -0
  377. data/lib/aws/ops_works/config.rb +18 -0
  378. data/lib/aws/ops_works/errors.rb +20 -0
  379. data/lib/aws/rails.rb +195 -0
  380. data/lib/aws/rds.rb +70 -0
  381. data/lib/aws/rds/client.rb +42 -0
  382. data/lib/aws/rds/config.rb +18 -0
  383. data/lib/aws/rds/db_instance.rb +215 -0
  384. data/lib/aws/rds/db_instance_collection.rb +75 -0
  385. data/lib/aws/rds/db_snapshot.rb +163 -0
  386. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  387. data/lib/aws/rds/errors.rb +22 -0
  388. data/lib/aws/record.rb +139 -0
  389. data/lib/aws/record/abstract_base.rb +689 -0
  390. data/lib/aws/record/attributes.rb +388 -0
  391. data/lib/aws/record/conversion.rb +38 -0
  392. data/lib/aws/record/dirty_tracking.rb +287 -0
  393. data/lib/aws/record/errors.rb +143 -0
  394. data/lib/aws/record/exceptions.rb +51 -0
  395. data/lib/aws/record/hash_model.rb +204 -0
  396. data/lib/aws/record/hash_model/attributes.rb +195 -0
  397. data/lib/aws/record/hash_model/finder_methods.rb +172 -0
  398. data/lib/aws/record/hash_model/scope.rb +108 -0
  399. data/lib/aws/record/model.rb +453 -0
  400. data/lib/aws/record/model/attributes.rb +377 -0
  401. data/lib/aws/record/model/finder_methods.rb +232 -0
  402. data/lib/aws/record/model/scope.rb +212 -0
  403. data/lib/aws/record/naming.rb +31 -0
  404. data/lib/aws/record/scope.rb +203 -0
  405. data/lib/aws/record/validations.rb +694 -0
  406. data/lib/aws/record/validator.rb +246 -0
  407. data/lib/aws/record/validators/acceptance.rb +49 -0
  408. data/lib/aws/record/validators/block.rb +36 -0
  409. data/lib/aws/record/validators/confirmation.rb +41 -0
  410. data/lib/aws/record/validators/count.rb +106 -0
  411. data/lib/aws/record/validators/exclusion.rb +41 -0
  412. data/lib/aws/record/validators/format.rb +55 -0
  413. data/lib/aws/record/validators/inclusion.rb +54 -0
  414. data/lib/aws/record/validators/length.rb +105 -0
  415. data/lib/aws/record/validators/method.rb +31 -0
  416. data/lib/aws/record/validators/numericality.rb +136 -0
  417. data/lib/aws/record/validators/presence.rb +43 -0
  418. data/lib/aws/redshift.rb +51 -0
  419. data/lib/aws/redshift/client.rb +35 -0
  420. data/lib/aws/redshift/config.rb +18 -0
  421. data/lib/aws/redshift/errors.rb +22 -0
  422. data/lib/aws/route_53.rb +86 -0
  423. data/lib/aws/route_53/change_batch.rb +161 -0
  424. data/lib/aws/route_53/change_info.rb +72 -0
  425. data/lib/aws/route_53/client.rb +38 -0
  426. data/lib/aws/route_53/config.rb +18 -0
  427. data/lib/aws/route_53/errors.rb +22 -0
  428. data/lib/aws/route_53/hosted_zone.rb +134 -0
  429. data/lib/aws/route_53/hosted_zone_collection.rb +101 -0
  430. data/lib/aws/route_53/resource_record_set.rb +251 -0
  431. data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
  432. data/lib/aws/s3.rb +156 -0
  433. data/lib/aws/s3/access_control_list.rb +265 -0
  434. data/lib/aws/s3/acl_object.rb +264 -0
  435. data/lib/aws/s3/acl_options.rb +204 -0
  436. data/lib/aws/s3/bucket.rb +742 -0
  437. data/lib/aws/s3/bucket_collection.rb +162 -0
  438. data/lib/aws/s3/bucket_lifecycle_configuration.rb +473 -0
  439. data/lib/aws/s3/bucket_tag_collection.rb +111 -0
  440. data/lib/aws/s3/bucket_version_collection.rb +79 -0
  441. data/lib/aws/s3/cipher_io.rb +120 -0
  442. data/lib/aws/s3/client.rb +2067 -0
  443. data/lib/aws/s3/client/xml.rb +266 -0
  444. data/lib/aws/s3/config.rb +48 -0
  445. data/lib/aws/s3/cors_rule.rb +108 -0
  446. data/lib/aws/s3/cors_rule_collection.rb +194 -0
  447. data/lib/aws/s3/data_options.rb +191 -0
  448. data/lib/aws/s3/encryption_utils.rb +146 -0
  449. data/lib/aws/s3/errors.rb +94 -0
  450. data/lib/aws/s3/multipart_upload.rb +353 -0
  451. data/lib/aws/s3/multipart_upload_collection.rb +76 -0
  452. data/lib/aws/s3/object_collection.rb +353 -0
  453. data/lib/aws/s3/object_metadata.rb +103 -0
  454. data/lib/aws/s3/object_upload_collection.rb +77 -0
  455. data/lib/aws/s3/object_version.rb +154 -0
  456. data/lib/aws/s3/object_version_collection.rb +89 -0
  457. data/lib/aws/s3/paginated_collection.rb +75 -0
  458. data/lib/aws/s3/policy.rb +74 -0
  459. data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
  460. data/lib/aws/s3/prefixed_collection.rb +85 -0
  461. data/lib/aws/s3/presign_v4.rb +136 -0
  462. data/lib/aws/s3/presigned_post.rb +554 -0
  463. data/lib/aws/s3/request.rb +62 -0
  464. data/lib/aws/s3/s3_object.rb +1784 -0
  465. data/lib/aws/s3/tree.rb +116 -0
  466. data/lib/aws/s3/tree/branch_node.rb +68 -0
  467. data/lib/aws/s3/tree/child_collection.rb +104 -0
  468. data/lib/aws/s3/tree/leaf_node.rb +94 -0
  469. data/lib/aws/s3/tree/node.rb +22 -0
  470. data/lib/aws/s3/tree/parent.rb +87 -0
  471. data/lib/aws/s3/uploaded_part.rb +82 -0
  472. data/lib/aws/s3/uploaded_part_collection.rb +84 -0
  473. data/lib/aws/s3/website_configuration.rb +102 -0
  474. data/lib/aws/simple_db.rb +218 -0
  475. data/lib/aws/simple_db/attribute.rb +156 -0
  476. data/lib/aws/simple_db/attribute_collection.rb +240 -0
  477. data/lib/aws/simple_db/client.rb +67 -0
  478. data/lib/aws/simple_db/config.rb +20 -0
  479. data/lib/aws/simple_db/consistent_read_option.rb +42 -0
  480. data/lib/aws/simple_db/delete_attributes.rb +62 -0
  481. data/lib/aws/simple_db/domain.rb +123 -0
  482. data/lib/aws/simple_db/domain_collection.rb +86 -0
  483. data/lib/aws/simple_db/domain_metadata.rb +110 -0
  484. data/lib/aws/simple_db/errors.rb +55 -0
  485. data/lib/aws/simple_db/expect_condition_option.rb +45 -0
  486. data/lib/aws/simple_db/item.rb +93 -0
  487. data/lib/aws/simple_db/item_collection.rb +654 -0
  488. data/lib/aws/simple_db/item_data.rb +73 -0
  489. data/lib/aws/simple_db/put_attributes.rb +60 -0
  490. data/lib/aws/simple_email_service.rb +443 -0
  491. data/lib/aws/simple_email_service/client.rb +37 -0
  492. data/lib/aws/simple_email_service/config.rb +18 -0
  493. data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
  494. data/lib/aws/simple_email_service/errors.rb +22 -0
  495. data/lib/aws/simple_email_service/identity.rb +230 -0
  496. data/lib/aws/simple_email_service/identity_collection.rb +81 -0
  497. data/lib/aws/simple_email_service/quotas.rb +66 -0
  498. data/lib/aws/simple_workflow.rb +227 -0
  499. data/lib/aws/simple_workflow/activity_task.rb +178 -0
  500. data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
  501. data/lib/aws/simple_workflow/activity_type.rb +131 -0
  502. data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
  503. data/lib/aws/simple_workflow/client.rb +69 -0
  504. data/lib/aws/simple_workflow/config.rb +18 -0
  505. data/lib/aws/simple_workflow/count.rb +49 -0
  506. data/lib/aws/simple_workflow/decision_task.rb +603 -0
  507. data/lib/aws/simple_workflow/decision_task_collection.rb +223 -0
  508. data/lib/aws/simple_workflow/domain.rb +122 -0
  509. data/lib/aws/simple_workflow/domain_collection.rb +169 -0
  510. data/lib/aws/simple_workflow/errors.rb +20 -0
  511. data/lib/aws/simple_workflow/history_event.rb +276 -0
  512. data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
  513. data/lib/aws/simple_workflow/option_formatters.rb +82 -0
  514. data/lib/aws/simple_workflow/resource.rb +94 -0
  515. data/lib/aws/simple_workflow/type.rb +89 -0
  516. data/lib/aws/simple_workflow/type_collection.rb +140 -0
  517. data/lib/aws/simple_workflow/workflow_execution.rb +384 -0
  518. data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
  519. data/lib/aws/simple_workflow/workflow_type.rb +177 -0
  520. data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
  521. data/lib/aws/sns.rb +76 -0
  522. data/lib/aws/sns/client.rb +35 -0
  523. data/lib/aws/sns/config.rb +18 -0
  524. data/lib/aws/sns/errors.rb +22 -0
  525. data/lib/aws/sns/has_delivery_policy.rb +68 -0
  526. data/lib/aws/sns/message.rb +204 -0
  527. data/lib/aws/sns/originators/from_auto_scaling.rb +68 -0
  528. data/lib/aws/sns/policy.rb +47 -0
  529. data/lib/aws/sns/subscription.rb +165 -0
  530. data/lib/aws/sns/subscription_collection.rb +78 -0
  531. data/lib/aws/sns/topic.rb +403 -0
  532. data/lib/aws/sns/topic_collection.rb +62 -0
  533. data/lib/aws/sns/topic_subscription_collection.rb +54 -0
  534. data/lib/aws/sqs.rb +80 -0
  535. data/lib/aws/sqs/client.rb +53 -0
  536. data/lib/aws/sqs/config.rb +20 -0
  537. data/lib/aws/sqs/errors.rb +125 -0
  538. data/lib/aws/sqs/policy.rb +48 -0
  539. data/lib/aws/sqs/queue.rb +856 -0
  540. data/lib/aws/sqs/queue_collection.rb +186 -0
  541. data/lib/aws/sqs/received_message.rb +190 -0
  542. data/lib/aws/sqs/received_sns_message.rb +116 -0
  543. data/lib/aws/storage_gateway.rb +72 -0
  544. data/lib/aws/storage_gateway/client.rb +42 -0
  545. data/lib/aws/storage_gateway/config.rb +18 -0
  546. data/lib/aws/storage_gateway/errors.rb +22 -0
  547. data/lib/aws/sts.rb +164 -0
  548. data/lib/aws/sts/client.rb +55 -0
  549. data/lib/aws/sts/config.rb +18 -0
  550. data/lib/aws/sts/errors.rb +22 -0
  551. data/lib/aws/sts/federated_session.rb +56 -0
  552. data/lib/aws/sts/policy.rb +30 -0
  553. data/lib/aws/sts/session.rb +48 -0
  554. data/lib/aws/support.rb +29 -0
  555. data/lib/aws/support/client.rb +35 -0
  556. data/lib/aws/support/config.rb +18 -0
  557. data/lib/aws/support/errors.rb +20 -0
  558. data/lib/aws/version.rb +17 -0
  559. data/rails/init.rb +15 -0
  560. metadata +634 -0
@@ -0,0 +1,3082 @@
1
+ # Copyright 2011-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :api_version: '2012-09-25'
16
+ :operations:
17
+ - :name: CancelJob
18
+ :method: :cancel_job
19
+ :http:
20
+ :verb: DELETE
21
+ :uri: /2012-09-25/jobs/:id
22
+ :response_code: 202
23
+ :inputs:
24
+ :id:
25
+ :type: :string
26
+ :required: true
27
+ :outputs: {}
28
+ - :name: CreateJob
29
+ :method: :create_job
30
+ :http:
31
+ :verb: POST
32
+ :uri: /2012-09-25/jobs
33
+ :response_code: 201
34
+ :inputs:
35
+ :pipeline_id:
36
+ :name: PipelineId
37
+ :type: :string
38
+ :required: true
39
+ :input:
40
+ :name: Input
41
+ :type: :hash
42
+ :required: true
43
+ :members:
44
+ :key:
45
+ :name: Key
46
+ :type: :string
47
+ :frame_rate:
48
+ :name: FrameRate
49
+ :type: :string
50
+ :resolution:
51
+ :name: Resolution
52
+ :type: :string
53
+ :aspect_ratio:
54
+ :name: AspectRatio
55
+ :type: :string
56
+ :interlaced:
57
+ :name: Interlaced
58
+ :type: :string
59
+ :container:
60
+ :name: Container
61
+ :type: :string
62
+ :output:
63
+ :name: Output
64
+ :type: :hash
65
+ :members:
66
+ :key:
67
+ :name: Key
68
+ :type: :string
69
+ :thumbnail_pattern:
70
+ :name: ThumbnailPattern
71
+ :type: :string
72
+ :rotate:
73
+ :name: Rotate
74
+ :type: :string
75
+ :preset_id:
76
+ :name: PresetId
77
+ :type: :string
78
+ :segment_duration:
79
+ :name: SegmentDuration
80
+ :type: :string
81
+ :watermarks:
82
+ :name: Watermarks
83
+ :type: :array
84
+ :members:
85
+ :name: member
86
+ :type: :hash
87
+ :members:
88
+ :preset_watermark_id:
89
+ :name: PresetWatermarkId
90
+ :type: :string
91
+ :input_key:
92
+ :name: InputKey
93
+ :type: :string
94
+ :album_art:
95
+ :name: AlbumArt
96
+ :type: :hash
97
+ :members:
98
+ :merge_policy:
99
+ :name: MergePolicy
100
+ :type: :string
101
+ :artwork:
102
+ :name: Artwork
103
+ :type: :array
104
+ :members:
105
+ :name: member
106
+ :type: :hash
107
+ :members:
108
+ :input_key:
109
+ :name: InputKey
110
+ :type: :string
111
+ :max_width:
112
+ :name: MaxWidth
113
+ :type: :string
114
+ :max_height:
115
+ :name: MaxHeight
116
+ :type: :string
117
+ :sizing_policy:
118
+ :name: SizingPolicy
119
+ :type: :string
120
+ :padding_policy:
121
+ :name: PaddingPolicy
122
+ :type: :string
123
+ :album_art_format:
124
+ :name: AlbumArtFormat
125
+ :type: :string
126
+ :composition:
127
+ :name: Composition
128
+ :type: :array
129
+ :members:
130
+ :name: member
131
+ :type: :hash
132
+ :members:
133
+ :time_span:
134
+ :name: TimeSpan
135
+ :type: :hash
136
+ :members:
137
+ :start_time:
138
+ :name: StartTime
139
+ :type: :string
140
+ :duration:
141
+ :name: Duration
142
+ :type: :string
143
+ :captions:
144
+ :name: Captions
145
+ :type: :hash
146
+ :members:
147
+ :merge_policy:
148
+ :name: MergePolicy
149
+ :type: :string
150
+ :caption_sources:
151
+ :name: CaptionSources
152
+ :type: :array
153
+ :members:
154
+ :name: member
155
+ :type: :hash
156
+ :members:
157
+ :key:
158
+ :name: Key
159
+ :type: :string
160
+ :language:
161
+ :name: Language
162
+ :type: :string
163
+ :time_offset:
164
+ :name: TimeOffset
165
+ :type: :string
166
+ :label:
167
+ :name: Label
168
+ :type: :string
169
+ :caption_formats:
170
+ :name: CaptionFormats
171
+ :type: :array
172
+ :members:
173
+ :name: member
174
+ :type: :hash
175
+ :members:
176
+ :format:
177
+ :name: Format
178
+ :type: :string
179
+ :pattern:
180
+ :name: Pattern
181
+ :type: :string
182
+ :outputs:
183
+ :name: Outputs
184
+ :type: :array
185
+ :members:
186
+ :name: member
187
+ :type: :hash
188
+ :members:
189
+ :key:
190
+ :name: Key
191
+ :type: :string
192
+ :thumbnail_pattern:
193
+ :name: ThumbnailPattern
194
+ :type: :string
195
+ :rotate:
196
+ :name: Rotate
197
+ :type: :string
198
+ :preset_id:
199
+ :name: PresetId
200
+ :type: :string
201
+ :segment_duration:
202
+ :name: SegmentDuration
203
+ :type: :string
204
+ :watermarks:
205
+ :name: Watermarks
206
+ :type: :array
207
+ :members:
208
+ :name: member
209
+ :type: :hash
210
+ :members:
211
+ :preset_watermark_id:
212
+ :name: PresetWatermarkId
213
+ :type: :string
214
+ :input_key:
215
+ :name: InputKey
216
+ :type: :string
217
+ :album_art:
218
+ :name: AlbumArt
219
+ :type: :hash
220
+ :members:
221
+ :merge_policy:
222
+ :name: MergePolicy
223
+ :type: :string
224
+ :artwork:
225
+ :name: Artwork
226
+ :type: :array
227
+ :members:
228
+ :name: member
229
+ :type: :hash
230
+ :members:
231
+ :input_key:
232
+ :name: InputKey
233
+ :type: :string
234
+ :max_width:
235
+ :name: MaxWidth
236
+ :type: :string
237
+ :max_height:
238
+ :name: MaxHeight
239
+ :type: :string
240
+ :sizing_policy:
241
+ :name: SizingPolicy
242
+ :type: :string
243
+ :padding_policy:
244
+ :name: PaddingPolicy
245
+ :type: :string
246
+ :album_art_format:
247
+ :name: AlbumArtFormat
248
+ :type: :string
249
+ :composition:
250
+ :name: Composition
251
+ :type: :array
252
+ :members:
253
+ :name: member
254
+ :type: :hash
255
+ :members:
256
+ :time_span:
257
+ :name: TimeSpan
258
+ :type: :hash
259
+ :members:
260
+ :start_time:
261
+ :name: StartTime
262
+ :type: :string
263
+ :duration:
264
+ :name: Duration
265
+ :type: :string
266
+ :captions:
267
+ :name: Captions
268
+ :type: :hash
269
+ :members:
270
+ :merge_policy:
271
+ :name: MergePolicy
272
+ :type: :string
273
+ :caption_sources:
274
+ :name: CaptionSources
275
+ :type: :array
276
+ :members:
277
+ :name: member
278
+ :type: :hash
279
+ :members:
280
+ :key:
281
+ :name: Key
282
+ :type: :string
283
+ :language:
284
+ :name: Language
285
+ :type: :string
286
+ :time_offset:
287
+ :name: TimeOffset
288
+ :type: :string
289
+ :label:
290
+ :name: Label
291
+ :type: :string
292
+ :caption_formats:
293
+ :name: CaptionFormats
294
+ :type: :array
295
+ :members:
296
+ :name: member
297
+ :type: :hash
298
+ :members:
299
+ :format:
300
+ :name: Format
301
+ :type: :string
302
+ :pattern:
303
+ :name: Pattern
304
+ :type: :string
305
+ :output_key_prefix:
306
+ :name: OutputKeyPrefix
307
+ :type: :string
308
+ :playlists:
309
+ :name: Playlists
310
+ :type: :array
311
+ :members:
312
+ :name: member
313
+ :type: :hash
314
+ :members:
315
+ :name:
316
+ :name: Name
317
+ :type: :string
318
+ :format:
319
+ :name: Format
320
+ :type: :string
321
+ :output_keys:
322
+ :name: OutputKeys
323
+ :type: :array
324
+ :members:
325
+ :name: member
326
+ :type: :string
327
+ :outputs:
328
+ Job:
329
+ :sym: :job
330
+ :type: :hash
331
+ :members:
332
+ Id:
333
+ :sym: :id
334
+ :type: :string
335
+ Arn:
336
+ :sym: :arn
337
+ :type: :string
338
+ PipelineId:
339
+ :sym: :pipeline_id
340
+ :type: :string
341
+ Input:
342
+ :sym: :input
343
+ :type: :hash
344
+ :members:
345
+ Key:
346
+ :sym: :key
347
+ :type: :string
348
+ FrameRate:
349
+ :sym: :frame_rate
350
+ :type: :string
351
+ Resolution:
352
+ :sym: :resolution
353
+ :type: :string
354
+ AspectRatio:
355
+ :sym: :aspect_ratio
356
+ :type: :string
357
+ Interlaced:
358
+ :sym: :interlaced
359
+ :type: :string
360
+ Container:
361
+ :sym: :container
362
+ :type: :string
363
+ Output:
364
+ :sym: :output
365
+ :type: :hash
366
+ :members:
367
+ Id:
368
+ :sym: :id
369
+ :type: :string
370
+ Key:
371
+ :sym: :key
372
+ :type: :string
373
+ ThumbnailPattern:
374
+ :sym: :thumbnail_pattern
375
+ :type: :string
376
+ Rotate:
377
+ :sym: :rotate
378
+ :type: :string
379
+ PresetId:
380
+ :sym: :preset_id
381
+ :type: :string
382
+ SegmentDuration:
383
+ :sym: :segment_duration
384
+ :type: :string
385
+ Status:
386
+ :sym: :status
387
+ :type: :string
388
+ StatusDetail:
389
+ :sym: :status_detail
390
+ :type: :string
391
+ Duration:
392
+ :sym: :duration
393
+ :type: :integer
394
+ Width:
395
+ :sym: :width
396
+ :type: :integer
397
+ Height:
398
+ :sym: :height
399
+ :type: :integer
400
+ Watermarks:
401
+ :sym: :watermarks
402
+ :type: :hash
403
+ :members:
404
+ PresetWatermarkId:
405
+ :sym: :preset_watermark_id
406
+ :type: :string
407
+ InputKey:
408
+ :sym: :input_key
409
+ :type: :string
410
+ AlbumArt:
411
+ :sym: :album_art
412
+ :type: :hash
413
+ :members:
414
+ MergePolicy:
415
+ :sym: :merge_policy
416
+ :type: :string
417
+ Artwork:
418
+ :sym: :artwork
419
+ :type: :hash
420
+ :members:
421
+ InputKey:
422
+ :sym: :input_key
423
+ :type: :string
424
+ MaxWidth:
425
+ :sym: :max_width
426
+ :type: :string
427
+ MaxHeight:
428
+ :sym: :max_height
429
+ :type: :string
430
+ SizingPolicy:
431
+ :sym: :sizing_policy
432
+ :type: :string
433
+ PaddingPolicy:
434
+ :sym: :padding_policy
435
+ :type: :string
436
+ AlbumArtFormat:
437
+ :sym: :album_art_format
438
+ :type: :string
439
+ Composition:
440
+ :sym: :composition
441
+ :type: :hash
442
+ :members:
443
+ TimeSpan:
444
+ :sym: :time_span
445
+ :type: :hash
446
+ :members:
447
+ StartTime:
448
+ :sym: :start_time
449
+ :type: :string
450
+ Duration:
451
+ :sym: :duration
452
+ :type: :string
453
+ Captions:
454
+ :sym: :captions
455
+ :type: :hash
456
+ :members:
457
+ MergePolicy:
458
+ :sym: :merge_policy
459
+ :type: :string
460
+ CaptionSources:
461
+ :sym: :caption_sources
462
+ :type: :hash
463
+ :members:
464
+ Key:
465
+ :sym: :key
466
+ :type: :string
467
+ Language:
468
+ :sym: :language
469
+ :type: :string
470
+ TimeOffset:
471
+ :sym: :time_offset
472
+ :type: :string
473
+ Label:
474
+ :sym: :label
475
+ :type: :string
476
+ CaptionFormats:
477
+ :sym: :caption_formats
478
+ :type: :hash
479
+ :members:
480
+ Format:
481
+ :sym: :format
482
+ :type: :string
483
+ Pattern:
484
+ :sym: :pattern
485
+ :type: :string
486
+ Outputs:
487
+ :sym: :outputs
488
+ :type: :hash
489
+ :members:
490
+ Id:
491
+ :sym: :id
492
+ :type: :string
493
+ Key:
494
+ :sym: :key
495
+ :type: :string
496
+ ThumbnailPattern:
497
+ :sym: :thumbnail_pattern
498
+ :type: :string
499
+ Rotate:
500
+ :sym: :rotate
501
+ :type: :string
502
+ PresetId:
503
+ :sym: :preset_id
504
+ :type: :string
505
+ SegmentDuration:
506
+ :sym: :segment_duration
507
+ :type: :string
508
+ Status:
509
+ :sym: :status
510
+ :type: :string
511
+ StatusDetail:
512
+ :sym: :status_detail
513
+ :type: :string
514
+ Duration:
515
+ :sym: :duration
516
+ :type: :integer
517
+ Width:
518
+ :sym: :width
519
+ :type: :integer
520
+ Height:
521
+ :sym: :height
522
+ :type: :integer
523
+ Watermarks:
524
+ :sym: :watermarks
525
+ :type: :hash
526
+ :members:
527
+ PresetWatermarkId:
528
+ :sym: :preset_watermark_id
529
+ :type: :string
530
+ InputKey:
531
+ :sym: :input_key
532
+ :type: :string
533
+ AlbumArt:
534
+ :sym: :album_art
535
+ :type: :hash
536
+ :members:
537
+ MergePolicy:
538
+ :sym: :merge_policy
539
+ :type: :string
540
+ Artwork:
541
+ :sym: :artwork
542
+ :type: :hash
543
+ :members:
544
+ InputKey:
545
+ :sym: :input_key
546
+ :type: :string
547
+ MaxWidth:
548
+ :sym: :max_width
549
+ :type: :string
550
+ MaxHeight:
551
+ :sym: :max_height
552
+ :type: :string
553
+ SizingPolicy:
554
+ :sym: :sizing_policy
555
+ :type: :string
556
+ PaddingPolicy:
557
+ :sym: :padding_policy
558
+ :type: :string
559
+ AlbumArtFormat:
560
+ :sym: :album_art_format
561
+ :type: :string
562
+ Composition:
563
+ :sym: :composition
564
+ :type: :hash
565
+ :members:
566
+ TimeSpan:
567
+ :sym: :time_span
568
+ :type: :hash
569
+ :members:
570
+ StartTime:
571
+ :sym: :start_time
572
+ :type: :string
573
+ Duration:
574
+ :sym: :duration
575
+ :type: :string
576
+ Captions:
577
+ :sym: :captions
578
+ :type: :hash
579
+ :members:
580
+ MergePolicy:
581
+ :sym: :merge_policy
582
+ :type: :string
583
+ CaptionSources:
584
+ :sym: :caption_sources
585
+ :type: :hash
586
+ :members:
587
+ Key:
588
+ :sym: :key
589
+ :type: :string
590
+ Language:
591
+ :sym: :language
592
+ :type: :string
593
+ TimeOffset:
594
+ :sym: :time_offset
595
+ :type: :string
596
+ Label:
597
+ :sym: :label
598
+ :type: :string
599
+ CaptionFormats:
600
+ :sym: :caption_formats
601
+ :type: :hash
602
+ :members:
603
+ Format:
604
+ :sym: :format
605
+ :type: :string
606
+ Pattern:
607
+ :sym: :pattern
608
+ :type: :string
609
+ OutputKeyPrefix:
610
+ :sym: :output_key_prefix
611
+ :type: :string
612
+ Playlists:
613
+ :sym: :playlists
614
+ :type: :hash
615
+ :members:
616
+ Name:
617
+ :sym: :name
618
+ :type: :string
619
+ Format:
620
+ :sym: :format
621
+ :type: :string
622
+ OutputKeys:
623
+ :sym: :output_keys
624
+ :type: :string
625
+ Status:
626
+ :sym: :status
627
+ :type: :string
628
+ StatusDetail:
629
+ :sym: :status_detail
630
+ :type: :string
631
+ Status:
632
+ :sym: :status
633
+ :type: :string
634
+ - :name: CreatePipeline
635
+ :method: :create_pipeline
636
+ :http:
637
+ :verb: POST
638
+ :uri: /2012-09-25/pipelines
639
+ :response_code: 201
640
+ :inputs:
641
+ :name:
642
+ :name: Name
643
+ :type: :string
644
+ :required: true
645
+ :input_bucket:
646
+ :name: InputBucket
647
+ :type: :string
648
+ :required: true
649
+ :output_bucket:
650
+ :name: OutputBucket
651
+ :type: :string
652
+ :role:
653
+ :name: Role
654
+ :type: :string
655
+ :required: true
656
+ :notifications:
657
+ :name: Notifications
658
+ :type: :hash
659
+ :members:
660
+ :progressing:
661
+ :name: Progressing
662
+ :type: :string
663
+ :completed:
664
+ :name: Completed
665
+ :type: :string
666
+ :warning:
667
+ :name: Warning
668
+ :type: :string
669
+ :error:
670
+ :name: Error
671
+ :type: :string
672
+ :content_config:
673
+ :name: ContentConfig
674
+ :type: :hash
675
+ :members:
676
+ :bucket:
677
+ :name: Bucket
678
+ :type: :string
679
+ :storage_class:
680
+ :name: StorageClass
681
+ :type: :string
682
+ :permissions:
683
+ :name: Permissions
684
+ :type: :array
685
+ :members:
686
+ :name: member
687
+ :type: :hash
688
+ :members:
689
+ :grantee_type:
690
+ :name: GranteeType
691
+ :type: :string
692
+ :grantee:
693
+ :name: Grantee
694
+ :type: :string
695
+ :access:
696
+ :name: Access
697
+ :type: :array
698
+ :members:
699
+ :name: member
700
+ :type: :string
701
+ :thumbnail_config:
702
+ :name: ThumbnailConfig
703
+ :type: :hash
704
+ :members:
705
+ :bucket:
706
+ :name: Bucket
707
+ :type: :string
708
+ :storage_class:
709
+ :name: StorageClass
710
+ :type: :string
711
+ :permissions:
712
+ :name: Permissions
713
+ :type: :array
714
+ :members:
715
+ :name: member
716
+ :type: :hash
717
+ :members:
718
+ :grantee_type:
719
+ :name: GranteeType
720
+ :type: :string
721
+ :grantee:
722
+ :name: Grantee
723
+ :type: :string
724
+ :access:
725
+ :name: Access
726
+ :type: :array
727
+ :members:
728
+ :name: member
729
+ :type: :string
730
+ :outputs:
731
+ Pipeline:
732
+ :sym: :pipeline
733
+ :type: :hash
734
+ :members:
735
+ Id:
736
+ :sym: :id
737
+ :type: :string
738
+ Arn:
739
+ :sym: :arn
740
+ :type: :string
741
+ Name:
742
+ :sym: :name
743
+ :type: :string
744
+ Status:
745
+ :sym: :status
746
+ :type: :string
747
+ InputBucket:
748
+ :sym: :input_bucket
749
+ :type: :string
750
+ OutputBucket:
751
+ :sym: :output_bucket
752
+ :type: :string
753
+ Role:
754
+ :sym: :role
755
+ :type: :string
756
+ Notifications:
757
+ :sym: :notifications
758
+ :type: :hash
759
+ :members:
760
+ Progressing:
761
+ :sym: :progressing
762
+ :type: :string
763
+ Completed:
764
+ :sym: :completed
765
+ :type: :string
766
+ Warning:
767
+ :sym: :warning
768
+ :type: :string
769
+ Error:
770
+ :sym: :error
771
+ :type: :string
772
+ ContentConfig:
773
+ :sym: :content_config
774
+ :type: :hash
775
+ :members:
776
+ Bucket:
777
+ :sym: :bucket
778
+ :type: :string
779
+ StorageClass:
780
+ :sym: :storage_class
781
+ :type: :string
782
+ Permissions:
783
+ :sym: :permissions
784
+ :type: :hash
785
+ :members:
786
+ GranteeType:
787
+ :sym: :grantee_type
788
+ :type: :string
789
+ Grantee:
790
+ :sym: :grantee
791
+ :type: :string
792
+ Access:
793
+ :sym: :access
794
+ :type: :string
795
+ ThumbnailConfig:
796
+ :sym: :thumbnail_config
797
+ :type: :hash
798
+ :members:
799
+ Bucket:
800
+ :sym: :bucket
801
+ :type: :string
802
+ StorageClass:
803
+ :sym: :storage_class
804
+ :type: :string
805
+ Permissions:
806
+ :sym: :permissions
807
+ :type: :hash
808
+ :members:
809
+ GranteeType:
810
+ :sym: :grantee_type
811
+ :type: :string
812
+ Grantee:
813
+ :sym: :grantee
814
+ :type: :string
815
+ Access:
816
+ :sym: :access
817
+ :type: :string
818
+ - :name: CreatePreset
819
+ :method: :create_preset
820
+ :http:
821
+ :verb: POST
822
+ :uri: /2012-09-25/presets
823
+ :response_code: 201
824
+ :inputs:
825
+ :name:
826
+ :name: Name
827
+ :type: :string
828
+ :required: true
829
+ :description:
830
+ :name: Description
831
+ :type: :string
832
+ :container:
833
+ :name: Container
834
+ :type: :string
835
+ :required: true
836
+ :video:
837
+ :name: Video
838
+ :type: :hash
839
+ :members:
840
+ :codec:
841
+ :name: Codec
842
+ :type: :string
843
+ :codec_options:
844
+ :name: CodecOptions
845
+ :type: :map
846
+ :keys:
847
+ :name: key
848
+ :type: :string
849
+ :members:
850
+ :name: value
851
+ :type: :string
852
+ :keyframes_max_dist:
853
+ :name: KeyframesMaxDist
854
+ :type: :string
855
+ :fixed_gop:
856
+ :name: FixedGOP
857
+ :type: :string
858
+ :bit_rate:
859
+ :name: BitRate
860
+ :type: :string
861
+ :frame_rate:
862
+ :name: FrameRate
863
+ :type: :string
864
+ :max_frame_rate:
865
+ :name: MaxFrameRate
866
+ :type: :string
867
+ :resolution:
868
+ :name: Resolution
869
+ :type: :string
870
+ :aspect_ratio:
871
+ :name: AspectRatio
872
+ :type: :string
873
+ :max_width:
874
+ :name: MaxWidth
875
+ :type: :string
876
+ :max_height:
877
+ :name: MaxHeight
878
+ :type: :string
879
+ :display_aspect_ratio:
880
+ :name: DisplayAspectRatio
881
+ :type: :string
882
+ :sizing_policy:
883
+ :name: SizingPolicy
884
+ :type: :string
885
+ :padding_policy:
886
+ :name: PaddingPolicy
887
+ :type: :string
888
+ :watermarks:
889
+ :name: Watermarks
890
+ :type: :array
891
+ :members:
892
+ :name: member
893
+ :type: :hash
894
+ :members:
895
+ :id:
896
+ :name: Id
897
+ :type: :string
898
+ :max_width:
899
+ :name: MaxWidth
900
+ :type: :string
901
+ :max_height:
902
+ :name: MaxHeight
903
+ :type: :string
904
+ :sizing_policy:
905
+ :name: SizingPolicy
906
+ :type: :string
907
+ :horizontal_align:
908
+ :name: HorizontalAlign
909
+ :type: :string
910
+ :horizontal_offset:
911
+ :name: HorizontalOffset
912
+ :type: :string
913
+ :vertical_align:
914
+ :name: VerticalAlign
915
+ :type: :string
916
+ :vertical_offset:
917
+ :name: VerticalOffset
918
+ :type: :string
919
+ :opacity:
920
+ :name: Opacity
921
+ :type: :string
922
+ :target:
923
+ :name: Target
924
+ :type: :string
925
+ :audio:
926
+ :name: Audio
927
+ :type: :hash
928
+ :members:
929
+ :codec:
930
+ :name: Codec
931
+ :type: :string
932
+ :sample_rate:
933
+ :name: SampleRate
934
+ :type: :string
935
+ :bit_rate:
936
+ :name: BitRate
937
+ :type: :string
938
+ :channels:
939
+ :name: Channels
940
+ :type: :string
941
+ :codec_options:
942
+ :name: CodecOptions
943
+ :type: :hash
944
+ :members:
945
+ :profile:
946
+ :name: Profile
947
+ :type: :string
948
+ :thumbnails:
949
+ :name: Thumbnails
950
+ :type: :hash
951
+ :members:
952
+ :format:
953
+ :name: Format
954
+ :type: :string
955
+ :interval:
956
+ :name: Interval
957
+ :type: :string
958
+ :resolution:
959
+ :name: Resolution
960
+ :type: :string
961
+ :aspect_ratio:
962
+ :name: AspectRatio
963
+ :type: :string
964
+ :max_width:
965
+ :name: MaxWidth
966
+ :type: :string
967
+ :max_height:
968
+ :name: MaxHeight
969
+ :type: :string
970
+ :sizing_policy:
971
+ :name: SizingPolicy
972
+ :type: :string
973
+ :padding_policy:
974
+ :name: PaddingPolicy
975
+ :type: :string
976
+ :outputs:
977
+ Preset:
978
+ :sym: :preset
979
+ :type: :hash
980
+ :members:
981
+ Id:
982
+ :sym: :id
983
+ :type: :string
984
+ Arn:
985
+ :sym: :arn
986
+ :type: :string
987
+ Name:
988
+ :sym: :name
989
+ :type: :string
990
+ Description:
991
+ :sym: :description
992
+ :type: :string
993
+ Container:
994
+ :sym: :container
995
+ :type: :string
996
+ Audio:
997
+ :sym: :audio
998
+ :type: :hash
999
+ :members:
1000
+ Codec:
1001
+ :sym: :codec
1002
+ :type: :string
1003
+ SampleRate:
1004
+ :sym: :sample_rate
1005
+ :type: :string
1006
+ BitRate:
1007
+ :sym: :bit_rate
1008
+ :type: :string
1009
+ Channels:
1010
+ :sym: :channels
1011
+ :type: :string
1012
+ CodecOptions:
1013
+ :sym: :codec_options
1014
+ :type: :hash
1015
+ :members:
1016
+ Profile:
1017
+ :sym: :profile
1018
+ :type: :string
1019
+ Video:
1020
+ :sym: :video
1021
+ :type: :hash
1022
+ :members:
1023
+ Codec:
1024
+ :sym: :codec
1025
+ :type: :string
1026
+ CodecOptions:
1027
+ :sym: :codec_options
1028
+ :type: :map
1029
+ :members:
1030
+ :sym: :map_value
1031
+ :type: :string
1032
+ KeyframesMaxDist:
1033
+ :sym: :keyframes_max_dist
1034
+ :type: :string
1035
+ FixedGOP:
1036
+ :sym: :fixed_gop
1037
+ :type: :string
1038
+ BitRate:
1039
+ :sym: :bit_rate
1040
+ :type: :string
1041
+ FrameRate:
1042
+ :sym: :frame_rate
1043
+ :type: :string
1044
+ MaxFrameRate:
1045
+ :sym: :max_frame_rate
1046
+ :type: :string
1047
+ Resolution:
1048
+ :sym: :resolution
1049
+ :type: :string
1050
+ AspectRatio:
1051
+ :sym: :aspect_ratio
1052
+ :type: :string
1053
+ MaxWidth:
1054
+ :sym: :max_width
1055
+ :type: :string
1056
+ MaxHeight:
1057
+ :sym: :max_height
1058
+ :type: :string
1059
+ DisplayAspectRatio:
1060
+ :sym: :display_aspect_ratio
1061
+ :type: :string
1062
+ SizingPolicy:
1063
+ :sym: :sizing_policy
1064
+ :type: :string
1065
+ PaddingPolicy:
1066
+ :sym: :padding_policy
1067
+ :type: :string
1068
+ Watermarks:
1069
+ :sym: :watermarks
1070
+ :type: :hash
1071
+ :members:
1072
+ Id:
1073
+ :sym: :id
1074
+ :type: :string
1075
+ MaxWidth:
1076
+ :sym: :max_width
1077
+ :type: :string
1078
+ MaxHeight:
1079
+ :sym: :max_height
1080
+ :type: :string
1081
+ SizingPolicy:
1082
+ :sym: :sizing_policy
1083
+ :type: :string
1084
+ HorizontalAlign:
1085
+ :sym: :horizontal_align
1086
+ :type: :string
1087
+ HorizontalOffset:
1088
+ :sym: :horizontal_offset
1089
+ :type: :string
1090
+ VerticalAlign:
1091
+ :sym: :vertical_align
1092
+ :type: :string
1093
+ VerticalOffset:
1094
+ :sym: :vertical_offset
1095
+ :type: :string
1096
+ Opacity:
1097
+ :sym: :opacity
1098
+ :type: :string
1099
+ Target:
1100
+ :sym: :target
1101
+ :type: :string
1102
+ Thumbnails:
1103
+ :sym: :thumbnails
1104
+ :type: :hash
1105
+ :members:
1106
+ Format:
1107
+ :sym: :format
1108
+ :type: :string
1109
+ Interval:
1110
+ :sym: :interval
1111
+ :type: :string
1112
+ Resolution:
1113
+ :sym: :resolution
1114
+ :type: :string
1115
+ AspectRatio:
1116
+ :sym: :aspect_ratio
1117
+ :type: :string
1118
+ MaxWidth:
1119
+ :sym: :max_width
1120
+ :type: :string
1121
+ MaxHeight:
1122
+ :sym: :max_height
1123
+ :type: :string
1124
+ SizingPolicy:
1125
+ :sym: :sizing_policy
1126
+ :type: :string
1127
+ PaddingPolicy:
1128
+ :sym: :padding_policy
1129
+ :type: :string
1130
+ Type:
1131
+ :sym: :type
1132
+ :type: :string
1133
+ Warning:
1134
+ :sym: :warning
1135
+ :type: :string
1136
+ - :name: DeletePipeline
1137
+ :method: :delete_pipeline
1138
+ :http:
1139
+ :verb: DELETE
1140
+ :uri: /2012-09-25/pipelines/:id
1141
+ :response_code: 202
1142
+ :inputs:
1143
+ :id:
1144
+ :type: :string
1145
+ :required: true
1146
+ :outputs: {}
1147
+ - :name: DeletePreset
1148
+ :method: :delete_preset
1149
+ :http:
1150
+ :verb: DELETE
1151
+ :uri: /2012-09-25/presets/:id
1152
+ :response_code: 202
1153
+ :inputs:
1154
+ :id:
1155
+ :type: :string
1156
+ :required: true
1157
+ :outputs: {}
1158
+ - :name: ListJobsByPipeline
1159
+ :method: :list_jobs_by_pipeline
1160
+ :http:
1161
+ :verb: GET
1162
+ :uri: /2012-09-25/jobsByPipeline/:pipeline_id?Ascending=:ascending;PageToken=:page_token
1163
+ :inputs:
1164
+ :pipeline_id:
1165
+ :type: :string
1166
+ :required: true
1167
+ :ascending:
1168
+ :type: :string
1169
+ :page_token:
1170
+ :type: :string
1171
+ :outputs:
1172
+ Jobs:
1173
+ :sym: :jobs
1174
+ :type: :hash
1175
+ :members:
1176
+ Id:
1177
+ :sym: :id
1178
+ :type: :string
1179
+ Arn:
1180
+ :sym: :arn
1181
+ :type: :string
1182
+ PipelineId:
1183
+ :sym: :pipeline_id
1184
+ :type: :string
1185
+ Input:
1186
+ :sym: :input
1187
+ :type: :hash
1188
+ :members:
1189
+ Key:
1190
+ :sym: :key
1191
+ :type: :string
1192
+ FrameRate:
1193
+ :sym: :frame_rate
1194
+ :type: :string
1195
+ Resolution:
1196
+ :sym: :resolution
1197
+ :type: :string
1198
+ AspectRatio:
1199
+ :sym: :aspect_ratio
1200
+ :type: :string
1201
+ Interlaced:
1202
+ :sym: :interlaced
1203
+ :type: :string
1204
+ Container:
1205
+ :sym: :container
1206
+ :type: :string
1207
+ Output:
1208
+ :sym: :output
1209
+ :type: :hash
1210
+ :members:
1211
+ Id:
1212
+ :sym: :id
1213
+ :type: :string
1214
+ Key:
1215
+ :sym: :key
1216
+ :type: :string
1217
+ ThumbnailPattern:
1218
+ :sym: :thumbnail_pattern
1219
+ :type: :string
1220
+ Rotate:
1221
+ :sym: :rotate
1222
+ :type: :string
1223
+ PresetId:
1224
+ :sym: :preset_id
1225
+ :type: :string
1226
+ SegmentDuration:
1227
+ :sym: :segment_duration
1228
+ :type: :string
1229
+ Status:
1230
+ :sym: :status
1231
+ :type: :string
1232
+ StatusDetail:
1233
+ :sym: :status_detail
1234
+ :type: :string
1235
+ Duration:
1236
+ :sym: :duration
1237
+ :type: :integer
1238
+ Width:
1239
+ :sym: :width
1240
+ :type: :integer
1241
+ Height:
1242
+ :sym: :height
1243
+ :type: :integer
1244
+ Watermarks:
1245
+ :sym: :watermarks
1246
+ :type: :hash
1247
+ :members:
1248
+ PresetWatermarkId:
1249
+ :sym: :preset_watermark_id
1250
+ :type: :string
1251
+ InputKey:
1252
+ :sym: :input_key
1253
+ :type: :string
1254
+ AlbumArt:
1255
+ :sym: :album_art
1256
+ :type: :hash
1257
+ :members:
1258
+ MergePolicy:
1259
+ :sym: :merge_policy
1260
+ :type: :string
1261
+ Artwork:
1262
+ :sym: :artwork
1263
+ :type: :hash
1264
+ :members:
1265
+ InputKey:
1266
+ :sym: :input_key
1267
+ :type: :string
1268
+ MaxWidth:
1269
+ :sym: :max_width
1270
+ :type: :string
1271
+ MaxHeight:
1272
+ :sym: :max_height
1273
+ :type: :string
1274
+ SizingPolicy:
1275
+ :sym: :sizing_policy
1276
+ :type: :string
1277
+ PaddingPolicy:
1278
+ :sym: :padding_policy
1279
+ :type: :string
1280
+ AlbumArtFormat:
1281
+ :sym: :album_art_format
1282
+ :type: :string
1283
+ Composition:
1284
+ :sym: :composition
1285
+ :type: :hash
1286
+ :members:
1287
+ TimeSpan:
1288
+ :sym: :time_span
1289
+ :type: :hash
1290
+ :members:
1291
+ StartTime:
1292
+ :sym: :start_time
1293
+ :type: :string
1294
+ Duration:
1295
+ :sym: :duration
1296
+ :type: :string
1297
+ Captions:
1298
+ :sym: :captions
1299
+ :type: :hash
1300
+ :members:
1301
+ MergePolicy:
1302
+ :sym: :merge_policy
1303
+ :type: :string
1304
+ CaptionSources:
1305
+ :sym: :caption_sources
1306
+ :type: :hash
1307
+ :members:
1308
+ Key:
1309
+ :sym: :key
1310
+ :type: :string
1311
+ Language:
1312
+ :sym: :language
1313
+ :type: :string
1314
+ TimeOffset:
1315
+ :sym: :time_offset
1316
+ :type: :string
1317
+ Label:
1318
+ :sym: :label
1319
+ :type: :string
1320
+ CaptionFormats:
1321
+ :sym: :caption_formats
1322
+ :type: :hash
1323
+ :members:
1324
+ Format:
1325
+ :sym: :format
1326
+ :type: :string
1327
+ Pattern:
1328
+ :sym: :pattern
1329
+ :type: :string
1330
+ Outputs:
1331
+ :sym: :outputs
1332
+ :type: :hash
1333
+ :members:
1334
+ Id:
1335
+ :sym: :id
1336
+ :type: :string
1337
+ Key:
1338
+ :sym: :key
1339
+ :type: :string
1340
+ ThumbnailPattern:
1341
+ :sym: :thumbnail_pattern
1342
+ :type: :string
1343
+ Rotate:
1344
+ :sym: :rotate
1345
+ :type: :string
1346
+ PresetId:
1347
+ :sym: :preset_id
1348
+ :type: :string
1349
+ SegmentDuration:
1350
+ :sym: :segment_duration
1351
+ :type: :string
1352
+ Status:
1353
+ :sym: :status
1354
+ :type: :string
1355
+ StatusDetail:
1356
+ :sym: :status_detail
1357
+ :type: :string
1358
+ Duration:
1359
+ :sym: :duration
1360
+ :type: :integer
1361
+ Width:
1362
+ :sym: :width
1363
+ :type: :integer
1364
+ Height:
1365
+ :sym: :height
1366
+ :type: :integer
1367
+ Watermarks:
1368
+ :sym: :watermarks
1369
+ :type: :hash
1370
+ :members:
1371
+ PresetWatermarkId:
1372
+ :sym: :preset_watermark_id
1373
+ :type: :string
1374
+ InputKey:
1375
+ :sym: :input_key
1376
+ :type: :string
1377
+ AlbumArt:
1378
+ :sym: :album_art
1379
+ :type: :hash
1380
+ :members:
1381
+ MergePolicy:
1382
+ :sym: :merge_policy
1383
+ :type: :string
1384
+ Artwork:
1385
+ :sym: :artwork
1386
+ :type: :hash
1387
+ :members:
1388
+ InputKey:
1389
+ :sym: :input_key
1390
+ :type: :string
1391
+ MaxWidth:
1392
+ :sym: :max_width
1393
+ :type: :string
1394
+ MaxHeight:
1395
+ :sym: :max_height
1396
+ :type: :string
1397
+ SizingPolicy:
1398
+ :sym: :sizing_policy
1399
+ :type: :string
1400
+ PaddingPolicy:
1401
+ :sym: :padding_policy
1402
+ :type: :string
1403
+ AlbumArtFormat:
1404
+ :sym: :album_art_format
1405
+ :type: :string
1406
+ Composition:
1407
+ :sym: :composition
1408
+ :type: :hash
1409
+ :members:
1410
+ TimeSpan:
1411
+ :sym: :time_span
1412
+ :type: :hash
1413
+ :members:
1414
+ StartTime:
1415
+ :sym: :start_time
1416
+ :type: :string
1417
+ Duration:
1418
+ :sym: :duration
1419
+ :type: :string
1420
+ Captions:
1421
+ :sym: :captions
1422
+ :type: :hash
1423
+ :members:
1424
+ MergePolicy:
1425
+ :sym: :merge_policy
1426
+ :type: :string
1427
+ CaptionSources:
1428
+ :sym: :caption_sources
1429
+ :type: :hash
1430
+ :members:
1431
+ Key:
1432
+ :sym: :key
1433
+ :type: :string
1434
+ Language:
1435
+ :sym: :language
1436
+ :type: :string
1437
+ TimeOffset:
1438
+ :sym: :time_offset
1439
+ :type: :string
1440
+ Label:
1441
+ :sym: :label
1442
+ :type: :string
1443
+ CaptionFormats:
1444
+ :sym: :caption_formats
1445
+ :type: :hash
1446
+ :members:
1447
+ Format:
1448
+ :sym: :format
1449
+ :type: :string
1450
+ Pattern:
1451
+ :sym: :pattern
1452
+ :type: :string
1453
+ OutputKeyPrefix:
1454
+ :sym: :output_key_prefix
1455
+ :type: :string
1456
+ Playlists:
1457
+ :sym: :playlists
1458
+ :type: :hash
1459
+ :members:
1460
+ Name:
1461
+ :sym: :name
1462
+ :type: :string
1463
+ Format:
1464
+ :sym: :format
1465
+ :type: :string
1466
+ OutputKeys:
1467
+ :sym: :output_keys
1468
+ :type: :string
1469
+ Status:
1470
+ :sym: :status
1471
+ :type: :string
1472
+ StatusDetail:
1473
+ :sym: :status_detail
1474
+ :type: :string
1475
+ Status:
1476
+ :sym: :status
1477
+ :type: :string
1478
+ NextPageToken:
1479
+ :sym: :next_page_token
1480
+ :type: :string
1481
+ - :name: ListJobsByStatus
1482
+ :method: :list_jobs_by_status
1483
+ :http:
1484
+ :verb: GET
1485
+ :uri: /2012-09-25/jobsByStatus/:status?Ascending=:ascending;PageToken=:page_token
1486
+ :inputs:
1487
+ :status:
1488
+ :type: :string
1489
+ :required: true
1490
+ :ascending:
1491
+ :type: :string
1492
+ :page_token:
1493
+ :type: :string
1494
+ :outputs:
1495
+ Jobs:
1496
+ :sym: :jobs
1497
+ :type: :hash
1498
+ :members:
1499
+ Id:
1500
+ :sym: :id
1501
+ :type: :string
1502
+ Arn:
1503
+ :sym: :arn
1504
+ :type: :string
1505
+ PipelineId:
1506
+ :sym: :pipeline_id
1507
+ :type: :string
1508
+ Input:
1509
+ :sym: :input
1510
+ :type: :hash
1511
+ :members:
1512
+ Key:
1513
+ :sym: :key
1514
+ :type: :string
1515
+ FrameRate:
1516
+ :sym: :frame_rate
1517
+ :type: :string
1518
+ Resolution:
1519
+ :sym: :resolution
1520
+ :type: :string
1521
+ AspectRatio:
1522
+ :sym: :aspect_ratio
1523
+ :type: :string
1524
+ Interlaced:
1525
+ :sym: :interlaced
1526
+ :type: :string
1527
+ Container:
1528
+ :sym: :container
1529
+ :type: :string
1530
+ Output:
1531
+ :sym: :output
1532
+ :type: :hash
1533
+ :members:
1534
+ Id:
1535
+ :sym: :id
1536
+ :type: :string
1537
+ Key:
1538
+ :sym: :key
1539
+ :type: :string
1540
+ ThumbnailPattern:
1541
+ :sym: :thumbnail_pattern
1542
+ :type: :string
1543
+ Rotate:
1544
+ :sym: :rotate
1545
+ :type: :string
1546
+ PresetId:
1547
+ :sym: :preset_id
1548
+ :type: :string
1549
+ SegmentDuration:
1550
+ :sym: :segment_duration
1551
+ :type: :string
1552
+ Status:
1553
+ :sym: :status
1554
+ :type: :string
1555
+ StatusDetail:
1556
+ :sym: :status_detail
1557
+ :type: :string
1558
+ Duration:
1559
+ :sym: :duration
1560
+ :type: :integer
1561
+ Width:
1562
+ :sym: :width
1563
+ :type: :integer
1564
+ Height:
1565
+ :sym: :height
1566
+ :type: :integer
1567
+ Watermarks:
1568
+ :sym: :watermarks
1569
+ :type: :hash
1570
+ :members:
1571
+ PresetWatermarkId:
1572
+ :sym: :preset_watermark_id
1573
+ :type: :string
1574
+ InputKey:
1575
+ :sym: :input_key
1576
+ :type: :string
1577
+ AlbumArt:
1578
+ :sym: :album_art
1579
+ :type: :hash
1580
+ :members:
1581
+ MergePolicy:
1582
+ :sym: :merge_policy
1583
+ :type: :string
1584
+ Artwork:
1585
+ :sym: :artwork
1586
+ :type: :hash
1587
+ :members:
1588
+ InputKey:
1589
+ :sym: :input_key
1590
+ :type: :string
1591
+ MaxWidth:
1592
+ :sym: :max_width
1593
+ :type: :string
1594
+ MaxHeight:
1595
+ :sym: :max_height
1596
+ :type: :string
1597
+ SizingPolicy:
1598
+ :sym: :sizing_policy
1599
+ :type: :string
1600
+ PaddingPolicy:
1601
+ :sym: :padding_policy
1602
+ :type: :string
1603
+ AlbumArtFormat:
1604
+ :sym: :album_art_format
1605
+ :type: :string
1606
+ Composition:
1607
+ :sym: :composition
1608
+ :type: :hash
1609
+ :members:
1610
+ TimeSpan:
1611
+ :sym: :time_span
1612
+ :type: :hash
1613
+ :members:
1614
+ StartTime:
1615
+ :sym: :start_time
1616
+ :type: :string
1617
+ Duration:
1618
+ :sym: :duration
1619
+ :type: :string
1620
+ Captions:
1621
+ :sym: :captions
1622
+ :type: :hash
1623
+ :members:
1624
+ MergePolicy:
1625
+ :sym: :merge_policy
1626
+ :type: :string
1627
+ CaptionSources:
1628
+ :sym: :caption_sources
1629
+ :type: :hash
1630
+ :members:
1631
+ Key:
1632
+ :sym: :key
1633
+ :type: :string
1634
+ Language:
1635
+ :sym: :language
1636
+ :type: :string
1637
+ TimeOffset:
1638
+ :sym: :time_offset
1639
+ :type: :string
1640
+ Label:
1641
+ :sym: :label
1642
+ :type: :string
1643
+ CaptionFormats:
1644
+ :sym: :caption_formats
1645
+ :type: :hash
1646
+ :members:
1647
+ Format:
1648
+ :sym: :format
1649
+ :type: :string
1650
+ Pattern:
1651
+ :sym: :pattern
1652
+ :type: :string
1653
+ Outputs:
1654
+ :sym: :outputs
1655
+ :type: :hash
1656
+ :members:
1657
+ Id:
1658
+ :sym: :id
1659
+ :type: :string
1660
+ Key:
1661
+ :sym: :key
1662
+ :type: :string
1663
+ ThumbnailPattern:
1664
+ :sym: :thumbnail_pattern
1665
+ :type: :string
1666
+ Rotate:
1667
+ :sym: :rotate
1668
+ :type: :string
1669
+ PresetId:
1670
+ :sym: :preset_id
1671
+ :type: :string
1672
+ SegmentDuration:
1673
+ :sym: :segment_duration
1674
+ :type: :string
1675
+ Status:
1676
+ :sym: :status
1677
+ :type: :string
1678
+ StatusDetail:
1679
+ :sym: :status_detail
1680
+ :type: :string
1681
+ Duration:
1682
+ :sym: :duration
1683
+ :type: :integer
1684
+ Width:
1685
+ :sym: :width
1686
+ :type: :integer
1687
+ Height:
1688
+ :sym: :height
1689
+ :type: :integer
1690
+ Watermarks:
1691
+ :sym: :watermarks
1692
+ :type: :hash
1693
+ :members:
1694
+ PresetWatermarkId:
1695
+ :sym: :preset_watermark_id
1696
+ :type: :string
1697
+ InputKey:
1698
+ :sym: :input_key
1699
+ :type: :string
1700
+ AlbumArt:
1701
+ :sym: :album_art
1702
+ :type: :hash
1703
+ :members:
1704
+ MergePolicy:
1705
+ :sym: :merge_policy
1706
+ :type: :string
1707
+ Artwork:
1708
+ :sym: :artwork
1709
+ :type: :hash
1710
+ :members:
1711
+ InputKey:
1712
+ :sym: :input_key
1713
+ :type: :string
1714
+ MaxWidth:
1715
+ :sym: :max_width
1716
+ :type: :string
1717
+ MaxHeight:
1718
+ :sym: :max_height
1719
+ :type: :string
1720
+ SizingPolicy:
1721
+ :sym: :sizing_policy
1722
+ :type: :string
1723
+ PaddingPolicy:
1724
+ :sym: :padding_policy
1725
+ :type: :string
1726
+ AlbumArtFormat:
1727
+ :sym: :album_art_format
1728
+ :type: :string
1729
+ Composition:
1730
+ :sym: :composition
1731
+ :type: :hash
1732
+ :members:
1733
+ TimeSpan:
1734
+ :sym: :time_span
1735
+ :type: :hash
1736
+ :members:
1737
+ StartTime:
1738
+ :sym: :start_time
1739
+ :type: :string
1740
+ Duration:
1741
+ :sym: :duration
1742
+ :type: :string
1743
+ Captions:
1744
+ :sym: :captions
1745
+ :type: :hash
1746
+ :members:
1747
+ MergePolicy:
1748
+ :sym: :merge_policy
1749
+ :type: :string
1750
+ CaptionSources:
1751
+ :sym: :caption_sources
1752
+ :type: :hash
1753
+ :members:
1754
+ Key:
1755
+ :sym: :key
1756
+ :type: :string
1757
+ Language:
1758
+ :sym: :language
1759
+ :type: :string
1760
+ TimeOffset:
1761
+ :sym: :time_offset
1762
+ :type: :string
1763
+ Label:
1764
+ :sym: :label
1765
+ :type: :string
1766
+ CaptionFormats:
1767
+ :sym: :caption_formats
1768
+ :type: :hash
1769
+ :members:
1770
+ Format:
1771
+ :sym: :format
1772
+ :type: :string
1773
+ Pattern:
1774
+ :sym: :pattern
1775
+ :type: :string
1776
+ OutputKeyPrefix:
1777
+ :sym: :output_key_prefix
1778
+ :type: :string
1779
+ Playlists:
1780
+ :sym: :playlists
1781
+ :type: :hash
1782
+ :members:
1783
+ Name:
1784
+ :sym: :name
1785
+ :type: :string
1786
+ Format:
1787
+ :sym: :format
1788
+ :type: :string
1789
+ OutputKeys:
1790
+ :sym: :output_keys
1791
+ :type: :string
1792
+ Status:
1793
+ :sym: :status
1794
+ :type: :string
1795
+ StatusDetail:
1796
+ :sym: :status_detail
1797
+ :type: :string
1798
+ Status:
1799
+ :sym: :status
1800
+ :type: :string
1801
+ NextPageToken:
1802
+ :sym: :next_page_token
1803
+ :type: :string
1804
+ - :name: ListPipelines
1805
+ :method: :list_pipelines
1806
+ :http:
1807
+ :verb: GET
1808
+ :uri: /2012-09-25/pipelines?Ascending=:ascending;PageToken=:page_token
1809
+ :inputs:
1810
+ :ascending:
1811
+ :type: :string
1812
+ :page_token:
1813
+ :type: :string
1814
+ :outputs:
1815
+ Pipelines:
1816
+ :sym: :pipelines
1817
+ :type: :hash
1818
+ :members:
1819
+ Id:
1820
+ :sym: :id
1821
+ :type: :string
1822
+ Arn:
1823
+ :sym: :arn
1824
+ :type: :string
1825
+ Name:
1826
+ :sym: :name
1827
+ :type: :string
1828
+ Status:
1829
+ :sym: :status
1830
+ :type: :string
1831
+ InputBucket:
1832
+ :sym: :input_bucket
1833
+ :type: :string
1834
+ OutputBucket:
1835
+ :sym: :output_bucket
1836
+ :type: :string
1837
+ Role:
1838
+ :sym: :role
1839
+ :type: :string
1840
+ Notifications:
1841
+ :sym: :notifications
1842
+ :type: :hash
1843
+ :members:
1844
+ Progressing:
1845
+ :sym: :progressing
1846
+ :type: :string
1847
+ Completed:
1848
+ :sym: :completed
1849
+ :type: :string
1850
+ Warning:
1851
+ :sym: :warning
1852
+ :type: :string
1853
+ Error:
1854
+ :sym: :error
1855
+ :type: :string
1856
+ ContentConfig:
1857
+ :sym: :content_config
1858
+ :type: :hash
1859
+ :members:
1860
+ Bucket:
1861
+ :sym: :bucket
1862
+ :type: :string
1863
+ StorageClass:
1864
+ :sym: :storage_class
1865
+ :type: :string
1866
+ Permissions:
1867
+ :sym: :permissions
1868
+ :type: :hash
1869
+ :members:
1870
+ GranteeType:
1871
+ :sym: :grantee_type
1872
+ :type: :string
1873
+ Grantee:
1874
+ :sym: :grantee
1875
+ :type: :string
1876
+ Access:
1877
+ :sym: :access
1878
+ :type: :string
1879
+ ThumbnailConfig:
1880
+ :sym: :thumbnail_config
1881
+ :type: :hash
1882
+ :members:
1883
+ Bucket:
1884
+ :sym: :bucket
1885
+ :type: :string
1886
+ StorageClass:
1887
+ :sym: :storage_class
1888
+ :type: :string
1889
+ Permissions:
1890
+ :sym: :permissions
1891
+ :type: :hash
1892
+ :members:
1893
+ GranteeType:
1894
+ :sym: :grantee_type
1895
+ :type: :string
1896
+ Grantee:
1897
+ :sym: :grantee
1898
+ :type: :string
1899
+ Access:
1900
+ :sym: :access
1901
+ :type: :string
1902
+ NextPageToken:
1903
+ :sym: :next_page_token
1904
+ :type: :string
1905
+ - :name: ListPresets
1906
+ :method: :list_presets
1907
+ :http:
1908
+ :verb: GET
1909
+ :uri: /2012-09-25/presets?Ascending=:ascending;PageToken=:page_token
1910
+ :inputs:
1911
+ :ascending:
1912
+ :type: :string
1913
+ :page_token:
1914
+ :type: :string
1915
+ :outputs:
1916
+ Presets:
1917
+ :sym: :presets
1918
+ :type: :hash
1919
+ :members:
1920
+ Id:
1921
+ :sym: :id
1922
+ :type: :string
1923
+ Arn:
1924
+ :sym: :arn
1925
+ :type: :string
1926
+ Name:
1927
+ :sym: :name
1928
+ :type: :string
1929
+ Description:
1930
+ :sym: :description
1931
+ :type: :string
1932
+ Container:
1933
+ :sym: :container
1934
+ :type: :string
1935
+ Audio:
1936
+ :sym: :audio
1937
+ :type: :hash
1938
+ :members:
1939
+ Codec:
1940
+ :sym: :codec
1941
+ :type: :string
1942
+ SampleRate:
1943
+ :sym: :sample_rate
1944
+ :type: :string
1945
+ BitRate:
1946
+ :sym: :bit_rate
1947
+ :type: :string
1948
+ Channels:
1949
+ :sym: :channels
1950
+ :type: :string
1951
+ CodecOptions:
1952
+ :sym: :codec_options
1953
+ :type: :hash
1954
+ :members:
1955
+ Profile:
1956
+ :sym: :profile
1957
+ :type: :string
1958
+ Video:
1959
+ :sym: :video
1960
+ :type: :hash
1961
+ :members:
1962
+ Codec:
1963
+ :sym: :codec
1964
+ :type: :string
1965
+ CodecOptions:
1966
+ :sym: :codec_options
1967
+ :type: :map
1968
+ :members:
1969
+ :sym: :map_value
1970
+ :type: :string
1971
+ KeyframesMaxDist:
1972
+ :sym: :keyframes_max_dist
1973
+ :type: :string
1974
+ FixedGOP:
1975
+ :sym: :fixed_gop
1976
+ :type: :string
1977
+ BitRate:
1978
+ :sym: :bit_rate
1979
+ :type: :string
1980
+ FrameRate:
1981
+ :sym: :frame_rate
1982
+ :type: :string
1983
+ MaxFrameRate:
1984
+ :sym: :max_frame_rate
1985
+ :type: :string
1986
+ Resolution:
1987
+ :sym: :resolution
1988
+ :type: :string
1989
+ AspectRatio:
1990
+ :sym: :aspect_ratio
1991
+ :type: :string
1992
+ MaxWidth:
1993
+ :sym: :max_width
1994
+ :type: :string
1995
+ MaxHeight:
1996
+ :sym: :max_height
1997
+ :type: :string
1998
+ DisplayAspectRatio:
1999
+ :sym: :display_aspect_ratio
2000
+ :type: :string
2001
+ SizingPolicy:
2002
+ :sym: :sizing_policy
2003
+ :type: :string
2004
+ PaddingPolicy:
2005
+ :sym: :padding_policy
2006
+ :type: :string
2007
+ Watermarks:
2008
+ :sym: :watermarks
2009
+ :type: :hash
2010
+ :members:
2011
+ Id:
2012
+ :sym: :id
2013
+ :type: :string
2014
+ MaxWidth:
2015
+ :sym: :max_width
2016
+ :type: :string
2017
+ MaxHeight:
2018
+ :sym: :max_height
2019
+ :type: :string
2020
+ SizingPolicy:
2021
+ :sym: :sizing_policy
2022
+ :type: :string
2023
+ HorizontalAlign:
2024
+ :sym: :horizontal_align
2025
+ :type: :string
2026
+ HorizontalOffset:
2027
+ :sym: :horizontal_offset
2028
+ :type: :string
2029
+ VerticalAlign:
2030
+ :sym: :vertical_align
2031
+ :type: :string
2032
+ VerticalOffset:
2033
+ :sym: :vertical_offset
2034
+ :type: :string
2035
+ Opacity:
2036
+ :sym: :opacity
2037
+ :type: :string
2038
+ Target:
2039
+ :sym: :target
2040
+ :type: :string
2041
+ Thumbnails:
2042
+ :sym: :thumbnails
2043
+ :type: :hash
2044
+ :members:
2045
+ Format:
2046
+ :sym: :format
2047
+ :type: :string
2048
+ Interval:
2049
+ :sym: :interval
2050
+ :type: :string
2051
+ Resolution:
2052
+ :sym: :resolution
2053
+ :type: :string
2054
+ AspectRatio:
2055
+ :sym: :aspect_ratio
2056
+ :type: :string
2057
+ MaxWidth:
2058
+ :sym: :max_width
2059
+ :type: :string
2060
+ MaxHeight:
2061
+ :sym: :max_height
2062
+ :type: :string
2063
+ SizingPolicy:
2064
+ :sym: :sizing_policy
2065
+ :type: :string
2066
+ PaddingPolicy:
2067
+ :sym: :padding_policy
2068
+ :type: :string
2069
+ Type:
2070
+ :sym: :type
2071
+ :type: :string
2072
+ NextPageToken:
2073
+ :sym: :next_page_token
2074
+ :type: :string
2075
+ - :name: ReadJob
2076
+ :method: :read_job
2077
+ :http:
2078
+ :verb: GET
2079
+ :uri: /2012-09-25/jobs/:id
2080
+ :inputs:
2081
+ :id:
2082
+ :type: :string
2083
+ :required: true
2084
+ :outputs:
2085
+ Job:
2086
+ :sym: :job
2087
+ :type: :hash
2088
+ :members:
2089
+ Id:
2090
+ :sym: :id
2091
+ :type: :string
2092
+ Arn:
2093
+ :sym: :arn
2094
+ :type: :string
2095
+ PipelineId:
2096
+ :sym: :pipeline_id
2097
+ :type: :string
2098
+ Input:
2099
+ :sym: :input
2100
+ :type: :hash
2101
+ :members:
2102
+ Key:
2103
+ :sym: :key
2104
+ :type: :string
2105
+ FrameRate:
2106
+ :sym: :frame_rate
2107
+ :type: :string
2108
+ Resolution:
2109
+ :sym: :resolution
2110
+ :type: :string
2111
+ AspectRatio:
2112
+ :sym: :aspect_ratio
2113
+ :type: :string
2114
+ Interlaced:
2115
+ :sym: :interlaced
2116
+ :type: :string
2117
+ Container:
2118
+ :sym: :container
2119
+ :type: :string
2120
+ Output:
2121
+ :sym: :output
2122
+ :type: :hash
2123
+ :members:
2124
+ Id:
2125
+ :sym: :id
2126
+ :type: :string
2127
+ Key:
2128
+ :sym: :key
2129
+ :type: :string
2130
+ ThumbnailPattern:
2131
+ :sym: :thumbnail_pattern
2132
+ :type: :string
2133
+ Rotate:
2134
+ :sym: :rotate
2135
+ :type: :string
2136
+ PresetId:
2137
+ :sym: :preset_id
2138
+ :type: :string
2139
+ SegmentDuration:
2140
+ :sym: :segment_duration
2141
+ :type: :string
2142
+ Status:
2143
+ :sym: :status
2144
+ :type: :string
2145
+ StatusDetail:
2146
+ :sym: :status_detail
2147
+ :type: :string
2148
+ Duration:
2149
+ :sym: :duration
2150
+ :type: :integer
2151
+ Width:
2152
+ :sym: :width
2153
+ :type: :integer
2154
+ Height:
2155
+ :sym: :height
2156
+ :type: :integer
2157
+ Watermarks:
2158
+ :sym: :watermarks
2159
+ :type: :hash
2160
+ :members:
2161
+ PresetWatermarkId:
2162
+ :sym: :preset_watermark_id
2163
+ :type: :string
2164
+ InputKey:
2165
+ :sym: :input_key
2166
+ :type: :string
2167
+ AlbumArt:
2168
+ :sym: :album_art
2169
+ :type: :hash
2170
+ :members:
2171
+ MergePolicy:
2172
+ :sym: :merge_policy
2173
+ :type: :string
2174
+ Artwork:
2175
+ :sym: :artwork
2176
+ :type: :hash
2177
+ :members:
2178
+ InputKey:
2179
+ :sym: :input_key
2180
+ :type: :string
2181
+ MaxWidth:
2182
+ :sym: :max_width
2183
+ :type: :string
2184
+ MaxHeight:
2185
+ :sym: :max_height
2186
+ :type: :string
2187
+ SizingPolicy:
2188
+ :sym: :sizing_policy
2189
+ :type: :string
2190
+ PaddingPolicy:
2191
+ :sym: :padding_policy
2192
+ :type: :string
2193
+ AlbumArtFormat:
2194
+ :sym: :album_art_format
2195
+ :type: :string
2196
+ Composition:
2197
+ :sym: :composition
2198
+ :type: :hash
2199
+ :members:
2200
+ TimeSpan:
2201
+ :sym: :time_span
2202
+ :type: :hash
2203
+ :members:
2204
+ StartTime:
2205
+ :sym: :start_time
2206
+ :type: :string
2207
+ Duration:
2208
+ :sym: :duration
2209
+ :type: :string
2210
+ Captions:
2211
+ :sym: :captions
2212
+ :type: :hash
2213
+ :members:
2214
+ MergePolicy:
2215
+ :sym: :merge_policy
2216
+ :type: :string
2217
+ CaptionSources:
2218
+ :sym: :caption_sources
2219
+ :type: :hash
2220
+ :members:
2221
+ Key:
2222
+ :sym: :key
2223
+ :type: :string
2224
+ Language:
2225
+ :sym: :language
2226
+ :type: :string
2227
+ TimeOffset:
2228
+ :sym: :time_offset
2229
+ :type: :string
2230
+ Label:
2231
+ :sym: :label
2232
+ :type: :string
2233
+ CaptionFormats:
2234
+ :sym: :caption_formats
2235
+ :type: :hash
2236
+ :members:
2237
+ Format:
2238
+ :sym: :format
2239
+ :type: :string
2240
+ Pattern:
2241
+ :sym: :pattern
2242
+ :type: :string
2243
+ Outputs:
2244
+ :sym: :outputs
2245
+ :type: :hash
2246
+ :members:
2247
+ Id:
2248
+ :sym: :id
2249
+ :type: :string
2250
+ Key:
2251
+ :sym: :key
2252
+ :type: :string
2253
+ ThumbnailPattern:
2254
+ :sym: :thumbnail_pattern
2255
+ :type: :string
2256
+ Rotate:
2257
+ :sym: :rotate
2258
+ :type: :string
2259
+ PresetId:
2260
+ :sym: :preset_id
2261
+ :type: :string
2262
+ SegmentDuration:
2263
+ :sym: :segment_duration
2264
+ :type: :string
2265
+ Status:
2266
+ :sym: :status
2267
+ :type: :string
2268
+ StatusDetail:
2269
+ :sym: :status_detail
2270
+ :type: :string
2271
+ Duration:
2272
+ :sym: :duration
2273
+ :type: :integer
2274
+ Width:
2275
+ :sym: :width
2276
+ :type: :integer
2277
+ Height:
2278
+ :sym: :height
2279
+ :type: :integer
2280
+ Watermarks:
2281
+ :sym: :watermarks
2282
+ :type: :hash
2283
+ :members:
2284
+ PresetWatermarkId:
2285
+ :sym: :preset_watermark_id
2286
+ :type: :string
2287
+ InputKey:
2288
+ :sym: :input_key
2289
+ :type: :string
2290
+ AlbumArt:
2291
+ :sym: :album_art
2292
+ :type: :hash
2293
+ :members:
2294
+ MergePolicy:
2295
+ :sym: :merge_policy
2296
+ :type: :string
2297
+ Artwork:
2298
+ :sym: :artwork
2299
+ :type: :hash
2300
+ :members:
2301
+ InputKey:
2302
+ :sym: :input_key
2303
+ :type: :string
2304
+ MaxWidth:
2305
+ :sym: :max_width
2306
+ :type: :string
2307
+ MaxHeight:
2308
+ :sym: :max_height
2309
+ :type: :string
2310
+ SizingPolicy:
2311
+ :sym: :sizing_policy
2312
+ :type: :string
2313
+ PaddingPolicy:
2314
+ :sym: :padding_policy
2315
+ :type: :string
2316
+ AlbumArtFormat:
2317
+ :sym: :album_art_format
2318
+ :type: :string
2319
+ Composition:
2320
+ :sym: :composition
2321
+ :type: :hash
2322
+ :members:
2323
+ TimeSpan:
2324
+ :sym: :time_span
2325
+ :type: :hash
2326
+ :members:
2327
+ StartTime:
2328
+ :sym: :start_time
2329
+ :type: :string
2330
+ Duration:
2331
+ :sym: :duration
2332
+ :type: :string
2333
+ Captions:
2334
+ :sym: :captions
2335
+ :type: :hash
2336
+ :members:
2337
+ MergePolicy:
2338
+ :sym: :merge_policy
2339
+ :type: :string
2340
+ CaptionSources:
2341
+ :sym: :caption_sources
2342
+ :type: :hash
2343
+ :members:
2344
+ Key:
2345
+ :sym: :key
2346
+ :type: :string
2347
+ Language:
2348
+ :sym: :language
2349
+ :type: :string
2350
+ TimeOffset:
2351
+ :sym: :time_offset
2352
+ :type: :string
2353
+ Label:
2354
+ :sym: :label
2355
+ :type: :string
2356
+ CaptionFormats:
2357
+ :sym: :caption_formats
2358
+ :type: :hash
2359
+ :members:
2360
+ Format:
2361
+ :sym: :format
2362
+ :type: :string
2363
+ Pattern:
2364
+ :sym: :pattern
2365
+ :type: :string
2366
+ OutputKeyPrefix:
2367
+ :sym: :output_key_prefix
2368
+ :type: :string
2369
+ Playlists:
2370
+ :sym: :playlists
2371
+ :type: :hash
2372
+ :members:
2373
+ Name:
2374
+ :sym: :name
2375
+ :type: :string
2376
+ Format:
2377
+ :sym: :format
2378
+ :type: :string
2379
+ OutputKeys:
2380
+ :sym: :output_keys
2381
+ :type: :string
2382
+ Status:
2383
+ :sym: :status
2384
+ :type: :string
2385
+ StatusDetail:
2386
+ :sym: :status_detail
2387
+ :type: :string
2388
+ Status:
2389
+ :sym: :status
2390
+ :type: :string
2391
+ - :name: ReadPipeline
2392
+ :method: :read_pipeline
2393
+ :http:
2394
+ :verb: GET
2395
+ :uri: /2012-09-25/pipelines/:id
2396
+ :inputs:
2397
+ :id:
2398
+ :type: :string
2399
+ :required: true
2400
+ :outputs:
2401
+ Pipeline:
2402
+ :sym: :pipeline
2403
+ :type: :hash
2404
+ :members:
2405
+ Id:
2406
+ :sym: :id
2407
+ :type: :string
2408
+ Arn:
2409
+ :sym: :arn
2410
+ :type: :string
2411
+ Name:
2412
+ :sym: :name
2413
+ :type: :string
2414
+ Status:
2415
+ :sym: :status
2416
+ :type: :string
2417
+ InputBucket:
2418
+ :sym: :input_bucket
2419
+ :type: :string
2420
+ OutputBucket:
2421
+ :sym: :output_bucket
2422
+ :type: :string
2423
+ Role:
2424
+ :sym: :role
2425
+ :type: :string
2426
+ Notifications:
2427
+ :sym: :notifications
2428
+ :type: :hash
2429
+ :members:
2430
+ Progressing:
2431
+ :sym: :progressing
2432
+ :type: :string
2433
+ Completed:
2434
+ :sym: :completed
2435
+ :type: :string
2436
+ Warning:
2437
+ :sym: :warning
2438
+ :type: :string
2439
+ Error:
2440
+ :sym: :error
2441
+ :type: :string
2442
+ ContentConfig:
2443
+ :sym: :content_config
2444
+ :type: :hash
2445
+ :members:
2446
+ Bucket:
2447
+ :sym: :bucket
2448
+ :type: :string
2449
+ StorageClass:
2450
+ :sym: :storage_class
2451
+ :type: :string
2452
+ Permissions:
2453
+ :sym: :permissions
2454
+ :type: :hash
2455
+ :members:
2456
+ GranteeType:
2457
+ :sym: :grantee_type
2458
+ :type: :string
2459
+ Grantee:
2460
+ :sym: :grantee
2461
+ :type: :string
2462
+ Access:
2463
+ :sym: :access
2464
+ :type: :string
2465
+ ThumbnailConfig:
2466
+ :sym: :thumbnail_config
2467
+ :type: :hash
2468
+ :members:
2469
+ Bucket:
2470
+ :sym: :bucket
2471
+ :type: :string
2472
+ StorageClass:
2473
+ :sym: :storage_class
2474
+ :type: :string
2475
+ Permissions:
2476
+ :sym: :permissions
2477
+ :type: :hash
2478
+ :members:
2479
+ GranteeType:
2480
+ :sym: :grantee_type
2481
+ :type: :string
2482
+ Grantee:
2483
+ :sym: :grantee
2484
+ :type: :string
2485
+ Access:
2486
+ :sym: :access
2487
+ :type: :string
2488
+ - :name: ReadPreset
2489
+ :method: :read_preset
2490
+ :http:
2491
+ :verb: GET
2492
+ :uri: /2012-09-25/presets/:id
2493
+ :inputs:
2494
+ :id:
2495
+ :type: :string
2496
+ :required: true
2497
+ :outputs:
2498
+ Preset:
2499
+ :sym: :preset
2500
+ :type: :hash
2501
+ :members:
2502
+ Id:
2503
+ :sym: :id
2504
+ :type: :string
2505
+ Arn:
2506
+ :sym: :arn
2507
+ :type: :string
2508
+ Name:
2509
+ :sym: :name
2510
+ :type: :string
2511
+ Description:
2512
+ :sym: :description
2513
+ :type: :string
2514
+ Container:
2515
+ :sym: :container
2516
+ :type: :string
2517
+ Audio:
2518
+ :sym: :audio
2519
+ :type: :hash
2520
+ :members:
2521
+ Codec:
2522
+ :sym: :codec
2523
+ :type: :string
2524
+ SampleRate:
2525
+ :sym: :sample_rate
2526
+ :type: :string
2527
+ BitRate:
2528
+ :sym: :bit_rate
2529
+ :type: :string
2530
+ Channels:
2531
+ :sym: :channels
2532
+ :type: :string
2533
+ CodecOptions:
2534
+ :sym: :codec_options
2535
+ :type: :hash
2536
+ :members:
2537
+ Profile:
2538
+ :sym: :profile
2539
+ :type: :string
2540
+ Video:
2541
+ :sym: :video
2542
+ :type: :hash
2543
+ :members:
2544
+ Codec:
2545
+ :sym: :codec
2546
+ :type: :string
2547
+ CodecOptions:
2548
+ :sym: :codec_options
2549
+ :type: :map
2550
+ :members:
2551
+ :sym: :map_value
2552
+ :type: :string
2553
+ KeyframesMaxDist:
2554
+ :sym: :keyframes_max_dist
2555
+ :type: :string
2556
+ FixedGOP:
2557
+ :sym: :fixed_gop
2558
+ :type: :string
2559
+ BitRate:
2560
+ :sym: :bit_rate
2561
+ :type: :string
2562
+ FrameRate:
2563
+ :sym: :frame_rate
2564
+ :type: :string
2565
+ MaxFrameRate:
2566
+ :sym: :max_frame_rate
2567
+ :type: :string
2568
+ Resolution:
2569
+ :sym: :resolution
2570
+ :type: :string
2571
+ AspectRatio:
2572
+ :sym: :aspect_ratio
2573
+ :type: :string
2574
+ MaxWidth:
2575
+ :sym: :max_width
2576
+ :type: :string
2577
+ MaxHeight:
2578
+ :sym: :max_height
2579
+ :type: :string
2580
+ DisplayAspectRatio:
2581
+ :sym: :display_aspect_ratio
2582
+ :type: :string
2583
+ SizingPolicy:
2584
+ :sym: :sizing_policy
2585
+ :type: :string
2586
+ PaddingPolicy:
2587
+ :sym: :padding_policy
2588
+ :type: :string
2589
+ Watermarks:
2590
+ :sym: :watermarks
2591
+ :type: :hash
2592
+ :members:
2593
+ Id:
2594
+ :sym: :id
2595
+ :type: :string
2596
+ MaxWidth:
2597
+ :sym: :max_width
2598
+ :type: :string
2599
+ MaxHeight:
2600
+ :sym: :max_height
2601
+ :type: :string
2602
+ SizingPolicy:
2603
+ :sym: :sizing_policy
2604
+ :type: :string
2605
+ HorizontalAlign:
2606
+ :sym: :horizontal_align
2607
+ :type: :string
2608
+ HorizontalOffset:
2609
+ :sym: :horizontal_offset
2610
+ :type: :string
2611
+ VerticalAlign:
2612
+ :sym: :vertical_align
2613
+ :type: :string
2614
+ VerticalOffset:
2615
+ :sym: :vertical_offset
2616
+ :type: :string
2617
+ Opacity:
2618
+ :sym: :opacity
2619
+ :type: :string
2620
+ Target:
2621
+ :sym: :target
2622
+ :type: :string
2623
+ Thumbnails:
2624
+ :sym: :thumbnails
2625
+ :type: :hash
2626
+ :members:
2627
+ Format:
2628
+ :sym: :format
2629
+ :type: :string
2630
+ Interval:
2631
+ :sym: :interval
2632
+ :type: :string
2633
+ Resolution:
2634
+ :sym: :resolution
2635
+ :type: :string
2636
+ AspectRatio:
2637
+ :sym: :aspect_ratio
2638
+ :type: :string
2639
+ MaxWidth:
2640
+ :sym: :max_width
2641
+ :type: :string
2642
+ MaxHeight:
2643
+ :sym: :max_height
2644
+ :type: :string
2645
+ SizingPolicy:
2646
+ :sym: :sizing_policy
2647
+ :type: :string
2648
+ PaddingPolicy:
2649
+ :sym: :padding_policy
2650
+ :type: :string
2651
+ Type:
2652
+ :sym: :type
2653
+ :type: :string
2654
+ - :name: TestRole
2655
+ :method: :test_role
2656
+ :http:
2657
+ :verb: POST
2658
+ :uri: /2012-09-25/roleTests
2659
+ :response_code: 200
2660
+ :inputs:
2661
+ :role:
2662
+ :name: Role
2663
+ :type: :string
2664
+ :required: true
2665
+ :input_bucket:
2666
+ :name: InputBucket
2667
+ :type: :string
2668
+ :required: true
2669
+ :output_bucket:
2670
+ :name: OutputBucket
2671
+ :type: :string
2672
+ :required: true
2673
+ :topics:
2674
+ :name: Topics
2675
+ :type: :array
2676
+ :required: true
2677
+ :members:
2678
+ :name: member
2679
+ :type: :string
2680
+ :outputs:
2681
+ Success:
2682
+ :sym: :success
2683
+ :type: :string
2684
+ Messages:
2685
+ :sym: :messages
2686
+ :type: :string
2687
+ - :name: UpdatePipeline
2688
+ :method: :update_pipeline
2689
+ :http:
2690
+ :verb: PUT
2691
+ :uri: /2012-09-25/pipelines/:id
2692
+ :response_code: 200
2693
+ :inputs:
2694
+ :id:
2695
+ :type: :string
2696
+ :required: true
2697
+ :name:
2698
+ :name: Name
2699
+ :type: :string
2700
+ :input_bucket:
2701
+ :name: InputBucket
2702
+ :type: :string
2703
+ :role:
2704
+ :name: Role
2705
+ :type: :string
2706
+ :notifications:
2707
+ :name: Notifications
2708
+ :type: :hash
2709
+ :members:
2710
+ :progressing:
2711
+ :name: Progressing
2712
+ :type: :string
2713
+ :completed:
2714
+ :name: Completed
2715
+ :type: :string
2716
+ :warning:
2717
+ :name: Warning
2718
+ :type: :string
2719
+ :error:
2720
+ :name: Error
2721
+ :type: :string
2722
+ :content_config:
2723
+ :name: ContentConfig
2724
+ :type: :hash
2725
+ :members:
2726
+ :bucket:
2727
+ :name: Bucket
2728
+ :type: :string
2729
+ :storage_class:
2730
+ :name: StorageClass
2731
+ :type: :string
2732
+ :permissions:
2733
+ :name: Permissions
2734
+ :type: :array
2735
+ :members:
2736
+ :name: member
2737
+ :type: :hash
2738
+ :members:
2739
+ :grantee_type:
2740
+ :name: GranteeType
2741
+ :type: :string
2742
+ :grantee:
2743
+ :name: Grantee
2744
+ :type: :string
2745
+ :access:
2746
+ :name: Access
2747
+ :type: :array
2748
+ :members:
2749
+ :name: member
2750
+ :type: :string
2751
+ :thumbnail_config:
2752
+ :name: ThumbnailConfig
2753
+ :type: :hash
2754
+ :members:
2755
+ :bucket:
2756
+ :name: Bucket
2757
+ :type: :string
2758
+ :storage_class:
2759
+ :name: StorageClass
2760
+ :type: :string
2761
+ :permissions:
2762
+ :name: Permissions
2763
+ :type: :array
2764
+ :members:
2765
+ :name: member
2766
+ :type: :hash
2767
+ :members:
2768
+ :grantee_type:
2769
+ :name: GranteeType
2770
+ :type: :string
2771
+ :grantee:
2772
+ :name: Grantee
2773
+ :type: :string
2774
+ :access:
2775
+ :name: Access
2776
+ :type: :array
2777
+ :members:
2778
+ :name: member
2779
+ :type: :string
2780
+ :outputs:
2781
+ Pipeline:
2782
+ :sym: :pipeline
2783
+ :type: :hash
2784
+ :members:
2785
+ Id:
2786
+ :sym: :id
2787
+ :type: :string
2788
+ Arn:
2789
+ :sym: :arn
2790
+ :type: :string
2791
+ Name:
2792
+ :sym: :name
2793
+ :type: :string
2794
+ Status:
2795
+ :sym: :status
2796
+ :type: :string
2797
+ InputBucket:
2798
+ :sym: :input_bucket
2799
+ :type: :string
2800
+ OutputBucket:
2801
+ :sym: :output_bucket
2802
+ :type: :string
2803
+ Role:
2804
+ :sym: :role
2805
+ :type: :string
2806
+ Notifications:
2807
+ :sym: :notifications
2808
+ :type: :hash
2809
+ :members:
2810
+ Progressing:
2811
+ :sym: :progressing
2812
+ :type: :string
2813
+ Completed:
2814
+ :sym: :completed
2815
+ :type: :string
2816
+ Warning:
2817
+ :sym: :warning
2818
+ :type: :string
2819
+ Error:
2820
+ :sym: :error
2821
+ :type: :string
2822
+ ContentConfig:
2823
+ :sym: :content_config
2824
+ :type: :hash
2825
+ :members:
2826
+ Bucket:
2827
+ :sym: :bucket
2828
+ :type: :string
2829
+ StorageClass:
2830
+ :sym: :storage_class
2831
+ :type: :string
2832
+ Permissions:
2833
+ :sym: :permissions
2834
+ :type: :hash
2835
+ :members:
2836
+ GranteeType:
2837
+ :sym: :grantee_type
2838
+ :type: :string
2839
+ Grantee:
2840
+ :sym: :grantee
2841
+ :type: :string
2842
+ Access:
2843
+ :sym: :access
2844
+ :type: :string
2845
+ ThumbnailConfig:
2846
+ :sym: :thumbnail_config
2847
+ :type: :hash
2848
+ :members:
2849
+ Bucket:
2850
+ :sym: :bucket
2851
+ :type: :string
2852
+ StorageClass:
2853
+ :sym: :storage_class
2854
+ :type: :string
2855
+ Permissions:
2856
+ :sym: :permissions
2857
+ :type: :hash
2858
+ :members:
2859
+ GranteeType:
2860
+ :sym: :grantee_type
2861
+ :type: :string
2862
+ Grantee:
2863
+ :sym: :grantee
2864
+ :type: :string
2865
+ Access:
2866
+ :sym: :access
2867
+ :type: :string
2868
+ - :name: UpdatePipelineNotifications
2869
+ :method: :update_pipeline_notifications
2870
+ :http:
2871
+ :verb: POST
2872
+ :uri: /2012-09-25/pipelines/:id/notifications
2873
+ :inputs:
2874
+ :id:
2875
+ :type: :string
2876
+ :required: true
2877
+ :notifications:
2878
+ :name: Notifications
2879
+ :type: :hash
2880
+ :required: true
2881
+ :members:
2882
+ :progressing:
2883
+ :name: Progressing
2884
+ :type: :string
2885
+ :completed:
2886
+ :name: Completed
2887
+ :type: :string
2888
+ :warning:
2889
+ :name: Warning
2890
+ :type: :string
2891
+ :error:
2892
+ :name: Error
2893
+ :type: :string
2894
+ :outputs:
2895
+ Pipeline:
2896
+ :sym: :pipeline
2897
+ :type: :hash
2898
+ :members:
2899
+ Id:
2900
+ :sym: :id
2901
+ :type: :string
2902
+ Arn:
2903
+ :sym: :arn
2904
+ :type: :string
2905
+ Name:
2906
+ :sym: :name
2907
+ :type: :string
2908
+ Status:
2909
+ :sym: :status
2910
+ :type: :string
2911
+ InputBucket:
2912
+ :sym: :input_bucket
2913
+ :type: :string
2914
+ OutputBucket:
2915
+ :sym: :output_bucket
2916
+ :type: :string
2917
+ Role:
2918
+ :sym: :role
2919
+ :type: :string
2920
+ Notifications:
2921
+ :sym: :notifications
2922
+ :type: :hash
2923
+ :members:
2924
+ Progressing:
2925
+ :sym: :progressing
2926
+ :type: :string
2927
+ Completed:
2928
+ :sym: :completed
2929
+ :type: :string
2930
+ Warning:
2931
+ :sym: :warning
2932
+ :type: :string
2933
+ Error:
2934
+ :sym: :error
2935
+ :type: :string
2936
+ ContentConfig:
2937
+ :sym: :content_config
2938
+ :type: :hash
2939
+ :members:
2940
+ Bucket:
2941
+ :sym: :bucket
2942
+ :type: :string
2943
+ StorageClass:
2944
+ :sym: :storage_class
2945
+ :type: :string
2946
+ Permissions:
2947
+ :sym: :permissions
2948
+ :type: :hash
2949
+ :members:
2950
+ GranteeType:
2951
+ :sym: :grantee_type
2952
+ :type: :string
2953
+ Grantee:
2954
+ :sym: :grantee
2955
+ :type: :string
2956
+ Access:
2957
+ :sym: :access
2958
+ :type: :string
2959
+ ThumbnailConfig:
2960
+ :sym: :thumbnail_config
2961
+ :type: :hash
2962
+ :members:
2963
+ Bucket:
2964
+ :sym: :bucket
2965
+ :type: :string
2966
+ StorageClass:
2967
+ :sym: :storage_class
2968
+ :type: :string
2969
+ Permissions:
2970
+ :sym: :permissions
2971
+ :type: :hash
2972
+ :members:
2973
+ GranteeType:
2974
+ :sym: :grantee_type
2975
+ :type: :string
2976
+ Grantee:
2977
+ :sym: :grantee
2978
+ :type: :string
2979
+ Access:
2980
+ :sym: :access
2981
+ :type: :string
2982
+ - :name: UpdatePipelineStatus
2983
+ :method: :update_pipeline_status
2984
+ :http:
2985
+ :verb: POST
2986
+ :uri: /2012-09-25/pipelines/:id/status
2987
+ :inputs:
2988
+ :id:
2989
+ :type: :string
2990
+ :required: true
2991
+ :status:
2992
+ :name: Status
2993
+ :type: :string
2994
+ :required: true
2995
+ :outputs:
2996
+ Pipeline:
2997
+ :sym: :pipeline
2998
+ :type: :hash
2999
+ :members:
3000
+ Id:
3001
+ :sym: :id
3002
+ :type: :string
3003
+ Arn:
3004
+ :sym: :arn
3005
+ :type: :string
3006
+ Name:
3007
+ :sym: :name
3008
+ :type: :string
3009
+ Status:
3010
+ :sym: :status
3011
+ :type: :string
3012
+ InputBucket:
3013
+ :sym: :input_bucket
3014
+ :type: :string
3015
+ OutputBucket:
3016
+ :sym: :output_bucket
3017
+ :type: :string
3018
+ Role:
3019
+ :sym: :role
3020
+ :type: :string
3021
+ Notifications:
3022
+ :sym: :notifications
3023
+ :type: :hash
3024
+ :members:
3025
+ Progressing:
3026
+ :sym: :progressing
3027
+ :type: :string
3028
+ Completed:
3029
+ :sym: :completed
3030
+ :type: :string
3031
+ Warning:
3032
+ :sym: :warning
3033
+ :type: :string
3034
+ Error:
3035
+ :sym: :error
3036
+ :type: :string
3037
+ ContentConfig:
3038
+ :sym: :content_config
3039
+ :type: :hash
3040
+ :members:
3041
+ Bucket:
3042
+ :sym: :bucket
3043
+ :type: :string
3044
+ StorageClass:
3045
+ :sym: :storage_class
3046
+ :type: :string
3047
+ Permissions:
3048
+ :sym: :permissions
3049
+ :type: :hash
3050
+ :members:
3051
+ GranteeType:
3052
+ :sym: :grantee_type
3053
+ :type: :string
3054
+ Grantee:
3055
+ :sym: :grantee
3056
+ :type: :string
3057
+ Access:
3058
+ :sym: :access
3059
+ :type: :string
3060
+ ThumbnailConfig:
3061
+ :sym: :thumbnail_config
3062
+ :type: :hash
3063
+ :members:
3064
+ Bucket:
3065
+ :sym: :bucket
3066
+ :type: :string
3067
+ StorageClass:
3068
+ :sym: :storage_class
3069
+ :type: :string
3070
+ Permissions:
3071
+ :sym: :permissions
3072
+ :type: :hash
3073
+ :members:
3074
+ GranteeType:
3075
+ :sym: :grantee_type
3076
+ :type: :string
3077
+ Grantee:
3078
+ :sym: :grantee
3079
+ :type: :string
3080
+ Access:
3081
+ :sym: :access
3082
+ :type: :string