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,969 +0,0 @@
1
- {
2
- "operations": {
3
- "AddInstanceGroups": "<p>AddInstanceGroups adds an instance group to a running cluster.</p>",
4
- "AddJobFlowSteps": "<p> AddJobFlowSteps adds new steps to a running job flow. A maximum of 256 steps are allowed in each job flow. </p> <p>If your job flow is long-running (such as a Hive data warehouse) or complex, you may require more than 256 steps to process your data. You can bypass the 256-step limitation in various ways, including using the SSH shell to connect to the master node and submitting queries directly to the software running on the master node, such as Hive and Hadoop. For more information on how to do this, go to <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/AddMoreThan256Steps.html\">Add More than 256 Steps to a Job Flow</a> in the <i>Amazon Elastic MapReduce Developer's Guide</i>.</p> <p> A step specifies the location of a JAR file stored either on the master node of the job flow or in Amazon S3. Each step is performed by the main function of the main class of the JAR file. The main class can be specified either in the manifest of the JAR or by using the MainFunction parameter of the step. </p> <p> Elastic MapReduce executes each step in the order listed. For a step to be considered complete, the main function must exit with a zero exit code and all Hadoop jobs started while the step was running must have completed and run successfully. </p> <p> You can only add steps to a job flow that is in one of the following states: STARTING, BOOTSTRAPPING, RUNNING, or WAITING.</p>",
5
- "AddTags": "<p>Adds tags to an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html\">Tagging Amazon EMR Resources</a>. </p>",
6
- "DescribeCluster": "<p>Provides cluster-level details including status, hardware and software configuration, VPC settings, and so on. For information about the cluster steps, see <a>ListSteps</a>.</p>",
7
- "DescribeJobFlows": "<p> This API is deprecated and will eventually be removed. We recommend you use <a>ListClusters</a>, <a>DescribeCluster</a>, <a>ListSteps</a>, <a>ListInstanceGroups</a> and <a>ListBootstrapActions</a> instead.</p> <p> DescribeJobFlows returns a list of job flows that match all of the supplied parameters. The parameters can include a list of job flow IDs, job flow states, and restrictions on job flow creation date and time.</p> <p> Regardless of supplied parameters, only job flows created within the last two months are returned.</p> <p> If no parameters are supplied, then job flows matching either of the following criteria are returned:</p> <ul> <li>Job flows created and completed in the last two weeks</li> <li> Job flows created within the last two months that are in one of the following states: <code>RUNNING</code>, <code>WAITING</code>, <code>SHUTTING_DOWN</code>, <code>STARTING</code> </li> </ul> <p> Amazon Elastic MapReduce can return a maximum of 512 job flow descriptions. </p>",
8
- "DescribeStep": "<p>Provides more detail about the cluster step.</p>",
9
- "ListBootstrapActions": "<p>Provides information about the bootstrap actions associated with a cluster.</p>",
10
- "ListClusters": "<p>Provides the status of all clusters visible to this AWS account. Allows you to filter the list of clusters based on certain criteria; for example, filtering by cluster creation date and time or by status. This call returns a maximum of 50 clusters per call, but returns a marker to track the paging of the cluster list across multiple ListClusters calls. </p>",
11
- "ListInstanceGroups": "<p>Provides all available details about the instance groups in a cluster.</p>",
12
- "ListInstances": "<p>Provides information about the cluster instances that Amazon EMR provisions on behalf of a user when it creates the cluster. For example, this operation indicates when the EC2 instances reach the Ready state, when instances become available to Amazon EMR to use for jobs, and the IP addresses for cluster instances, etc. </p>",
13
- "ListSteps": "<p>Provides a list of steps for the cluster. </p>",
14
- "ModifyInstanceGroups": "<p>ModifyInstanceGroups modifies the number of nodes and configuration settings of an instance group. The input parameters include the new target instance count for the group and the instance group ID. The call will either succeed or fail atomically.</p>",
15
- "RemoveTags": "<p>Removes tags from an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html\">Tagging Amazon EMR Resources</a>. </p> <p>The following example removes the stack tag with value Prod from a cluster:</p>",
16
- "RunJobFlow": "<p> RunJobFlow creates and starts running a new job flow. The job flow will run the steps specified. Once the job flow completes, the cluster is stopped and the HDFS partition is lost. To prevent loss of data, configure the last step of the job flow to store results in Amazon S3. If the <a>JobFlowInstancesConfig</a> <code>KeepJobFlowAliveWhenNoSteps</code> parameter is set to <code>TRUE</code>, the job flow will transition to the WAITING state rather than shutting down once the steps have completed. </p> <p>For additional protection, you can set the <a>JobFlowInstancesConfig</a> <code>TerminationProtected</code> parameter to <code>TRUE</code> to lock the job flow and prevent it from being terminated by API call, user intervention, or in the event of a job flow error.</p> <p>A maximum of 256 steps are allowed in each job flow.</p> <p>If your job flow is long-running (such as a Hive data warehouse) or complex, you may require more than 256 steps to process your data. You can bypass the 256-step limitation in various ways, including using the SSH shell to connect to the master node and submitting queries directly to the software running on the master node, such as Hive and Hadoop. For more information on how to do this, go to <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/AddMoreThan256Steps.html\">Add More than 256 Steps to a Job Flow</a> in the <i>Amazon Elastic MapReduce Developer's Guide</i>.</p> <p>For long running job flows, we recommend that you periodically store your results.</p>",
17
- "SetTerminationProtection": "<p> SetTerminationProtection locks a job flow so the Amazon EC2 instances in the cluster cannot be terminated by user intervention, an API call, or in the event of a job-flow error. The cluster still terminates upon successful completion of the job flow. Calling SetTerminationProtection on a job flow is analogous to calling the Amazon EC2 DisableAPITermination API on all of the EC2 instances in a cluster.</p> <p> SetTerminationProtection is used to prevent accidental termination of a job flow and to ensure that in the event of an error, the instances will persist so you can recover any data stored in their ephemeral instance storage.</p> <p> To terminate a job flow that has been locked by setting SetTerminationProtection to <code>true</code>, you must first unlock the job flow by a subsequent call to SetTerminationProtection in which you set the value to <code>false</code>. </p> <p> For more information, go to <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/UsingEMR_TerminationProtection.html\">Protecting a Job Flow from Termination</a> in the <i>Amazon Elastic MapReduce Developer's Guide.</i></p>",
18
- "SetVisibleToAllUsers": "<p>Sets whether all AWS Identity and Access Management (IAM) users under your account can access the specified job flows. This action works on running job flows. You can also set the visibility of a job flow when you launch it using the <code>VisibleToAllUsers</code> parameter of <a>RunJobFlow</a>. The SetVisibleToAllUsers action can be called only by an IAM user who created the job flow or the AWS account that owns the job flow.</p>",
19
- "TerminateJobFlows": "<p> TerminateJobFlows shuts a list of job flows down. When a job flow is shut down, any step not yet completed is canceled and the EC2 instances on which the job flow is running are stopped. Any log files not already saved are uploaded to Amazon S3 if a LogUri was specified when the job flow was created. </p> <p> The maximum number of JobFlows allowed is 10. The call to TerminateJobFlows is asynchronous. Depending on the configuration of the job flow, it may take up to 5-20 minutes for the job flow to completely terminate and release allocated resources, such as Amazon EC2 instances. </p>"
20
- },
21
- "service": "<p>Amazon Elastic MapReduce (Amazon EMR) is a web service that makes it easy to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several AWS products to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehousing.</p>",
22
- "shapes": {
23
- "ActionOnFailure": {
24
- "base": null,
25
- "refs": {
26
- "Step$ActionOnFailure": "<p>This specifies what action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE. </p>",
27
- "StepConfig$ActionOnFailure": "<p>The action to take if the job flow step fails.</p>",
28
- "StepSummary$ActionOnFailure": "<p>This specifies what action to take when the cluster step fails. Possible values are TERMINATE_CLUSTER, CANCEL_AND_WAIT, and CONTINUE. </p>"
29
- }
30
- },
31
- "AddInstanceGroupsInput": {
32
- "base": "<p>Input to an AddInstanceGroups call.</p>",
33
- "refs": {
34
- }
35
- },
36
- "AddInstanceGroupsOutput": {
37
- "base": "<p>Output from an AddInstanceGroups call.</p>",
38
- "refs": {
39
- }
40
- },
41
- "AddJobFlowStepsInput": {
42
- "base": "<p> The input argument to the <a>AddJobFlowSteps</a> operation. </p>",
43
- "refs": {
44
- }
45
- },
46
- "AddJobFlowStepsOutput": {
47
- "base": "<p> The output for the <a>AddJobFlowSteps</a> operation. </p>",
48
- "refs": {
49
- }
50
- },
51
- "AddTagsInput": {
52
- "base": "<p>This input identifies a cluster and a list of tags to attach. </p>",
53
- "refs": {
54
- }
55
- },
56
- "AddTagsOutput": {
57
- "base": "<p>This output indicates the result of adding tags to a resource. </p>",
58
- "refs": {
59
- }
60
- },
61
- "Application": {
62
- "base": "<p>An application is any Amazon or third-party software that you can add to the cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action argument. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-mapr.html\">Launch a Job Flow on the MapR Distribution for Hadoop</a>. Currently supported values are:</p> <ul> <li>\"mapr-m3\" - launch the job flow using MapR M3 Edition.</li> <li>\"mapr-m5\" - launch the job flow using MapR M5 Edition.</li> <li>\"mapr\" with the user arguments specifying \"--edition,m3\" or \"--edition,m5\" - launch the job flow using MapR M3 or M5 Edition, respectively.</li> </ul>",
63
- "refs": {
64
- "ApplicationList$member": null
65
- }
66
- },
67
- "ApplicationList": {
68
- "base": null,
69
- "refs": {
70
- "Cluster$Applications": "<p>The applications installed on this cluster.</p>"
71
- }
72
- },
73
- "Boolean": {
74
- "base": null,
75
- "refs": {
76
- "Cluster$AutoTerminate": "<p>Specifies whether the cluster should terminate after completing all steps.</p>",
77
- "Cluster$TerminationProtected": "<p>Indicates whether Amazon EMR will lock the cluster to prevent the EC2 instances from being terminated by an API call or user intervention, or in the event of a cluster error.</p>",
78
- "Cluster$VisibleToAllUsers": "<p>Indicates whether the job flow is visible to all IAM users of the AWS account associated with the job flow. If this value is set to <code>true</code>, all IAM users of that AWS account can view and manage the job flow if they have the proper policy permissions set. If this value is <code>false</code>, only the IAM user that created the cluster can view and manage it. This value can be changed using the <a>SetVisibleToAllUsers</a> action.</p>",
79
- "JobFlowDetail$VisibleToAllUsers": "<p>Specifies whether the job flow is visible to all IAM users of the AWS account associated with the job flow. If this value is set to <code>true</code>, all IAM users of that AWS account can view and (if they have the proper policy permissions set) manage the job flow. If it is set to <code>false</code>, only the IAM user that created the job flow can view and manage it. This value can be changed using the <a>SetVisibleToAllUsers</a> action.</p>",
80
- "JobFlowInstancesConfig$KeepJobFlowAliveWhenNoSteps": "<p>Specifies whether the job flow should terminate after completing all steps.</p>",
81
- "JobFlowInstancesConfig$TerminationProtected": "<p>Specifies whether to lock the job flow to prevent the Amazon EC2 instances from being terminated by API call, user intervention, or in the event of a job flow error.</p>",
82
- "JobFlowInstancesDetail$KeepJobFlowAliveWhenNoSteps": "<p>Specifies whether the job flow should terminate after completing all steps.</p>",
83
- "JobFlowInstancesDetail$TerminationProtected": "<p>Specifies whether the Amazon EC2 instances in the cluster are protected from termination by API calls, user intervention, or in the event of a job flow error. </p>",
84
- "RunJobFlowInput$VisibleToAllUsers": "<p>Whether the job flow is visible to all IAM users of the AWS account associated with the job flow. If this value is set to <code>true</code>, all IAM users of that AWS account can view and (if they have the proper policy permissions set) manage the job flow. If it is set to <code>false</code>, only the IAM user that created the job flow can view and manage it.</p>",
85
- "SetTerminationProtectionInput$TerminationProtected": "<p> A Boolean that indicates whether to protect the job flow and prevent the Amazon EC2 instances in the cluster from shutting down due to API calls, user intervention, or job-flow error. </p>",
86
- "SetVisibleToAllUsersInput$VisibleToAllUsers": "<p>Whether the specified job flows are visible to all IAM users of the AWS account associated with the job flow. If this value is set to True, all IAM users of that AWS account can view and, if they have the proper IAM policy permissions set, manage the job flows. If it is set to False, only the IAM user that created a job flow can view and manage it.</p>"
87
- }
88
- },
89
- "BootstrapActionConfig": {
90
- "base": "<p>Configuration of a bootstrap action.</p>",
91
- "refs": {
92
- "BootstrapActionConfigList$member": null,
93
- "BootstrapActionDetail$BootstrapActionConfig": "<p>A description of the bootstrap action.</p>"
94
- }
95
- },
96
- "BootstrapActionConfigList": {
97
- "base": null,
98
- "refs": {
99
- "RunJobFlowInput$BootstrapActions": "<p> A list of bootstrap actions that will be run before Hadoop is started on the cluster nodes. </p>"
100
- }
101
- },
102
- "BootstrapActionDetail": {
103
- "base": "<p>Reports the configuration of a bootstrap action in a job flow.</p>",
104
- "refs": {
105
- "BootstrapActionDetailList$member": null
106
- }
107
- },
108
- "BootstrapActionDetailList": {
109
- "base": null,
110
- "refs": {
111
- "JobFlowDetail$BootstrapActions": "<p>A list of the bootstrap actions run by the job flow.</p>"
112
- }
113
- },
114
- "Cluster": {
115
- "base": "<p>The detailed description of the cluster.</p>",
116
- "refs": {
117
- "DescribeClusterOutput$Cluster": "<p>This output contains the details for the requested cluster.</p>"
118
- }
119
- },
120
- "ClusterId": {
121
- "base": null,
122
- "refs": {
123
- "Cluster$Id": "<p>The unique identifier for the cluster.</p>",
124
- "ClusterSummary$Id": "<p>The unique identifier for the cluster.</p>",
125
- "DescribeClusterInput$ClusterId": "<p>The identifier of the cluster to describe.</p>",
126
- "DescribeStepInput$ClusterId": "<p>The identifier of the cluster with steps to describe.</p>",
127
- "ListBootstrapActionsInput$ClusterId": "<p>The cluster identifier for the bootstrap actions to list .</p>",
128
- "ListInstanceGroupsInput$ClusterId": "<p>The identifier of the cluster for which to list the instance groups.</p>",
129
- "ListInstancesInput$ClusterId": "<p>The identifier of the cluster for which to list the instances.</p>",
130
- "ListStepsInput$ClusterId": "<p>The identifier of the cluster for which to list the steps.</p>"
131
- }
132
- },
133
- "ClusterState": {
134
- "base": null,
135
- "refs": {
136
- "ClusterStateList$member": null,
137
- "ClusterStatus$State": "<p>The current state of the cluster.</p>"
138
- }
139
- },
140
- "ClusterStateChangeReason": {
141
- "base": "<p>The reason that the cluster changed to its current state.</p>",
142
- "refs": {
143
- "ClusterStatus$StateChangeReason": "<p>The reason for the cluster status change.</p>"
144
- }
145
- },
146
- "ClusterStateChangeReasonCode": {
147
- "base": null,
148
- "refs": {
149
- "ClusterStateChangeReason$Code": "<p>The programmatic code for the state change reason.</p>"
150
- }
151
- },
152
- "ClusterStateList": {
153
- "base": null,
154
- "refs": {
155
- "ListClustersInput$ClusterStates": "<p>The cluster state filters to apply when listing clusters. </p>"
156
- }
157
- },
158
- "ClusterStatus": {
159
- "base": "<p>The detailed status of the cluster.</p>",
160
- "refs": {
161
- "Cluster$Status": "<p>The current status details about the cluster.</p>",
162
- "ClusterSummary$Status": "<p>The details about the current status of the cluster.</p>"
163
- }
164
- },
165
- "ClusterSummary": {
166
- "base": "<p>The summary description of the cluster.</p>",
167
- "refs": {
168
- "ClusterSummaryList$member": null
169
- }
170
- },
171
- "ClusterSummaryList": {
172
- "base": null,
173
- "refs": {
174
- "ListClustersOutput$Clusters": "<p>The list of clusters for the account based on the given filters. </p>"
175
- }
176
- },
177
- "ClusterTimeline": {
178
- "base": "<p>Represents the timeline of the cluster's lifecycle.</p>",
179
- "refs": {
180
- "ClusterStatus$Timeline": "<p>A timeline that represents the status of a cluster over the lifetime of the cluster.</p>"
181
- }
182
- },
183
- "Command": {
184
- "base": "<p>An entity describing an executable that runs on a cluster.</p>",
185
- "refs": {
186
- "CommandList$member": null
187
- }
188
- },
189
- "CommandList": {
190
- "base": null,
191
- "refs": {
192
- "ListBootstrapActionsOutput$BootstrapActions": "<p>The bootstrap actions associated with the cluster .</p>"
193
- }
194
- },
195
- "Date": {
196
- "base": null,
197
- "refs": {
198
- "ClusterTimeline$CreationDateTime": "<p>The creation date and time of the cluster.</p>",
199
- "ClusterTimeline$ReadyDateTime": "<p>The date and time when the cluster was ready to execute steps.</p>",
200
- "ClusterTimeline$EndDateTime": "<p>The date and time when the cluster was terminated.</p>",
201
- "DescribeJobFlowsInput$CreatedAfter": "<p>Return only job flows created after this date and time.</p>",
202
- "DescribeJobFlowsInput$CreatedBefore": "<p>Return only job flows created before this date and time.</p>",
203
- "InstanceGroupDetail$CreationDateTime": "<p>The date/time the instance group was created. </p>",
204
- "InstanceGroupDetail$StartDateTime": "<p>The date/time the instance group was started.</p>",
205
- "InstanceGroupDetail$ReadyDateTime": "<p>The date/time the instance group was available to the cluster. </p>",
206
- "InstanceGroupDetail$EndDateTime": "<p>The date/time the instance group was terminated.</p>",
207
- "InstanceGroupTimeline$CreationDateTime": "<p>The creation date and time of the instance group.</p>",
208
- "InstanceGroupTimeline$ReadyDateTime": "<p>The date and time when the instance group became ready to perform tasks.</p>",
209
- "InstanceGroupTimeline$EndDateTime": "<p>The date and time when the instance group terminated.</p>",
210
- "InstanceTimeline$CreationDateTime": "<p>The creation date and time of the instance.</p>",
211
- "InstanceTimeline$ReadyDateTime": "<p>The date and time when the instance was ready to perform tasks.</p>",
212
- "InstanceTimeline$EndDateTime": "<p>The date and time when the instance was terminated.</p>",
213
- "JobFlowExecutionStatusDetail$CreationDateTime": "<p>The creation date and time of the job flow.</p>",
214
- "JobFlowExecutionStatusDetail$StartDateTime": "<p>The start date and time of the job flow.</p>",
215
- "JobFlowExecutionStatusDetail$ReadyDateTime": "<p>The date and time when the job flow was ready to start running bootstrap actions.</p>",
216
- "JobFlowExecutionStatusDetail$EndDateTime": "<p>The completion date and time of the job flow.</p>",
217
- "ListClustersInput$CreatedAfter": "<p>The creation date and time beginning value filter for listing clusters .</p>",
218
- "ListClustersInput$CreatedBefore": "<p>The creation date and time end value filter for listing clusters .</p>",
219
- "StepExecutionStatusDetail$CreationDateTime": "<p>The creation date and time of the step.</p>",
220
- "StepExecutionStatusDetail$StartDateTime": "<p>The start date and time of the step.</p>",
221
- "StepExecutionStatusDetail$EndDateTime": "<p>The completion date and time of the step.</p>",
222
- "StepTimeline$CreationDateTime": "<p>The date and time when the cluster step was created. </p>",
223
- "StepTimeline$StartDateTime": "<p>The date and time when the cluster step execution started. </p>",
224
- "StepTimeline$EndDateTime": "<p>The date and time when the cluster step execution completed or failed. </p>"
225
- }
226
- },
227
- "DescribeClusterInput": {
228
- "base": "<p>This input determines which cluster to describe.</p>",
229
- "refs": {
230
- }
231
- },
232
- "DescribeClusterOutput": {
233
- "base": "<p>This output contains the description of the cluster.</p>",
234
- "refs": {
235
- }
236
- },
237
- "DescribeJobFlowsInput": {
238
- "base": "<p> The input for the <a>DescribeJobFlows</a> operation. </p>",
239
- "refs": {
240
- }
241
- },
242
- "DescribeJobFlowsOutput": {
243
- "base": "<p> The output for the <a>DescribeJobFlows</a> operation. </p>",
244
- "refs": {
245
- }
246
- },
247
- "DescribeStepInput": {
248
- "base": "<p>This input determines which step to describe.</p>",
249
- "refs": {
250
- }
251
- },
252
- "DescribeStepOutput": {
253
- "base": "<p>This output contains the description of the cluster step.</p>",
254
- "refs": {
255
- }
256
- },
257
- "EC2InstanceIdsToTerminateList": {
258
- "base": null,
259
- "refs": {
260
- "InstanceGroupModifyConfig$EC2InstanceIdsToTerminate": "<p>The EC2 InstanceIds to terminate. For advanced users only. Once you terminate the instances, the instance group will not return to its original requested size.</p>"
261
- }
262
- },
263
- "Ec2InstanceAttributes": {
264
- "base": "<p>Provides information about the EC2 instances in a cluster grouped by category. For example, key name, subnet ID, IAM instance profile, and so on.</p>",
265
- "refs": {
266
- "Cluster$Ec2InstanceAttributes": null
267
- }
268
- },
269
- "ErrorCode": {
270
- "base": null,
271
- "refs": {
272
- "InvalidRequestException$ErrorCode": "<p>The error code associated with the exception.</p>"
273
- }
274
- },
275
- "ErrorMessage": {
276
- "base": null,
277
- "refs": {
278
- "InternalServerException$Message": "<p>The message associated with the exception.</p>",
279
- "InvalidRequestException$Message": "<p>The message associated with the exception.</p>"
280
- }
281
- },
282
- "HadoopJarStepConfig": {
283
- "base": "<p>A job flow step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail. </p>",
284
- "refs": {
285
- "StepConfig$HadoopJarStep": "<p>The JAR file used for the job flow step.</p>"
286
- }
287
- },
288
- "HadoopStepConfig": {
289
- "base": "<p>A cluster step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail. </p>",
290
- "refs": {
291
- "Step$Config": "<p>The Hadoop job configuration of the cluster step. </p>",
292
- "StepSummary$Config": "<p>The Hadoop job configuration of the cluster step. </p>"
293
- }
294
- },
295
- "Instance": {
296
- "base": "<p>Represents an EC2 instance provisioned as part of cluster.</p>",
297
- "refs": {
298
- "InstanceList$member": null
299
- }
300
- },
301
- "InstanceGroup": {
302
- "base": "<p>This entity represents an instance group, which is a group of instances that have common purpose. For example, CORE instance group is used for HDFS.</p>",
303
- "refs": {
304
- "InstanceGroupList$member": null
305
- }
306
- },
307
- "InstanceGroupConfig": {
308
- "base": "<p>Configuration defining a new instance group.</p>",
309
- "refs": {
310
- "InstanceGroupConfigList$member": null
311
- }
312
- },
313
- "InstanceGroupConfigList": {
314
- "base": null,
315
- "refs": {
316
- "AddInstanceGroupsInput$InstanceGroups": "<p>Instance Groups to add.</p>",
317
- "JobFlowInstancesConfig$InstanceGroups": "<p>Configuration for the job flow's instance groups.</p>"
318
- }
319
- },
320
- "InstanceGroupDetail": {
321
- "base": "<p>Detailed information about an instance group. </p>",
322
- "refs": {
323
- "InstanceGroupDetailList$member": null
324
- }
325
- },
326
- "InstanceGroupDetailList": {
327
- "base": null,
328
- "refs": {
329
- "JobFlowInstancesDetail$InstanceGroups": "<p>Details about the job flow's instance groups. </p>"
330
- }
331
- },
332
- "InstanceGroupId": {
333
- "base": null,
334
- "refs": {
335
- "InstanceGroup$Id": "<p>The identifier of the instance group.</p>",
336
- "ListInstancesInput$InstanceGroupId": "<p>The identifier of the instance group for which to list the instances.</p>"
337
- }
338
- },
339
- "InstanceGroupIdsList": {
340
- "base": null,
341
- "refs": {
342
- "AddInstanceGroupsOutput$InstanceGroupIds": "<p>Instance group IDs of the newly created instance groups.</p>"
343
- }
344
- },
345
- "InstanceGroupList": {
346
- "base": null,
347
- "refs": {
348
- "ListInstanceGroupsOutput$InstanceGroups": "<p>The list of instance groups for the cluster and given filters.</p>"
349
- }
350
- },
351
- "InstanceGroupModifyConfig": {
352
- "base": "<p>Modify an instance group size.</p>",
353
- "refs": {
354
- "InstanceGroupModifyConfigList$member": null
355
- }
356
- },
357
- "InstanceGroupModifyConfigList": {
358
- "base": null,
359
- "refs": {
360
- "ModifyInstanceGroupsInput$InstanceGroups": "<p>Instance groups to change.</p>"
361
- }
362
- },
363
- "InstanceGroupState": {
364
- "base": null,
365
- "refs": {
366
- "InstanceGroupDetail$State": "<p>State of instance group. The following values are deprecated: STARTING, TERMINATED, and FAILED.</p>",
367
- "InstanceGroupStatus$State": "<p>The current state of the instance group.</p>"
368
- }
369
- },
370
- "InstanceGroupStateChangeReason": {
371
- "base": "<p>The status change reason details for the instance group.</p>",
372
- "refs": {
373
- "InstanceGroupStatus$StateChangeReason": "<p>The status change reason details for the instance group.</p>"
374
- }
375
- },
376
- "InstanceGroupStateChangeReasonCode": {
377
- "base": null,
378
- "refs": {
379
- "InstanceGroupStateChangeReason$Code": "<p>The programmable code for the state change reason.</p>"
380
- }
381
- },
382
- "InstanceGroupStatus": {
383
- "base": "<p>The details of the instance group status.</p>",
384
- "refs": {
385
- "InstanceGroup$Status": "<p>The current status of the instance group.</p>"
386
- }
387
- },
388
- "InstanceGroupTimeline": {
389
- "base": "<p>The timeline of the instance group lifecycle.</p>",
390
- "refs": {
391
- "InstanceGroupStatus$Timeline": "<p>The timeline of the instance group status over time.</p>"
392
- }
393
- },
394
- "InstanceGroupType": {
395
- "base": null,
396
- "refs": {
397
- "InstanceGroup$InstanceGroupType": "<p>The type of the instance group. Valid values are MASTER, CORE or TASK.</p>",
398
- "InstanceGroupTypeList$member": null
399
- }
400
- },
401
- "InstanceGroupTypeList": {
402
- "base": null,
403
- "refs": {
404
- "ListInstancesInput$InstanceGroupTypes": "<p>The type of instance group for which to list the instances.</p>"
405
- }
406
- },
407
- "InstanceId": {
408
- "base": null,
409
- "refs": {
410
- "EC2InstanceIdsToTerminateList$member": null,
411
- "Instance$Id": "<p>The unique identifier for the instance in Amazon EMR.</p>",
412
- "Instance$Ec2InstanceId": "<p>The unique identifier of the instance in Amazon EC2.</p>"
413
- }
414
- },
415
- "InstanceList": {
416
- "base": null,
417
- "refs": {
418
- "ListInstancesOutput$Instances": "<p>The list of instances for the cluster and given filters.</p>"
419
- }
420
- },
421
- "InstanceRoleType": {
422
- "base": null,
423
- "refs": {
424
- "InstanceGroupConfig$InstanceRole": "<p>The role of the instance group in the cluster.</p>",
425
- "InstanceGroupDetail$InstanceRole": "<p>Instance group role in the cluster </p>"
426
- }
427
- },
428
- "InstanceState": {
429
- "base": null,
430
- "refs": {
431
- "InstanceStatus$State": "<p>The current state of the instance.</p>"
432
- }
433
- },
434
- "InstanceStateChangeReason": {
435
- "base": "<p>The details of the status change reason for the instance.</p>",
436
- "refs": {
437
- "InstanceStatus$StateChangeReason": "<p>The details of the status change reason for the instance.</p>"
438
- }
439
- },
440
- "InstanceStateChangeReasonCode": {
441
- "base": null,
442
- "refs": {
443
- "InstanceStateChangeReason$Code": "<p>The programmable code for the state change reason.</p>"
444
- }
445
- },
446
- "InstanceStatus": {
447
- "base": "<p>The instance status details.</p>",
448
- "refs": {
449
- "Instance$Status": "<p>The current status of the instance.</p>"
450
- }
451
- },
452
- "InstanceTimeline": {
453
- "base": "<p>The timeline of the instance lifecycle.</p>",
454
- "refs": {
455
- "InstanceStatus$Timeline": "<p>The timeline of the instance status over time.</p>"
456
- }
457
- },
458
- "InstanceType": {
459
- "base": null,
460
- "refs": {
461
- "InstanceGroup$InstanceType": "<p>The EC2 instance type for all instances in the instance group. </p>",
462
- "InstanceGroupConfig$InstanceType": "<p>The Amazon EC2 instance type for all instances in the instance group. </p>",
463
- "InstanceGroupDetail$InstanceType": "<p>Amazon EC2 Instance type.</p>",
464
- "JobFlowInstancesConfig$MasterInstanceType": "<p>The EC2 instance type of the master node.</p>",
465
- "JobFlowInstancesConfig$SlaveInstanceType": "<p>The EC2 instance type of the slave nodes.</p>",
466
- "JobFlowInstancesDetail$MasterInstanceType": "<p>The Amazon EC2 master node instance type.</p>",
467
- "JobFlowInstancesDetail$SlaveInstanceType": "<p>The Amazon EC2 slave node instance type.</p>"
468
- }
469
- },
470
- "Integer": {
471
- "base": null,
472
- "refs": {
473
- "Cluster$NormalizedInstanceHours": "<p>An approximation of the cost of the job flow, represented in m1.small/hours. This value is incremented one time for every hour an m1.small instance runs. Larger instances are weighted more, so an EC2 instance that is roughly four times more expensive would result in the normalized instance hours being incremented by four. This result is only an approximation and does not reflect the actual billing rate.</p>",
474
- "ClusterSummary$NormalizedInstanceHours": "<p>An approximation of the cost of the job flow, represented in m1.small/hours. This value is incremented one time for every hour an m1.small instance runs. Larger instances are weighted more, so an EC2 instance that is roughly four times more expensive would result in the normalized instance hours being incremented by four. This result is only an approximation and does not reflect the actual billing rate.</p>",
475
- "InstanceGroup$RequestedInstanceCount": "<p>The target number of instances for the instance group. </p>",
476
- "InstanceGroup$RunningInstanceCount": "<p>The number of instances currently running in this instance group.</p>",
477
- "InstanceGroupConfig$InstanceCount": "<p>Target number of instances for the instance group. </p>",
478
- "InstanceGroupDetail$InstanceRequestCount": "<p>Target number of instances to run in the instance group. </p>",
479
- "InstanceGroupDetail$InstanceRunningCount": "<p>Actual count of running instances. </p>",
480
- "InstanceGroupModifyConfig$InstanceCount": "<p>Target size for the instance group.</p>",
481
- "JobFlowInstancesConfig$InstanceCount": "<p>The number of Amazon EC2 instances used to execute the job flow.</p>",
482
- "JobFlowInstancesDetail$InstanceCount": "<p>The number of Amazon EC2 instances in the cluster. If the value is 1, the same instance serves as both the master and slave node. If the value is greater than 1, one instance is the master node and all others are slave nodes.</p>",
483
- "JobFlowInstancesDetail$NormalizedInstanceHours": "<p>An approximation of the cost of the job flow, represented in m1.small/hours. This value is incremented once for every hour an m1.small runs. Larger instances are weighted more, so an Amazon EC2 instance that is roughly four times more expensive would result in the normalized instance hours being incremented by four. This result is only an approximation and does not reflect the actual billing rate.</p>"
484
- }
485
- },
486
- "InternalServerError": {
487
- "base": "<p>Indicates that an error occurred while processing the request and that the request was not completed.</p>",
488
- "refs": {
489
- }
490
- },
491
- "InternalServerException": {
492
- "base": "<p>This exception occurs when there is an internal failure in the EMR service.</p>",
493
- "refs": {
494
- }
495
- },
496
- "InvalidRequestException": {
497
- "base": "<p>This exception occurs when there is something wrong with user input.</p>",
498
- "refs": {
499
- }
500
- },
501
- "JobFlowDetail": {
502
- "base": "<p> A description of a job flow.</p>",
503
- "refs": {
504
- "JobFlowDetailList$member": null
505
- }
506
- },
507
- "JobFlowDetailList": {
508
- "base": null,
509
- "refs": {
510
- "DescribeJobFlowsOutput$JobFlows": "<p>A list of job flows matching the parameters supplied.</p>"
511
- }
512
- },
513
- "JobFlowExecutionState": {
514
- "base": "<p> The type of instance. </p> <enumValues> <value name=\"JobFlowExecutionState$COMPLETED\"> <p>A small instance</p> </value> <value name=\"JobFlowExecutionState$FAILED\"> <p>A large instance</p> </value> </enumValues>",
515
- "refs": {
516
- "JobFlowExecutionStateList$member": null,
517
- "JobFlowExecutionStatusDetail$State": "<p>The state of the job flow.</p>"
518
- }
519
- },
520
- "JobFlowExecutionStateList": {
521
- "base": null,
522
- "refs": {
523
- "DescribeJobFlowsInput$JobFlowStates": "<p>Return only job flows whose state is contained in this list.</p>"
524
- }
525
- },
526
- "JobFlowExecutionStatusDetail": {
527
- "base": "<p>Describes the status of the job flow.</p>",
528
- "refs": {
529
- "JobFlowDetail$ExecutionStatusDetail": "<p>Describes the execution status of the job flow.</p>"
530
- }
531
- },
532
- "JobFlowInstancesConfig": {
533
- "base": "<p>A description of the Amazon EC2 instance running the job flow. A valid JobFlowInstancesConfig must contain at least InstanceGroups, which is the recommended configuration. However, a valid alternative is to have MasterInstanceType, SlaveInstanceType, and InstanceCount (all three must be present).</p>",
534
- "refs": {
535
- "RunJobFlowInput$Instances": "<p> A specification of the number and type of Amazon EC2 instances on which to run the job flow. </p>"
536
- }
537
- },
538
- "JobFlowInstancesDetail": {
539
- "base": "<p>Specify the type of Amazon EC2 instances to run the job flow on.</p>",
540
- "refs": {
541
- "JobFlowDetail$Instances": "<p>Describes the Amazon EC2 instances of the job flow.</p>"
542
- }
543
- },
544
- "KeyValue": {
545
- "base": "<p>A key value pair.</p>",
546
- "refs": {
547
- "KeyValueList$member": null
548
- }
549
- },
550
- "KeyValueList": {
551
- "base": null,
552
- "refs": {
553
- "HadoopJarStepConfig$Properties": "<p>A list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.</p>"
554
- }
555
- },
556
- "ListBootstrapActionsInput": {
557
- "base": "<p>This input determines which bootstrap actions to retrieve.</p>",
558
- "refs": {
559
- }
560
- },
561
- "ListBootstrapActionsOutput": {
562
- "base": "<p>This output contains the boostrap actions detail .</p>",
563
- "refs": {
564
- }
565
- },
566
- "ListClustersInput": {
567
- "base": "<p>This input determines how the ListClusters action filters the list of clusters that it returns.</p>",
568
- "refs": {
569
- }
570
- },
571
- "ListClustersOutput": {
572
- "base": "<p>This contains a ClusterSummaryList with the cluster details; for example, the cluster IDs, names, and status.</p>",
573
- "refs": {
574
- }
575
- },
576
- "ListInstanceGroupsInput": {
577
- "base": "<p>This input determines which instance groups to retrieve.</p>",
578
- "refs": {
579
- }
580
- },
581
- "ListInstanceGroupsOutput": {
582
- "base": "<p>This input determines which instance groups to retrieve.</p>",
583
- "refs": {
584
- }
585
- },
586
- "ListInstancesInput": {
587
- "base": "<p>This input determines which instances to list.</p>",
588
- "refs": {
589
- }
590
- },
591
- "ListInstancesOutput": {
592
- "base": "<p>This output contains the list of instances.</p>",
593
- "refs": {
594
- }
595
- },
596
- "ListStepsInput": {
597
- "base": "<p>This input determines which steps to list.</p>",
598
- "refs": {
599
- }
600
- },
601
- "ListStepsOutput": {
602
- "base": "<p>This output contains the list of steps.</p>",
603
- "refs": {
604
- }
605
- },
606
- "Marker": {
607
- "base": null,
608
- "refs": {
609
- "ListBootstrapActionsInput$Marker": "<p>The pagination token that indicates the next set of results to retrieve .</p>",
610
- "ListBootstrapActionsOutput$Marker": "<p>The pagination token that indicates the next set of results to retrieve .</p>",
611
- "ListClustersInput$Marker": "<p>The pagination token that indicates the next set of results to retrieve. </p>",
612
- "ListClustersOutput$Marker": "<p>The pagination token that indicates the next set of results to retrieve. </p>",
613
- "ListInstanceGroupsInput$Marker": "<p>The pagination token that indicates the next set of results to retrieve.</p>",
614
- "ListInstanceGroupsOutput$Marker": "<p>The pagination token that indicates the next set of results to retrieve.</p>",
615
- "ListInstancesInput$Marker": "<p>The pagination token that indicates the next set of results to retrieve.</p>",
616
- "ListInstancesOutput$Marker": "<p>The pagination token that indicates the next set of results to retrieve.</p>",
617
- "ListStepsInput$Marker": "<p>The pagination token that indicates the next set of results to retrieve.</p>",
618
- "ListStepsOutput$Marker": "<p>The pagination token that indicates the next set of results to retrieve.</p>"
619
- }
620
- },
621
- "MarketType": {
622
- "base": null,
623
- "refs": {
624
- "InstanceGroup$Market": "<p>The marketplace to provision instances for this group. Valid values are ON_DEMAND or SPOT.</p>",
625
- "InstanceGroupConfig$Market": "<p>Market type of the Amazon EC2 instances used to create a cluster node. </p>",
626
- "InstanceGroupDetail$Market": "<p>Market type of the Amazon EC2 instances used to create a cluster node. </p>"
627
- }
628
- },
629
- "ModifyInstanceGroupsInput": {
630
- "base": "<p>Change the size of some instance groups.</p>",
631
- "refs": {
632
- }
633
- },
634
- "NewSupportedProductsList": {
635
- "base": null,
636
- "refs": {
637
- "RunJobFlowInput$NewSupportedProducts": "<p>A list of strings that indicates third-party software to use with the job flow that accepts a user argument list. EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action arguments. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-mapr.html\">Launch a Job Flow on the MapR Distribution for Hadoop</a>. Currently supported values are:</p> <ul> <li>\"mapr-m3\" - launch the job flow using MapR M3 Edition.</li> <li>\"mapr-m5\" - launch the job flow using MapR M5 Edition.</li> <li>\"mapr\" with the user arguments specifying \"--edition,m3\" or \"--edition,m5\" - launch the job flow using MapR M3 or M5 Edition respectively.</li> </ul>"
638
- }
639
- },
640
- "PlacementType": {
641
- "base": "<p>The Amazon EC2 location for the job flow.</p>",
642
- "refs": {
643
- "JobFlowInstancesConfig$Placement": "<p>The Availability Zone the job flow will run in.</p>",
644
- "JobFlowInstancesDetail$Placement": "<p>The Amazon EC2 Availability Zone for the job flow.</p>"
645
- }
646
- },
647
- "RemoveTagsInput": {
648
- "base": "<p>This input identifies a cluster and a list of tags to remove. </p>",
649
- "refs": {
650
- }
651
- },
652
- "RemoveTagsOutput": {
653
- "base": "<p>This output indicates the result of removing tags from a resource. </p>",
654
- "refs": {
655
- }
656
- },
657
- "ResourceId": {
658
- "base": null,
659
- "refs": {
660
- "AddTagsInput$ResourceId": "<p>The Amazon EMR resource identifier to which tags will be added. This value must be a cluster identifier.</p>",
661
- "RemoveTagsInput$ResourceId": "<p>The Amazon EMR resource identifier from which tags will be removed. This value must be a cluster identifier.</p>"
662
- }
663
- },
664
- "RunJobFlowInput": {
665
- "base": "<p> Input to the <a>RunJobFlow</a> operation. </p>",
666
- "refs": {
667
- }
668
- },
669
- "RunJobFlowOutput": {
670
- "base": "<p> The result of the <a>RunJobFlow</a> operation. </p>",
671
- "refs": {
672
- }
673
- },
674
- "ScriptBootstrapActionConfig": {
675
- "base": "<p>Configuration of the script to run during a bootstrap action.</p>",
676
- "refs": {
677
- "BootstrapActionConfig$ScriptBootstrapAction": "<p>The script run by the bootstrap action.</p>"
678
- }
679
- },
680
- "SecurityGroupsList": {
681
- "base": null,
682
- "refs": {
683
- "JobFlowInstancesConfig$AdditionalMasterSecurityGroups": "<p>A list of additional Amazon EC2 security group IDs for the master node.</p>",
684
- "JobFlowInstancesConfig$AdditionalSlaveSecurityGroups": "<p>A list of additional Amazon EC2 security group IDs for the slave nodes.</p>"
685
- }
686
- },
687
- "SetTerminationProtectionInput": {
688
- "base": "<p> The input argument to the <a>TerminationProtection</a> operation. </p>",
689
- "refs": {
690
- }
691
- },
692
- "SetVisibleToAllUsersInput": {
693
- "base": "<p>The input to the SetVisibleToAllUsers action.</p>",
694
- "refs": {
695
- }
696
- },
697
- "Step": {
698
- "base": "<p>This represents a step in a cluster.</p>",
699
- "refs": {
700
- "DescribeStepOutput$Step": "<p>The step details for the requested step identifier.</p>"
701
- }
702
- },
703
- "StepConfig": {
704
- "base": "<p>Specification of a job flow step.</p>",
705
- "refs": {
706
- "StepConfigList$member": null,
707
- "StepDetail$StepConfig": "<p>The step configuration.</p>"
708
- }
709
- },
710
- "StepConfigList": {
711
- "base": null,
712
- "refs": {
713
- "AddJobFlowStepsInput$Steps": "<p> A list of <a>StepConfig</a> to be executed by the job flow. </p>",
714
- "RunJobFlowInput$Steps": "<p>A list of steps to be executed by the job flow.</p>"
715
- }
716
- },
717
- "StepDetail": {
718
- "base": "<p>Combines the execution state and configuration of a step.</p>",
719
- "refs": {
720
- "StepDetailList$member": null
721
- }
722
- },
723
- "StepDetailList": {
724
- "base": null,
725
- "refs": {
726
- "JobFlowDetail$Steps": "<p>A list of steps run by the job flow.</p>"
727
- }
728
- },
729
- "StepExecutionState": {
730
- "base": null,
731
- "refs": {
732
- "StepExecutionStatusDetail$State": "<p>The state of the job flow step.</p>"
733
- }
734
- },
735
- "StepExecutionStatusDetail": {
736
- "base": "<p>The execution state of a step.</p>",
737
- "refs": {
738
- "StepDetail$ExecutionStatusDetail": "<p>The description of the step status.</p>"
739
- }
740
- },
741
- "StepId": {
742
- "base": null,
743
- "refs": {
744
- "DescribeStepInput$StepId": "<p>The identifier of the step to describe.</p>",
745
- "Step$Id": "<p>The identifier of the cluster step.</p>",
746
- "StepSummary$Id": "<p>The identifier of the cluster step. </p>"
747
- }
748
- },
749
- "StepIdsList": {
750
- "base": null,
751
- "refs": {
752
- "AddJobFlowStepsOutput$StepIds": "<p>The identifiers of the list of steps added to the job flow.</p>"
753
- }
754
- },
755
- "StepState": {
756
- "base": null,
757
- "refs": {
758
- "StepStateList$member": null,
759
- "StepStatus$State": "<p>The execution state of the cluster step. </p>"
760
- }
761
- },
762
- "StepStateChangeReason": {
763
- "base": "<p>The details of the step state change reason. </p>",
764
- "refs": {
765
- "StepStatus$StateChangeReason": "<p>The reason for the step execution status change. </p>"
766
- }
767
- },
768
- "StepStateChangeReasonCode": {
769
- "base": null,
770
- "refs": {
771
- "StepStateChangeReason$Code": "<p>The programmable code for the state change reason. </p>"
772
- }
773
- },
774
- "StepStateList": {
775
- "base": null,
776
- "refs": {
777
- "ListStepsInput$StepStates": "<p>The filter to limit the step list based on certain states.</p>"
778
- }
779
- },
780
- "StepStatus": {
781
- "base": "<p>The execution status details of the cluster step. </p>",
782
- "refs": {
783
- "Step$Status": "<p>The current execution status details of the cluster step. </p>",
784
- "StepSummary$Status": "<p>The current execution status details of the cluster step. </p>"
785
- }
786
- },
787
- "StepSummary": {
788
- "base": "<p>The summary of the cluster step.</p>",
789
- "refs": {
790
- "StepSummaryList$member": null
791
- }
792
- },
793
- "StepSummaryList": {
794
- "base": null,
795
- "refs": {
796
- "ListStepsOutput$Steps": "<p>The filtered list of steps for the cluster.</p>"
797
- }
798
- },
799
- "StepTimeline": {
800
- "base": "<p>The timeline of the cluster step lifecycle. </p>",
801
- "refs": {
802
- "StepStatus$Timeline": "<p>The timeline of the cluster step status over time. </p>"
803
- }
804
- },
805
- "String": {
806
- "base": null,
807
- "refs": {
808
- "Application$Name": "<p>The name of the application.</p>",
809
- "Application$Version": "<p>The version of the application.</p>",
810
- "Cluster$Name": "<p>The name of the cluster.</p>",
811
- "Cluster$LogUri": "<p>The path to the Amazon S3 location where logs for this cluster are stored.</p>",
812
- "Cluster$RequestedAmiVersion": "<p>The AMI version requested for this cluster.</p>",
813
- "Cluster$RunningAmiVersion": "<p>The AMI version running on this cluster. This differs from the requested version only if the requested version is a meta version, such as \"latest\". </p>",
814
- "Cluster$ServiceRole": "<p>The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.</p>",
815
- "Cluster$MasterPublicDnsName": "<p>The public DNS name of the master Ec2 instance.</p>",
816
- "ClusterStateChangeReason$Message": "<p>The descriptive message for the state change reason.</p>",
817
- "ClusterSummary$Name": "<p>The name of the cluster.</p>",
818
- "Command$Name": "<p>The name of the command.</p>",
819
- "Command$ScriptPath": "<p>The Amazon S3 location of the command script.</p>",
820
- "Ec2InstanceAttributes$Ec2KeyName": "<p>The name of the Amazon EC2 key pair to use when connecting with SSH into the master node as a user named \"hadoop\".</p>",
821
- "Ec2InstanceAttributes$Ec2SubnetId": "<p> To launch the job flow in Amazon VPC, set this parameter to the identifier of the Amazon VPC subnet where you want the job flow to launch. If you do not specify this value, the job flow is launched in the normal AWS cloud, outside of a VPC. </p> <p> Amazon VPC currently does not support cluster compute quadruple extra large (cc1.4xlarge) instances. Thus, you cannot specify the cc1.4xlarge instance type for nodes of a job flow launched in a VPC. </p>",
822
- "Ec2InstanceAttributes$Ec2AvailabilityZone": "<p>The Availability Zone in which the cluster will run.</p>",
823
- "Ec2InstanceAttributes$IamInstanceProfile": "<p>The IAM role that was specified when the job flow was launched. The EC2 instances of the job flow assume this role.</p>",
824
- "Ec2InstanceAttributes$EmrManagedMasterSecurityGroup": "<p>The identifier of the Amazon EC2 security group (managed by Amazon Elastic MapReduce) for the master node.</p>",
825
- "Ec2InstanceAttributes$EmrManagedSlaveSecurityGroup": "<p>The identifier of the Amazon EC2 security group (managed by Amazon Elastic MapReduce) for the slave nodes.</p>",
826
- "HadoopStepConfig$Jar": "<p>The path to the JAR file that runs during the step.</p>",
827
- "HadoopStepConfig$MainClass": "<p>The name of the main class in the specified Java file. If not specified, the JAR file should specify a main class in its manifest file.</p>",
828
- "Instance$PublicDnsName": "<p>The public DNS name of the instance.</p>",
829
- "Instance$PublicIpAddress": "<p>The public IP address of the instance.</p>",
830
- "Instance$PrivateDnsName": "<p>The private DNS name of the instance.</p>",
831
- "Instance$PrivateIpAddress": "<p>The private IP address of the instance.</p>",
832
- "InstanceGroup$Name": "<p>The name of the instance group.</p>",
833
- "InstanceGroup$BidPrice": "<p>The bid price for each EC2 instance in the instance group when launching nodes as Spot Instances, expressed in USD.</p>",
834
- "InstanceGroupStateChangeReason$Message": "<p>The status change reason description.</p>",
835
- "InstanceStateChangeReason$Message": "<p>The status change reason description.</p>",
836
- "Step$Name": "<p>The name of the cluster step.</p>",
837
- "StepStateChangeReason$Message": "<p>The descriptive message for the state change reason. </p>",
838
- "StepSummary$Name": "<p>The name of the cluster step. </p>",
839
- "StringList$member": null,
840
- "StringMap$key": null,
841
- "StringMap$value": null,
842
- "Tag$Key": "<p>A user-defined key, which is the minimum required information for a valid tag. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html\">Tagging Amazon EMR Resources</a>. </p>",
843
- "Tag$Value": "<p>A user-defined value, which is optional in a tag. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html\">Tagging Amazon EMR Resources</a>. </p>"
844
- }
845
- },
846
- "StringList": {
847
- "base": null,
848
- "refs": {
849
- "Application$Args": "<p>Arguments for Amazon EMR to pass to the application.</p>",
850
- "Command$Args": "<p>Arguments for Amazon EMR to pass to the command for execution.</p>",
851
- "Ec2InstanceAttributes$AdditionalMasterSecurityGroups": "<p>A list of additional Amazon EC2 security group IDs for the master node.</p>",
852
- "Ec2InstanceAttributes$AdditionalSlaveSecurityGroups": "<p>A list of additional Amazon EC2 security group IDs for the slave nodes.</p>",
853
- "HadoopStepConfig$Args": "<p>The list of command line arguments to pass to the JAR file's main function for execution.</p>",
854
- "RemoveTagsInput$TagKeys": "<p>A list of tag keys to remove from a resource.</p>"
855
- }
856
- },
857
- "StringMap": {
858
- "base": null,
859
- "refs": {
860
- "Application$AdditionalInfo": "<p>This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.</p>",
861
- "HadoopStepConfig$Properties": "<p>The list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.</p>"
862
- }
863
- },
864
- "SupportedProductConfig": {
865
- "base": "<p>The list of supported product configurations which allow user-supplied arguments. EMR accepts these arguments and forwards them to the corresponding installation script as bootstrap action arguments. </p>",
866
- "refs": {
867
- "NewSupportedProductsList$member": null
868
- }
869
- },
870
- "SupportedProductsList": {
871
- "base": null,
872
- "refs": {
873
- "JobFlowDetail$SupportedProducts": "<p>A list of strings set by third party software when the job flow is launched. If you are not using third party software to manage the job flow this value is empty.</p>",
874
- "RunJobFlowInput$SupportedProducts": "<p>A list of strings that indicates third-party software to use with the job flow. For more information, go to <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-supported-products.html\">Use Third Party Applications with Amazon EMR</a>. Currently supported values are:</p> <ul> <li>\"mapr-m3\" - launch the job flow using MapR M3 Edition.</li> <li>\"mapr-m5\" - launch the job flow using MapR M5 Edition.</li> </ul>"
875
- }
876
- },
877
- "Tag": {
878
- "base": "<p>A key/value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clu\\ sters to track your Amazon EMR resource allocation costs. For more information, see <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/emr-plan-tags.html\">Tagging Amazon EMR Resources</a>. </p>",
879
- "refs": {
880
- "TagList$member": null
881
- }
882
- },
883
- "TagList": {
884
- "base": null,
885
- "refs": {
886
- "AddTagsInput$Tags": "<p>A list of tags to associate with a cluster and propagate to Amazon EC2 instances. Tags are user-defined key/value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.</p>",
887
- "Cluster$Tags": "<p>A list of tags associated with a cluster.</p>",
888
- "RunJobFlowInput$Tags": "<p>A list of tags to associate with a cluster and propagate to Amazon EC2 instances.</p>"
889
- }
890
- },
891
- "TerminateJobFlowsInput": {
892
- "base": "<p> Input to the <a>TerminateJobFlows</a> operation. </p>",
893
- "refs": {
894
- }
895
- },
896
- "XmlString": {
897
- "base": null,
898
- "refs": {
899
- "HadoopJarStepConfig$Jar": "<p>A path to a JAR file run during the step.</p>",
900
- "HadoopJarStepConfig$MainClass": "<p>The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file.</p>",
901
- "InstanceGroupDetail$LastStateChangeReason": "<p>Details regarding the state of the instance group. </p>",
902
- "JobFlowDetail$LogUri": "<p>The location in Amazon S3 where log files for the job are stored. </p>",
903
- "JobFlowDetail$JobFlowRole": "<p>The IAM role that was specified when the job flow was launched. The EC2 instances of the job flow assume this role.</p>",
904
- "JobFlowDetail$ServiceRole": "<p>The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.</p>",
905
- "JobFlowExecutionStatusDetail$LastStateChangeReason": "<p>Description of the job flow last changed state.</p>",
906
- "JobFlowInstancesDetail$MasterPublicDnsName": "<p>The DNS name of the master node.</p>",
907
- "JobFlowInstancesDetail$MasterInstanceId": "<p>The Amazon EC2 instance identifier of the master node.</p>",
908
- "KeyValue$Key": "<p>The unique identifier of a key value pair.</p>",
909
- "KeyValue$Value": "<p>The value part of the identified key.</p>",
910
- "PlacementType$AvailabilityZone": "<p>The Amazon EC2 Availability Zone for the job flow.</p>",
911
- "RunJobFlowInput$LogUri": "<p>The location in Amazon S3 to write the log files of the job flow. If a value is not provided, logs are not created.</p>",
912
- "RunJobFlowInput$AdditionalInfo": "<p>A JSON string for selecting additional features.</p>",
913
- "RunJobFlowInput$JobFlowRole": "<p>An IAM role for the job flow. The EC2 instances of the job flow assume this role. The default role is <code>EMRJobflowDefault</code>. In order to use the default role, you must have already created it using the CLI.</p>",
914
- "RunJobFlowInput$ServiceRole": "<p>The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.</p>",
915
- "ScriptBootstrapActionConfig$Path": "<p>Location of the script to run during a bootstrap action. Can be either a location in Amazon S3 or on a local file system.</p>",
916
- "StepExecutionStatusDetail$LastStateChangeReason": "<p>A description of the step's current state.</p>",
917
- "XmlStringList$member": null
918
- }
919
- },
920
- "XmlStringList": {
921
- "base": null,
922
- "refs": {
923
- "DescribeJobFlowsInput$JobFlowIds": "<p>Return only job flows whose job flow ID is contained in this list. </p>",
924
- "HadoopJarStepConfig$Args": "<p>A list of command line arguments passed to the JAR file's main function when executed.</p>",
925
- "ListStepsInput$StepIds": "<p>The filter to limit the step list based on the identifier of the steps.</p>",
926
- "ScriptBootstrapActionConfig$Args": "<p>A list of command line arguments to pass to the bootstrap action script.</p>",
927
- "SetTerminationProtectionInput$JobFlowIds": "<p> A list of strings that uniquely identify the job flows to protect. This identifier is returned by <a>RunJobFlow</a> and can also be obtained from <a>DescribeJobFlows</a> . </p>",
928
- "SetVisibleToAllUsersInput$JobFlowIds": "<p>Identifiers of the job flows to receive the new visibility setting.</p>",
929
- "SupportedProductConfig$Args": "<p>The list of user-supplied arguments.</p>",
930
- "TerminateJobFlowsInput$JobFlowIds": "<p>A list of job flows to be shutdown.</p>"
931
- }
932
- },
933
- "XmlStringMaxLen256": {
934
- "base": null,
935
- "refs": {
936
- "AddInstanceGroupsInput$JobFlowId": "<p>Job flow in which to add the instance groups.</p>",
937
- "AddInstanceGroupsOutput$JobFlowId": "<p>The job flow ID in which the instance groups are added.</p>",
938
- "AddJobFlowStepsInput$JobFlowId": "<p>A string that uniquely identifies the job flow. This identifier is returned by <a>RunJobFlow</a> and can also be obtained from <a>ListClusters</a>. </p>",
939
- "BootstrapActionConfig$Name": "<p>The name of the bootstrap action.</p>",
940
- "InstanceGroupConfig$Name": "<p>Friendly name given to the instance group.</p>",
941
- "InstanceGroupConfig$BidPrice": "<p>Bid price for each Amazon EC2 instance in the instance group when launching nodes as Spot Instances, expressed in USD.</p>",
942
- "InstanceGroupDetail$InstanceGroupId": "<p>Unique identifier for the instance group. </p>",
943
- "InstanceGroupDetail$Name": "<p>Friendly name for the instance group. </p>",
944
- "InstanceGroupDetail$BidPrice": "<p>Bid price for EC2 Instances when launching nodes as Spot Instances, expressed in USD.</p>",
945
- "InstanceGroupIdsList$member": null,
946
- "InstanceGroupModifyConfig$InstanceGroupId": "<p>Unique ID of the instance group to expand or shrink.</p>",
947
- "JobFlowDetail$JobFlowId": "<p>The job flow identifier.</p>",
948
- "JobFlowDetail$Name": "<p>The name of the job flow.</p>",
949
- "JobFlowDetail$AmiVersion": "<p>The version of the AMI used to initialize Amazon EC2 instances in the job flow. For a list of AMI versions currently supported by Amazon ElasticMapReduce, go to <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/EnvironmentConfig_AMIVersion.html#ami-versions-supported\">AMI Versions Supported in Elastic MapReduce</a> in the <i>Amazon Elastic MapReduce Developer's Guide.</i></p>",
950
- "JobFlowInstancesConfig$Ec2KeyName": "<p>The name of the Amazon EC2 key pair that can be used to ssh to the master node as the user called \"hadoop.\"</p>",
951
- "JobFlowInstancesConfig$HadoopVersion": "<p>The Hadoop version for the job flow. Valid inputs are \"0.18\", \"0.20\", \"0.20.205\", \"1.0.3\", \"2.2.0\", or \"2.4.0\". If you do not set this value, the default of 0.18 is used, unless the AmiVersion parameter is set in the RunJobFlow call, in which case the default version of Hadoop for that AMI version is used.</p>",
952
- "JobFlowInstancesConfig$Ec2SubnetId": "<p> To launch the job flow in Amazon Virtual Private Cloud (Amazon VPC), set this parameter to the identifier of the Amazon VPC subnet where you want the job flow to launch. If you do not specify this value, the job flow is launched in the normal Amazon Web Services cloud, outside of an Amazon VPC. </p> <p> Amazon VPC currently does not support cluster compute quadruple extra large (cc1.4xlarge) instances. Thus you cannot specify the cc1.4xlarge instance type for nodes of a job flow launched in a Amazon VPC. </p>",
953
- "JobFlowInstancesConfig$EmrManagedMasterSecurityGroup": "<p>The identifier of the Amazon EC2 security group (managed by Amazon ElasticMapReduce) for the master node.</p>",
954
- "JobFlowInstancesConfig$EmrManagedSlaveSecurityGroup": "<p>The identifier of the Amazon EC2 security group (managed by Amazon ElasticMapReduce) for the slave nodes.</p>",
955
- "JobFlowInstancesDetail$Ec2KeyName": "<p>The name of an Amazon EC2 key pair that can be used to ssh to the master node of job flow.</p>",
956
- "JobFlowInstancesDetail$Ec2SubnetId": "<p>For job flows launched within Amazon Virtual Private Cloud, this value specifies the identifier of the subnet where the job flow was launched.</p>",
957
- "JobFlowInstancesDetail$HadoopVersion": "<p>The Hadoop version for the job flow.</p>",
958
- "RunJobFlowInput$Name": "<p>The name of the job flow.</p>",
959
- "RunJobFlowInput$AmiVersion": "<p>The version of the Amazon Machine Image (AMI) to use when launching Amazon EC2 instances in the job flow. The following values are valid: </p> <ul> <li>\"latest\" (uses the latest AMI)</li> <li>The version number of the AMI to use, for example, \"2.0\"</li> </ul> <p>If the AMI supports multiple versions of Hadoop (for example, AMI 1.0 supports both Hadoop 0.18 and 0.20) you can use the <a>JobFlowInstancesConfig</a> <code>HadoopVersion</code> parameter to modify the version of Hadoop from the defaults shown above.</p> <p>For details about the AMI versions currently supported by Amazon Elastic MapReduce, go to <a href=\"http://docs.aws.amazon.com/ElasticMapReduce/latest/DeveloperGuide/EnvironmentConfig_AMIVersion.html#ami-versions-supported\">AMI Versions Supported in Elastic MapReduce</a> in the <i>Amazon Elastic MapReduce Developer's Guide.</i> </p>",
960
- "RunJobFlowOutput$JobFlowId": "<p>An unique identifier for the job flow.</p>",
961
- "SecurityGroupsList$member": null,
962
- "StepConfig$Name": "<p>The name of the job flow step.</p>",
963
- "StepIdsList$member": null,
964
- "SupportedProductConfig$Name": "<p>The name of the product configuration.</p>",
965
- "SupportedProductsList$member": null
966
- }
967
- }
968
- }
969
- }