aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,607 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "ActivatePipeline": "<p>Validates the specified pipeline and starts processing pipeline tasks. If the pipeline does not pass validation, activation fails.</p> <p>If you need to pause the pipeline to investigate an issue with a component, such as a data source or script, call <a>DeactivatePipeline</a>.</p> <p>To activate a finished pipeline, modify the end date for the pipeline and then activate it.</p>",
5
- "AddTags": "<p>Adds or modifies tags for the specified pipeline.</p>",
6
- "CreatePipeline": "<p>Creates a new, empty pipeline. Use <a>PutPipelineDefinition</a> to populate the pipeline.</p>",
7
- "DeactivatePipeline": "<p>Deactivates the specified running pipeline. The pipeline is set to the <code>DEACTIVATING</code> state until the deactivation process completes.</p> <p>To resume a deactivated pipeline, use <a>ActivatePipeline</a>. By default, the pipeline resumes from the last completed execution. Optionally, you can specify the date and time to resume the pipeline.</p>",
8
- "DeletePipeline": "<p>Deletes a pipeline, its pipeline definition, and its run history. AWS Data Pipeline attempts to cancel instances associated with the pipeline that are currently being processed by task runners.</p> <p>Deleting a pipeline cannot be undone. You cannot query or restore a deleted pipeline. To temporarily pause a pipeline instead of deleting it, call <a>SetStatus</a> with the status set to <code>PAUSE</code> on individual components. Components that are paused by <a>SetStatus</a> can be resumed.</p>",
9
- "DescribeObjects": "<p>Gets the object definitions for a set of objects associated with the pipeline. Object definitions are composed of a set of fields that define the properties of the object.</p>",
10
- "DescribePipelines": "<p>Retrieves metadata about one or more pipelines. The information retrieved includes the name of the pipeline, the pipeline identifier, its current state, and the user account that owns the pipeline. Using account credentials, you can retrieve metadata about pipelines that you or your IAM users have created. If you are using an IAM user account, you can retrieve metadata about only those pipelines for which you have read permissions.</p> <p>To retrieve the full pipeline definition instead of metadata about the pipeline, call <a>GetPipelineDefinition</a>.</p>",
11
- "EvaluateExpression": "<p>Task runners call <code>EvaluateExpression</code> to evaluate a string in the context of the specified object. For example, a task runner can evaluate SQL queries stored in Amazon S3.</p>",
12
- "GetPipelineDefinition": "<p>Gets the definition of the specified pipeline. You can call <code>GetPipelineDefinition</code> to retrieve the pipeline definition that you provided using <a>PutPipelineDefinition</a>.</p>",
13
- "ListPipelines": "<p>Lists the pipeline identifiers for all active pipelines that you have permission to access.</p>",
14
- "PollForTask": "<p>Task runners call <code>PollForTask</code> to receive a task to perform from AWS Data Pipeline. The task runner specifies which tasks it can perform by setting a value for the <code>workerGroup</code> parameter. The task returned can come from any of the pipelines that match the <code>workerGroup</code> value passed in by the task runner and that was launched using the IAM user credentials specified by the task runner.</p> <p>If tasks are ready in the work queue, <code>PollForTask</code> returns a response immediately. If no tasks are available in the queue, <code>PollForTask</code> uses long-polling and holds on to a poll connection for up to a 90 seconds, during which time the first newly scheduled task is handed to the task runner. To accomodate this, set the socket timeout in your task runner to 90 seconds. The task runner should not call <code>PollForTask</code> again on the same <code>workerGroup</code> until it receives a response, and this can take up to 90 seconds. </p>",
15
- "PutPipelineDefinition": "<p>Adds tasks, schedules, and preconditions to the specified pipeline. You can use <code>PutPipelineDefinition</code> to populate a new pipeline.</p> <p> <code>PutPipelineDefinition</code> also validates the configuration as it adds it to the pipeline. Changes to the pipeline are saved unless one of the following three validation errors exists in the pipeline. </p> <ol> <li>An object is missing a name or identifier field.</li> <li>A string or reference field is empty.</li> <li>The number of objects in the pipeline exceeds the maximum allowed objects.</li> <li>The pipeline is in a FINISHED state.</li> </ol> <p> Pipeline object definitions are passed to the <code>PutPipelineDefinition</code> action and returned by the <a>GetPipelineDefinition</a> action. </p>",
16
- "QueryObjects": "<p>Queries the specified pipeline for the names of objects that match the specified set of conditions.</p>",
17
- "RemoveTags": "<p>Removes existing tags from the specified pipeline.</p>",
18
- "ReportTaskProgress": "<p>Task runners call <code>ReportTaskProgress</code> when assigned a task to acknowledge that it has the task. If the web service does not receive this acknowledgement within 2 minutes, it assigns the task in a subsequent <a>PollForTask</a> call. After this initial acknowledgement, the task runner only needs to report progress every 15 minutes to maintain its ownership of the task. You can change this reporting time from 15 minutes by specifying a <code>reportProgressTimeout</code> field in your pipeline.</p> <p>If a task runner does not report its status after 5 minutes, AWS Data Pipeline assumes that the task runner is unable to process the task and reassigns the task in a subsequent response to <a>PollForTask</a>. Task runners should call <code>ReportTaskProgress</code> every 60 seconds.</p>",
19
- "ReportTaskRunnerHeartbeat": "<p>Task runners call <code>ReportTaskRunnerHeartbeat</code> every 15 minutes to indicate that they are operational. If the AWS Data Pipeline Task Runner is launched on a resource managed by AWS Data Pipeline, the web service can use this call to detect when the task runner application has failed and restart a new instance.</p>",
20
- "SetStatus": "<p>Requests that the status of the specified physical or logical pipeline objects be updated in the specified pipeline. This update might not occur immediately, but is eventually consistent. The status that can be set depends on the type of object (for example, DataNode or Activity). You cannot perform this operation on <code>FINISHED</code> pipelines and attempting to do so returns <code>InvalidRequestException</code>.</p>",
21
- "SetTaskStatus": "<p>Task runners call <code>SetTaskStatus</code> to notify AWS Data Pipeline that a task is completed and provide information about the final status. A task runner makes this call regardless of whether the task was sucessful. A task runner does not need to call <code>SetTaskStatus</code> for tasks that are canceled by the web service during a call to <a>ReportTaskProgress</a>.</p>",
22
- "ValidatePipelineDefinition": "<p>Validates the specified pipeline definition to ensure that it is well formed and can be run without error.</p>"
23
- },
24
- "service": "<p>AWS Data Pipeline configures and manages a data-driven workflow called a pipeline. AWS Data Pipeline handles the details of scheduling and ensuring that data dependencies are met so that your application can focus on processing the data.</p> <p>AWS Data Pipeline provides a JAR implementation of a task runner called AWS Data Pipeline Task Runner. AWS Data Pipeline Task Runner provides logic for common data management scenarios, such as performing database queries and running data analysis using Amazon Elastic MapReduce (Amazon EMR). You can use AWS Data Pipeline Task Runner as your task runner, or you can write your own task runner to provide custom data management.</p> <p>AWS Data Pipeline implements two main sets of functionality. Use the first set to create a pipeline and define data sources, schedules, dependencies, and the transforms to be performed on the data. Use the second set in your task runner application to receive the next task ready for processing. The logic for performing the task, such as querying the data, running data analysis, or converting the data from one format to another, is contained within the task runner. The task runner performs the task assigned to it by the web service, reporting progress to the web service as it does so. When the task is done, the task runner reports the final success or failure of the task to the web service.</p>",
25
- "shapes": {
26
- "ActivatePipelineInput": {
27
- "base": "<p>Contains the parameters for ActivatePipeline.</p>",
28
- "refs": {
29
- }
30
- },
31
- "ActivatePipelineOutput": {
32
- "base": "<p>Contains the output of ActivatePipeline.</p>",
33
- "refs": {
34
- }
35
- },
36
- "AddTagsInput": {
37
- "base": "<p>Contains the parameters for AddTags.</p>",
38
- "refs": {
39
- }
40
- },
41
- "AddTagsOutput": {
42
- "base": "<p>Contains the output of AddTags.</p>",
43
- "refs": {
44
- }
45
- },
46
- "CreatePipelineInput": {
47
- "base": "<p>Contains the parameters for CreatePipeline.</p>",
48
- "refs": {
49
- }
50
- },
51
- "CreatePipelineOutput": {
52
- "base": "<p>Contains the output of CreatePipeline.</p>",
53
- "refs": {
54
- }
55
- },
56
- "DeactivatePipelineInput": {
57
- "base": "<p>Contains the parameters for DeactivatePipeline.</p>",
58
- "refs": {
59
- }
60
- },
61
- "DeactivatePipelineOutput": {
62
- "base": "<p>Contains the output of DeactivatePipeline.</p>",
63
- "refs": {
64
- }
65
- },
66
- "DeletePipelineInput": {
67
- "base": "<p>Contains the parameters for DeletePipeline.</p>",
68
- "refs": {
69
- }
70
- },
71
- "DescribeObjectsInput": {
72
- "base": "<p>Contains the parameters for DescribeObjects.</p>",
73
- "refs": {
74
- }
75
- },
76
- "DescribeObjectsOutput": {
77
- "base": "<p>Contains the output of DescribeObjects.</p>",
78
- "refs": {
79
- }
80
- },
81
- "DescribePipelinesInput": {
82
- "base": "<p>Contains the parameters for DescribePipelines.</p>",
83
- "refs": {
84
- }
85
- },
86
- "DescribePipelinesOutput": {
87
- "base": "<p>Contains the output of DescribePipelines.</p>",
88
- "refs": {
89
- }
90
- },
91
- "EvaluateExpressionInput": {
92
- "base": "<p>Contains the parameters for EvaluateExpression.</p>",
93
- "refs": {
94
- }
95
- },
96
- "EvaluateExpressionOutput": {
97
- "base": "<p>Contains the output of EvaluateExpression.</p>",
98
- "refs": {
99
- }
100
- },
101
- "Field": {
102
- "base": "<p>A key-value pair that describes a property of a pipeline object. The value is specified as either a string value (<code>StringValue</code>) or a reference to another object (<code>RefValue</code>) but not as both.</p>",
103
- "refs": {
104
- "fieldList$member": null
105
- }
106
- },
107
- "GetPipelineDefinitionInput": {
108
- "base": "<p>Contains the parameters for GetPipelineDefinition.</p>",
109
- "refs": {
110
- }
111
- },
112
- "GetPipelineDefinitionOutput": {
113
- "base": "<p>Contains the output of GetPipelineDefinition.</p>",
114
- "refs": {
115
- }
116
- },
117
- "InstanceIdentity": {
118
- "base": "<p><p>Identity information for the EC2 instance that is hosting the task runner. You can get this value by calling a metadata URI from the EC2 instance. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html\">Instance Metadata</a> in the <i>Amazon Elastic Compute Cloud User Guide.</i> Passing in this value proves that your task runner is running on an EC2 instance, and ensures the proper AWS Data Pipeline service charges are applied to your pipeline.</p></p>",
119
- "refs": {
120
- "PollForTaskInput$instanceIdentity": "<p>Identity information for the EC2 instance that is hosting the task runner. You can get this value from the instance using <code>http://169.254.169.254/latest/meta-data/instance-id</code>. For more information, see <a href=\"http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html\">Instance Metadata</a> in the <i>Amazon Elastic Compute Cloud User Guide.</i> Passing in this value proves that your task runner is running on an EC2 instance, and ensures the proper AWS Data Pipeline service charges are applied to your pipeline.</p>"
121
- }
122
- },
123
- "InternalServiceError": {
124
- "base": "<p>An internal service error occurred.</p>",
125
- "refs": {
126
- }
127
- },
128
- "InvalidRequestException": {
129
- "base": "<p>The request was not valid. Verify that your request was properly formatted, that the signature was generated with the correct credentials, and that you haven't exceeded any of the service limits for your account.</p>",
130
- "refs": {
131
- }
132
- },
133
- "ListPipelinesInput": {
134
- "base": "<p>Contains the parameters for ListPipelines.</p>",
135
- "refs": {
136
- }
137
- },
138
- "ListPipelinesOutput": {
139
- "base": "<p>Contains the output of ListPipelines.</p>",
140
- "refs": {
141
- }
142
- },
143
- "Operator": {
144
- "base": "<p>Contains a logical operation for comparing the value of a field with a specified value.</p>",
145
- "refs": {
146
- "Selector$operator": null
147
- }
148
- },
149
- "OperatorType": {
150
- "base": null,
151
- "refs": {
152
- "Operator$type": "<p> The logical operation to be performed: equal (<code>EQ</code>), equal reference (<code>REF_EQ</code>), less than or equal (<code>LE</code>), greater than or equal (<code>GE</code>), or between (<code>BETWEEN</code>). Equal reference (<code>REF_EQ</code>) can be used only with reference fields. The other comparison types can be used only with String fields. The comparison types you can use apply only to certain object fields, as detailed below. </p> <p> The comparison operators EQ and REF_EQ act on the following fields: </p> <ul> <li>name</li> <li>@sphere</li> <li>parent</li> <li>@componentParent</li> <li>@instanceParent</li> <li>@status</li> <li>@scheduledStartTime</li> <li>@scheduledEndTime</li> <li>@actualStartTime</li> <li>@actualEndTime</li> </ul> <p> The comparison operators <code>GE</code>, <code>LE</code>, and <code>BETWEEN</code> act on the following fields: </p> <ul> <li>@scheduledStartTime</li> <li>@scheduledEndTime</li> <li>@actualStartTime</li> <li>@actualEndTime</li> </ul> <p>Note that fields beginning with the at sign (@) are read-only and set by the web service. When you name fields, you should choose names containing only alpha-numeric values, as symbols may be reserved by AWS Data Pipeline. User-defined fields that you add to a pipeline should prefix their name with the string \"my\".</p>"
153
- }
154
- },
155
- "ParameterAttribute": {
156
- "base": "<p>The attributes allowed or specified with a parameter object.</p>",
157
- "refs": {
158
- "ParameterAttributeList$member": null
159
- }
160
- },
161
- "ParameterAttributeList": {
162
- "base": null,
163
- "refs": {
164
- "ParameterObject$attributes": "<p>The attributes of the parameter object.</p>"
165
- }
166
- },
167
- "ParameterObject": {
168
- "base": "<p>Contains information about a parameter object.</p>",
169
- "refs": {
170
- "ParameterObjectList$member": null
171
- }
172
- },
173
- "ParameterObjectList": {
174
- "base": null,
175
- "refs": {
176
- "GetPipelineDefinitionOutput$parameterObjects": "<p>The parameter objects used in the pipeline definition.</p>",
177
- "PutPipelineDefinitionInput$parameterObjects": "<p>The parameter objects used with the pipeline.</p>",
178
- "ValidatePipelineDefinitionInput$parameterObjects": "<p>The parameter objects used with the pipeline.</p>"
179
- }
180
- },
181
- "ParameterValue": {
182
- "base": "<p>A value or list of parameter values. </p>",
183
- "refs": {
184
- "ParameterValueList$member": null
185
- }
186
- },
187
- "ParameterValueList": {
188
- "base": null,
189
- "refs": {
190
- "ActivatePipelineInput$parameterValues": "<p>A list of parameter values to pass to the pipeline at activation.</p>",
191
- "GetPipelineDefinitionOutput$parameterValues": "<p>The parameter values used in the pipeline definition.</p>",
192
- "PutPipelineDefinitionInput$parameterValues": "<p>The parameter values used with the pipeline.</p>",
193
- "ValidatePipelineDefinitionInput$parameterValues": "<p>The parameter values used with the pipeline.</p>"
194
- }
195
- },
196
- "PipelineDeletedException": {
197
- "base": "<p>The specified pipeline has been deleted.</p>",
198
- "refs": {
199
- }
200
- },
201
- "PipelineDescription": {
202
- "base": "<p>Contains pipeline metadata.</p>",
203
- "refs": {
204
- "PipelineDescriptionList$member": null
205
- }
206
- },
207
- "PipelineDescriptionList": {
208
- "base": null,
209
- "refs": {
210
- "DescribePipelinesOutput$pipelineDescriptionList": "<p>An array of descriptions for the specified pipelines.</p>"
211
- }
212
- },
213
- "PipelineIdName": {
214
- "base": "<p>Contains the name and identifier of a pipeline.</p>",
215
- "refs": {
216
- "pipelineList$member": null
217
- }
218
- },
219
- "PipelineNotFoundException": {
220
- "base": "<p>The specified pipeline was not found. Verify that you used the correct user and account identifiers.</p>",
221
- "refs": {
222
- }
223
- },
224
- "PipelineObject": {
225
- "base": "<p>Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.</p>",
226
- "refs": {
227
- "PipelineObjectList$member": null,
228
- "PipelineObjectMap$value": null
229
- }
230
- },
231
- "PipelineObjectList": {
232
- "base": null,
233
- "refs": {
234
- "DescribeObjectsOutput$pipelineObjects": "<p>An array of object definitions.</p>",
235
- "GetPipelineDefinitionOutput$pipelineObjects": "<p>The objects defined in the pipeline.</p>",
236
- "PutPipelineDefinitionInput$pipelineObjects": "<p>The objects that define the pipeline. These objects overwrite the existing pipeline definition.</p>",
237
- "ValidatePipelineDefinitionInput$pipelineObjects": "<p>The objects that define the pipeline changes to validate against the pipeline.</p>"
238
- }
239
- },
240
- "PipelineObjectMap": {
241
- "base": null,
242
- "refs": {
243
- "TaskObject$objects": "<p>Connection information for the location where the task runner will publish the output of the task.</p>"
244
- }
245
- },
246
- "PollForTaskInput": {
247
- "base": "<p>Contains the parameters for PollForTask.</p>",
248
- "refs": {
249
- }
250
- },
251
- "PollForTaskOutput": {
252
- "base": "<p>Contains the output of PollForTask.</p>",
253
- "refs": {
254
- }
255
- },
256
- "PutPipelineDefinitionInput": {
257
- "base": "<p>Contains the parameters for PutPipelineDefinition.</p>",
258
- "refs": {
259
- }
260
- },
261
- "PutPipelineDefinitionOutput": {
262
- "base": "<p>Contains the output of PutPipelineDefinition.</p>",
263
- "refs": {
264
- }
265
- },
266
- "Query": {
267
- "base": "<p>Defines the query to run against an object.</p>",
268
- "refs": {
269
- "QueryObjectsInput$query": "<p>The query that defines the objects to be returned. The <code>Query</code> object can contain a maximum of ten selectors. The conditions in the query are limited to top-level String fields in the object. These filters can be applied to components, instances, and attempts.</p>"
270
- }
271
- },
272
- "QueryObjectsInput": {
273
- "base": "<p>Contains the parameters for QueryObjects.</p>",
274
- "refs": {
275
- }
276
- },
277
- "QueryObjectsOutput": {
278
- "base": "<p>Contains the output of QueryObjects.</p>",
279
- "refs": {
280
- }
281
- },
282
- "RemoveTagsInput": {
283
- "base": "<p>Contains the parameters for RemoveTags.</p>",
284
- "refs": {
285
- }
286
- },
287
- "RemoveTagsOutput": {
288
- "base": "<p>Contains the output of RemoveTags.</p>",
289
- "refs": {
290
- }
291
- },
292
- "ReportTaskProgressInput": {
293
- "base": "<p>Contains the parameters for ReportTaskProgress.</p>",
294
- "refs": {
295
- }
296
- },
297
- "ReportTaskProgressOutput": {
298
- "base": "<p>Contains the output of ReportTaskProgress.</p>",
299
- "refs": {
300
- }
301
- },
302
- "ReportTaskRunnerHeartbeatInput": {
303
- "base": "<p>Contains the parameters for ReportTaskRunnerHeartbeat.</p>",
304
- "refs": {
305
- }
306
- },
307
- "ReportTaskRunnerHeartbeatOutput": {
308
- "base": "<p>Contains the output of ReportTaskRunnerHeartbeat.</p>",
309
- "refs": {
310
- }
311
- },
312
- "Selector": {
313
- "base": "<p>A comparision that is used to determine whether a query should return this object.</p>",
314
- "refs": {
315
- "SelectorList$member": null
316
- }
317
- },
318
- "SelectorList": {
319
- "base": "<p>The list of Selectors that define queries on individual fields.</p>",
320
- "refs": {
321
- "Query$selectors": "<p>List of selectors that define the query. An object must satisfy all of the selectors to match the query.</p>"
322
- }
323
- },
324
- "SetStatusInput": {
325
- "base": "<p>Contains the parameters for SetStatus.</p>",
326
- "refs": {
327
- }
328
- },
329
- "SetTaskStatusInput": {
330
- "base": "<p>Contains the parameters for SetTaskStatus.</p>",
331
- "refs": {
332
- }
333
- },
334
- "SetTaskStatusOutput": {
335
- "base": "<p>Contains the output of SetTaskStatus.</p>",
336
- "refs": {
337
- }
338
- },
339
- "Tag": {
340
- "base": "<p>Tags are key/value pairs defined by a user and associated with a pipeline to control access. AWS Data Pipeline allows you to associate ten tags per pipeline. For more information, see <a href=\"http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html\">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>",
341
- "refs": {
342
- "tagList$member": null
343
- }
344
- },
345
- "TaskNotFoundException": {
346
- "base": "<p>The specified task was not found. </p>",
347
- "refs": {
348
- }
349
- },
350
- "TaskObject": {
351
- "base": "<p>Contains information about a pipeline task that is assigned to a task runner.</p>",
352
- "refs": {
353
- "PollForTaskOutput$taskObject": "<p>The information needed to complete the task that is being assigned to the task runner. One of the fields returned in this object is <code>taskId</code>, which contains an identifier for the task being assigned. The calling task runner uses <code>taskId</code> in subsequent calls to <a>ReportTaskProgress</a> and <a>SetTaskStatus</a>.</p>"
354
- }
355
- },
356
- "TaskStatus": {
357
- "base": null,
358
- "refs": {
359
- "SetTaskStatusInput$taskStatus": "<p>If <code>FINISHED</code>, the task successfully completed. If <code>FAILED</code>, the task ended unsuccessfully. Preconditions use false.</p>"
360
- }
361
- },
362
- "ValidatePipelineDefinitionInput": {
363
- "base": "<p>Contains the parameters for ValidatePipelineDefinition.</p>",
364
- "refs": {
365
- }
366
- },
367
- "ValidatePipelineDefinitionOutput": {
368
- "base": "<p>Contains the output of ValidatePipelineDefinition.</p>",
369
- "refs": {
370
- }
371
- },
372
- "ValidationError": {
373
- "base": "<p>Defines a validation error. Validation errors prevent pipeline activation. The set of validation errors that can be returned are defined by AWS Data Pipeline.</p>",
374
- "refs": {
375
- "ValidationErrors$member": null
376
- }
377
- },
378
- "ValidationErrors": {
379
- "base": null,
380
- "refs": {
381
- "PutPipelineDefinitionOutput$validationErrors": "<p>The validation errors that are associated with the objects defined in <code>pipelineObjects</code>.</p>",
382
- "ValidatePipelineDefinitionOutput$validationErrors": "<p>Any validation errors that were found.</p>"
383
- }
384
- },
385
- "ValidationWarning": {
386
- "base": "<p>Defines a validation warning. Validation warnings do not prevent pipeline activation. The set of validation warnings that can be returned are defined by AWS Data Pipeline.</p>",
387
- "refs": {
388
- "ValidationWarnings$member": null
389
- }
390
- },
391
- "ValidationWarnings": {
392
- "base": null,
393
- "refs": {
394
- "PutPipelineDefinitionOutput$validationWarnings": "<p>The validation warnings that are associated with the objects defined in <code>pipelineObjects</code>.</p>",
395
- "ValidatePipelineDefinitionOutput$validationWarnings": "<p>Any validation warnings that were found.</p>"
396
- }
397
- },
398
- "attributeNameString": {
399
- "base": null,
400
- "refs": {
401
- "ParameterAttribute$key": "<p>The field identifier.</p>"
402
- }
403
- },
404
- "attributeValueString": {
405
- "base": null,
406
- "refs": {
407
- "ParameterAttribute$stringValue": "<p>The field value, expressed as a String.</p>"
408
- }
409
- },
410
- "boolean": {
411
- "base": null,
412
- "refs": {
413
- "DescribeObjectsInput$evaluateExpressions": "<p>Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.</p>",
414
- "DescribeObjectsOutput$hasMoreResults": "<p>Indicates whether there are more results to return.</p>",
415
- "ListPipelinesOutput$hasMoreResults": "<p>Indicates whether there are more results that can be obtained by a subsequent call.</p>",
416
- "PutPipelineDefinitionOutput$errored": "<p>Indicates whether there were validation errors, and the pipeline definition is stored but cannot be activated until you correct the pipeline and call <code>PutPipelineDefinition</code> to commit the corrected pipeline.</p>",
417
- "QueryObjectsOutput$hasMoreResults": "<p>Indicates whether there are more results that can be obtained by a subsequent call.</p>",
418
- "ReportTaskProgressOutput$canceled": "<p>If true, the calling task runner should cancel processing of the task. The task runner does not need to call <a>SetTaskStatus</a> for canceled tasks.</p>",
419
- "ReportTaskRunnerHeartbeatOutput$terminate": "<p>Indicates whether the calling task runner should terminate.</p>",
420
- "ValidatePipelineDefinitionOutput$errored": "<p>Indicates whether there were validation errors.</p>"
421
- }
422
- },
423
- "cancelActive": {
424
- "base": null,
425
- "refs": {
426
- "DeactivatePipelineInput$cancelActive": "<p>Indicates whether to cancel any running objects. The default is true, which sets the state of any running objects to <code>CANCELED</code>. If this value is false, the pipeline is deactivated after all running objects finish.</p>"
427
- }
428
- },
429
- "errorMessage": {
430
- "base": null,
431
- "refs": {
432
- "InternalServiceError$message": "<p>Description of the error message.</p>",
433
- "InvalidRequestException$message": "<p>Description of the error message.</p>",
434
- "PipelineDeletedException$message": "<p>Description of the error message.</p>",
435
- "PipelineNotFoundException$message": "<p>Description of the error message.</p>",
436
- "SetTaskStatusInput$errorMessage": "<p>If an error occurred during the task, this value specifies a text description of the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.</p>",
437
- "TaskNotFoundException$message": "<p>Description of the error message.</p>"
438
- }
439
- },
440
- "fieldList": {
441
- "base": null,
442
- "refs": {
443
- "PipelineDescription$fields": "<p>A list of read-only fields that contain metadata about the pipeline: @userId, @accountId, and @pipelineState.</p>",
444
- "PipelineObject$fields": "<p>Key-value pairs that define the properties of the object.</p>",
445
- "ReportTaskProgressInput$fields": "<p>Key-value pairs that define the properties of the ReportTaskProgressInput object.</p>"
446
- }
447
- },
448
- "fieldNameString": {
449
- "base": null,
450
- "refs": {
451
- "Field$key": "<p>The field identifier.</p>",
452
- "Field$refValue": "<p>The field value, expressed as the identifier of another object.</p>",
453
- "ParameterObject$id": "<p>The ID of the parameter object. </p>",
454
- "ParameterValue$id": "<p>The ID of the parameter value.</p>"
455
- }
456
- },
457
- "fieldStringValue": {
458
- "base": null,
459
- "refs": {
460
- "Field$stringValue": "<p>The field value, expressed as a String.</p>",
461
- "ParameterValue$stringValue": "<p>The field value, expressed as a String.</p>"
462
- }
463
- },
464
- "id": {
465
- "base": null,
466
- "refs": {
467
- "ActivatePipelineInput$pipelineId": "<p>The ID of the pipeline.</p>",
468
- "AddTagsInput$pipelineId": "<p>The ID of the pipeline.</p>",
469
- "CreatePipelineInput$name": "<p>The name for the pipeline. You can use the same name for multiple pipelines associated with your AWS account, because AWS Data Pipeline assigns each pipeline a unique pipeline identifier.</p>",
470
- "CreatePipelineInput$uniqueId": "<p>A unique identifier. This identifier is not the same as the pipeline identifier assigned by AWS Data Pipeline. You are responsible for defining the format and ensuring the uniqueness of this identifier. You use this parameter to ensure idempotency during repeated calls to <code>CreatePipeline</code>. For example, if the first call to <code>CreatePipeline</code> does not succeed, you can pass in the same unique identifier and pipeline name combination on a subsequent call to <code>CreatePipeline</code>. <code>CreatePipeline</code> ensures that if a pipeline already exists with the same name and unique identifier, a new pipeline is not created. Instead, you'll receive the pipeline identifier from the previous attempt. The uniqueness of the name and unique identifier combination is scoped to the AWS account or IAM user credentials.</p>",
471
- "CreatePipelineOutput$pipelineId": "<p>The ID that AWS Data Pipeline assigns the newly created pipeline. For example, <code>df-06372391ZG65EXAMPLE</code>.</p>",
472
- "DeactivatePipelineInput$pipelineId": "<p>The ID of the pipeline.</p>",
473
- "DeletePipelineInput$pipelineId": "<p>The ID of the pipeline.</p>",
474
- "DescribeObjectsInput$pipelineId": "<p>The ID of the pipeline that contains the object definitions.</p>",
475
- "EvaluateExpressionInput$pipelineId": "<p>The ID of the pipeline.</p>",
476
- "EvaluateExpressionInput$objectId": "<p>The ID of the object.</p>",
477
- "GetPipelineDefinitionInput$pipelineId": "<p>The ID of the pipeline.</p>",
478
- "PipelineDescription$pipelineId": "<p>The pipeline identifier that was assigned by AWS Data Pipeline. This is a string of the form <code>df-297EG78HU43EEXAMPLE</code>.</p>",
479
- "PipelineDescription$name": "<p>The name of the pipeline.</p>",
480
- "PipelineIdName$id": "<p>The ID of the pipeline that was assigned by AWS Data Pipeline. This is a string of the form <code>df-297EG78HU43EEXAMPLE</code>.</p>",
481
- "PipelineIdName$name": "<p>The name of the pipeline.</p>",
482
- "PipelineObject$id": "<p>The ID of the object.</p>",
483
- "PipelineObject$name": "<p>The name of the object.</p>",
484
- "PipelineObjectMap$key": null,
485
- "PollForTaskInput$hostname": "<p>The public DNS name of the calling task runner.</p>",
486
- "PutPipelineDefinitionInput$pipelineId": "<p>The ID of the pipeline.</p>",
487
- "QueryObjectsInput$pipelineId": "<p>The ID of the pipeline.</p>",
488
- "RemoveTagsInput$pipelineId": "<p>The ID of the pipeline.</p>",
489
- "ReportTaskRunnerHeartbeatInput$taskrunnerId": "<p>The ID of the task runner. This value should be unique across your AWS account. In the case of AWS Data Pipeline Task Runner launched on a resource managed by AWS Data Pipeline, the web service provides a unique identifier when it launches the application. If you have written a custom task runner, you should assign a unique identifier for the task runner.</p>",
490
- "ReportTaskRunnerHeartbeatInput$hostname": "<p>The public DNS name of the task runner.</p>",
491
- "SetStatusInput$pipelineId": "<p>The ID of the pipeline that contains the objects.</p>",
492
- "TaskObject$pipelineId": "<p>The ID of the pipeline that provided the task.</p>",
493
- "TaskObject$attemptId": "<p>The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.</p>",
494
- "ValidatePipelineDefinitionInput$pipelineId": "<p>The ID of the pipeline.</p>",
495
- "ValidationError$id": "<p>The identifier of the object that contains the validation error.</p>",
496
- "ValidationWarning$id": "<p>The identifier of the object that contains the validation warning.</p>",
497
- "idList$member": null
498
- }
499
- },
500
- "idList": {
501
- "base": null,
502
- "refs": {
503
- "DescribeObjectsInput$objectIds": "<p>The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to <code>DescribeObjects</code>.</p>",
504
- "DescribePipelinesInput$pipelineIds": "<p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>",
505
- "QueryObjectsOutput$ids": "<p>The identifiers that match the query selectors.</p>",
506
- "SetStatusInput$objectIds": "<p>The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.</p>"
507
- }
508
- },
509
- "int": {
510
- "base": null,
511
- "refs": {
512
- "QueryObjectsInput$limit": "<p>The maximum number of object names that <code>QueryObjects</code> will return in a single call. The default value is 100. </p>"
513
- }
514
- },
515
- "longString": {
516
- "base": null,
517
- "refs": {
518
- "EvaluateExpressionInput$expression": "<p>The expression to evaluate.</p>",
519
- "EvaluateExpressionOutput$evaluatedExpression": "<p>The evaluated expression.</p>"
520
- }
521
- },
522
- "pipelineList": {
523
- "base": null,
524
- "refs": {
525
- "ListPipelinesOutput$pipelineIdList": "<p>The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call <a>DescribePipelines</a> and <a>GetPipelineDefinition</a>.</p>"
526
- }
527
- },
528
- "string": {
529
- "base": null,
530
- "refs": {
531
- "CreatePipelineInput$description": "<p>The description for the pipeline.</p>",
532
- "DescribeObjectsInput$marker": "<p>The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call <code>DescribeObjects</code> with the marker value from the previous call to retrieve the next set of results.</p>",
533
- "DescribeObjectsOutput$marker": "<p>The starting point for the next page of results. To view the next page of results, call <code>DescribeObjects</code> again with this marker value. If the value is null, there are no more results.</p>",
534
- "GetPipelineDefinitionInput$version": "<p>The version of the pipeline definition to retrieve. Set this parameter to <code>latest</code> (default) to use the last definition saved to the pipeline or <code>active</code> to use the last definition that was activated.</p>",
535
- "InstanceIdentity$document": "<p>A description of an EC2 instance that is generated when the instance is launched and exposed to the instance via the instance metadata service in the form of a JSON representation of an object.</p>",
536
- "InstanceIdentity$signature": "<p>A signature which can be used to verify the accuracy and authenticity of the information provided in the instance identity document.</p>",
537
- "ListPipelinesInput$marker": "<p>The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call <code>ListPipelines</code> with the marker value from the previous call to retrieve the next set of results.</p>",
538
- "ListPipelinesOutput$marker": "<p>The starting point for the next page of results. To view the next page of results, call <code>ListPipelinesOutput</code> again with this marker value. If the value is null, there are no more results.</p>",
539
- "PipelineDescription$description": "<p>Description of the pipeline.</p>",
540
- "PollForTaskInput$workerGroup": "<p>The type of task the task runner is configured to accept and process. The worker group is set as a field on objects in the pipeline when they are created. You can only specify a single value for <code>workerGroup</code> in the call to <code>PollForTask</code>. There are no wildcard values permitted in <code>workerGroup</code>; the string must be an exact, case-sensitive, match.</p>",
541
- "QueryObjectsInput$sphere": "<p>Indicates whether the query applies to components or instances. The possible values are: <code>COMPONENT</code>, <code>INSTANCE</code>, and <code>ATTEMPT</code>.</p>",
542
- "QueryObjectsInput$marker": "<p>The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call <code>QueryObjects</code> with the marker value from the previous call to retrieve the next set of results.</p>",
543
- "QueryObjectsOutput$marker": "<p>The starting point for the next page of results. To view the next page of results, call <code>QueryObjects</code> again with this marker value. If the value is null, there are no more results.</p>",
544
- "ReportTaskRunnerHeartbeatInput$workerGroup": "<p>The type of task the task runner is configured to accept and process. The worker group is set as a field on objects in the pipeline when they are created. You can only specify a single value for <code>workerGroup</code>. There are no wildcard values permitted in <code>workerGroup</code>; the string must be an exact, case-sensitive, match.</p>",
545
- "Selector$fieldName": "<p>The name of the field that the operator will be applied to. The field name is the \"key\" portion of the field definition in the pipeline definition syntax that is used by the AWS Data Pipeline API. If the field is not set on the object, the condition fails.</p>",
546
- "SetStatusInput$status": "<p>The status to be set on all the objects specified in <code>objectIds</code>. For components, use <code>PAUSE</code> or <code>RESUME</code>. For instances, use <code>TRY_CANCEL</code>, <code>RERUN</code>, or <code>MARK_FINISHED</code>.</p>",
547
- "SetTaskStatusInput$errorId": "<p>If an error occurred during the task, this value specifies the error code. This value is set on the physical attempt object. It is used to display error information to the user. It should not start with string \"Service_\" which is reserved by the system.</p>",
548
- "SetTaskStatusInput$errorStackTrace": "<p>If an error occurred during the task, this value specifies the stack trace associated with the error. This value is set on the physical attempt object. It is used to display error information to the user. The web service does not parse this value.</p>",
549
- "stringList$member": null
550
- }
551
- },
552
- "stringList": {
553
- "base": null,
554
- "refs": {
555
- "Operator$values": "<p>The value that the actual field value will be compared with.</p>",
556
- "RemoveTagsInput$tagKeys": "<p>The keys of the tags to remove.</p>"
557
- }
558
- },
559
- "tagKey": {
560
- "base": null,
561
- "refs": {
562
- "Tag$key": "<p>The key name of a tag defined by a user. For more information, see <a href=\"http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html\">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>"
563
- }
564
- },
565
- "tagList": {
566
- "base": null,
567
- "refs": {
568
- "AddTagsInput$tags": "<p>The tags to add, as key/value pairs.</p>",
569
- "CreatePipelineInput$tags": "<p>A list of tags to associate with the pipeline at creation. Tags let you control access to pipelines. For more information, see <a href=\"http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html\">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>",
570
- "PipelineDescription$tags": "<p>A list of tags to associated with a pipeline. Tags let you control access to pipelines. For more information, see <a href=\"http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html\">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>"
571
- }
572
- },
573
- "tagValue": {
574
- "base": null,
575
- "refs": {
576
- "Tag$value": "<p>The optional value portion of a tag defined by a user. For more information, see <a href=\"http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html\">Controlling User Access to Pipelines</a> in the <i>AWS Data Pipeline Developer Guide</i>.</p>"
577
- }
578
- },
579
- "taskId": {
580
- "base": null,
581
- "refs": {
582
- "ReportTaskProgressInput$taskId": "<p>The ID of the task assigned to the task runner. This value is provided in the response for <a>PollForTask</a>.</p>",
583
- "SetTaskStatusInput$taskId": "<p>The ID of the task assigned to the task runner. This value is provided in the response for <a>PollForTask</a>.</p>",
584
- "TaskObject$taskId": "<p>An internal identifier for the task. This ID is passed to the <a>SetTaskStatus</a> and <a>ReportTaskProgress</a> actions.</p>"
585
- }
586
- },
587
- "timestamp": {
588
- "base": null,
589
- "refs": {
590
- "ActivatePipelineInput$startTimestamp": "<p>The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.</p>"
591
- }
592
- },
593
- "validationMessage": {
594
- "base": null,
595
- "refs": {
596
- "validationMessages$member": null
597
- }
598
- },
599
- "validationMessages": {
600
- "base": null,
601
- "refs": {
602
- "ValidationError$errors": "<p>A description of the validation error.</p>",
603
- "ValidationWarning$warnings": "<p>A description of the validation warning.</p>"
604
- }
605
- }
606
- }
607
- }