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,1261 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AddTagsToOnPremisesInstances": "<p>Adds tags to on-premises instances.</p>",
5
- "BatchGetApplications": "<p>Gets information about one or more applications.</p>",
6
- "BatchGetDeployments": "<p>Gets information about one or more deployments.</p>",
7
- "BatchGetOnPremisesInstances": "<p>Gets information about one or more on-premises instances.</p>",
8
- "CreateApplication": "<p>Creates a new application.</p>",
9
- "CreateDeployment": "<p>Deploys an application revision through the specified deployment group.</p>",
10
- "CreateDeploymentConfig": "<p>Creates a new deployment configuration.</p>",
11
- "CreateDeploymentGroup": "<p>Creates a new deployment group for application revisions to be deployed to.</p>",
12
- "DeleteApplication": "<p>Deletes an application.</p>",
13
- "DeleteDeploymentConfig": "<p>Deletes a deployment configuration.</p> <note>A deployment configuration cannot be deleted if it is currently in use. Also, predefined configurations cannot be deleted.</note>",
14
- "DeleteDeploymentGroup": "<p>Deletes a deployment group.</p>",
15
- "DeregisterOnPremisesInstance": "<p>Deregisters an on-premises instance.</p>",
16
- "GetApplication": "<p>Gets information about an application.</p>",
17
- "GetApplicationRevision": "<p>Gets information about an application revision.</p>",
18
- "GetDeployment": "<p>Gets information about a deployment.</p>",
19
- "GetDeploymentConfig": "<p>Gets information about a deployment configuration.</p>",
20
- "GetDeploymentGroup": "<p>Gets information about a deployment group.</p>",
21
- "GetDeploymentInstance": "<p>Gets information about an instance as part of a deployment.</p>",
22
- "GetOnPremisesInstance": "<p>Gets information about an on-premises instance.</p>",
23
- "ListApplicationRevisions": "<p>Lists information about revisions for an application.</p>",
24
- "ListApplications": "<p>Lists the applications registered with the applicable IAM user or AWS account.</p>",
25
- "ListDeploymentConfigs": "<p>Lists the deployment configurations with the applicable IAM user or AWS account.</p>",
26
- "ListDeploymentGroups": "<p>Lists the deployment groups for an application registered with the applicable IAM user or AWS account.</p>",
27
- "ListDeploymentInstances": "<p>Lists the instances for a deployment associated with the applicable IAM user or AWS account.</p>",
28
- "ListDeployments": "<p>Lists the deployments within a deployment group for an application registered with the applicable IAM user or AWS account.</p>",
29
- "ListOnPremisesInstances": "<p>Gets a list of one or more on-premises instance names.</p> <p>Unless otherwise specified, both registered and deregistered on-premises instance names will be listed. To list only registered or deregistered on-premises instance names, use the registration status parameter.</p>",
30
- "RegisterApplicationRevision": "<p>Registers with AWS CodeDeploy a revision for the specified application.</p>",
31
- "RegisterOnPremisesInstance": "<p>Registers an on-premises instance.</p>",
32
- "RemoveTagsFromOnPremisesInstances": "<p>Removes one or more tags from one or more on-premises instances.</p>",
33
- "StopDeployment": "<p>Attempts to stop an ongoing deployment.</p>",
34
- "UpdateApplication": "<p>Changes an existing application's name.</p>",
35
- "UpdateDeploymentGroup": "<p>Changes information about an existing deployment group.</p>"
36
- },
37
- "service": "<fullname>AWS CodeDeploy</fullname> <b>Overview</b> <p>This is the AWS CodeDeploy API Reference. This guide provides descriptions of the AWS CodeDeploy APIs. For additional information, see the <a href=\"http://docs.aws.amazon.com/codedeploy/latest/userguide\">AWS CodeDeploy User Guide</a>.</p> <b>Using the APIs</b> <p>You can use the AWS CodeDeploy APIs to work with the following items:</p> <ul> <li> <p>Applications are unique identifiers that AWS CodeDeploy uses to ensure that the correct combinations of revisions, deployment configurations, and deployment groups are being referenced during deployments.</p> <p>You can use the AWS CodeDeploy APIs to create, delete, get, list, and update applications.</p> </li> <li> <p>Deployment configurations are sets of deployment rules and deployment success and failure conditions that AWS CodeDeploy uses during deployments.</p> <p>You can use the AWS CodeDeploy APIs to create, delete, get, and list deployment configurations.</p> </li> <li> <p>Deployment groups are groups of instances to which application revisions can be deployed.</p> <p>You can use the AWS CodeDeploy APIs to create, delete, get, list, and update deployment groups.</p> </li> <li> <p>Instances represent Amazon EC2 instances to which application revisions are deployed. Instances are identified by their Amazon EC2 tags or Auto Scaling group names. Instances belong to deployment groups.</p> <p>You can use the AWS CodeDeploy APIs to get and list instances.</p> </li> <li> <p>Deployments represent the process of deploying revisions to instances.</p> <p>You can use the AWS CodeDeploy APIs to create, get, list, and stop deployments.</p> </li> <li> <p>Application revisions are archive files that are stored in Amazon S3 buckets or GitHub repositories. These revisions contain source content (such as source code, web pages, executable files, any deployment scripts, and similar) along with an Application Specification file (AppSpec file). (The AppSpec file is unique to AWS CodeDeploy; it defines a series of deployment actions that you want AWS CodeDeploy to execute.) An application revision is uniquely identified by its Amazon S3 object key and its ETag, version, or both (for application revisions that are stored in Amazon S3 buckets) or by its repository name and commit ID (for applications revisions that are stored in GitHub repositories). Application revisions are deployed through deployment groups.</p> <p>You can use the AWS CodeDeploy APIs to get, list, and register application revisions.</p> </li> </ul>",
38
- "shapes": {
39
- "AddTagsToOnPremisesInstancesInput": {
40
- "base": "<p>Represents the input of an adds tags to on-premises instance operation.</p>",
41
- "refs": {
42
- }
43
- },
44
- "ApplicationAlreadyExistsException": {
45
- "base": "<p>An application with the specified name already exists with the applicable IAM user or AWS account.</p>",
46
- "refs": {
47
- }
48
- },
49
- "ApplicationDoesNotExistException": {
50
- "base": "<p>The application does not exist with the applicable IAM user or AWS account.</p>",
51
- "refs": {
52
- }
53
- },
54
- "ApplicationId": {
55
- "base": null,
56
- "refs": {
57
- "ApplicationInfo$applicationId": "<p>The application ID.</p>",
58
- "CreateApplicationOutput$applicationId": "<p>A unique application ID.</p>"
59
- }
60
- },
61
- "ApplicationInfo": {
62
- "base": "<p>Information about an application.</p>",
63
- "refs": {
64
- "ApplicationsInfoList$member": null,
65
- "GetApplicationOutput$application": "<p>Information about the application.</p>"
66
- }
67
- },
68
- "ApplicationLimitExceededException": {
69
- "base": "<p>More applications were attempted to be created than were allowed.</p>",
70
- "refs": {
71
- }
72
- },
73
- "ApplicationName": {
74
- "base": null,
75
- "refs": {
76
- "ApplicationInfo$applicationName": "<p>The application name.</p>",
77
- "ApplicationsList$member": null,
78
- "CreateApplicationInput$applicationName": "<p>The name of the application. This name must be unique with the applicable IAM user or AWS account.</p>",
79
- "CreateDeploymentGroupInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
80
- "CreateDeploymentInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
81
- "DeleteApplicationInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
82
- "DeleteDeploymentGroupInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
83
- "DeploymentGroupInfo$applicationName": "<p>The application name.</p>",
84
- "DeploymentInfo$applicationName": "<p>The application name.</p>",
85
- "GetApplicationInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
86
- "GetApplicationRevisionInput$applicationName": "<p>The name of the application that corresponds to the revision.</p>",
87
- "GetApplicationRevisionOutput$applicationName": "<p>The name of the application that corresponds to the revision.</p>",
88
- "GetDeploymentGroupInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
89
- "ListApplicationRevisionsInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
90
- "ListDeploymentGroupsInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
91
- "ListDeploymentGroupsOutput$applicationName": "<p>The application name.</p>",
92
- "ListDeploymentsInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
93
- "RegisterApplicationRevisionInput$applicationName": "<p>The name of an existing AWS CodeDeploy application associated with the applicable IAM user or AWS account.</p>",
94
- "UpdateApplicationInput$applicationName": "<p>The current name of the application that you want to change.</p>",
95
- "UpdateApplicationInput$newApplicationName": "<p>The new name that you want to change the application to.</p>",
96
- "UpdateDeploymentGroupInput$applicationName": "<p>The application name corresponding to the deployment group to update.</p>"
97
- }
98
- },
99
- "ApplicationNameRequiredException": {
100
- "base": "<p>The minimum number of required application names was not specified.</p>",
101
- "refs": {
102
- }
103
- },
104
- "ApplicationRevisionSortBy": {
105
- "base": null,
106
- "refs": {
107
- "ListApplicationRevisionsInput$sortBy": "<p>The column name to sort the list results by:</p> <ul> <li>registerTime: Sort the list results by when the revisions were registered with AWS CodeDeploy.</li> <li>firstUsedTime: Sort the list results by when the revisions were first used by in a deployment.</li> <li>lastUsedTime: Sort the list results by when the revisions were last used in a deployment.</li> </ul> <p>If not specified or set to null, the results will be returned in an arbitrary order.</p>"
108
- }
109
- },
110
- "ApplicationsInfoList": {
111
- "base": null,
112
- "refs": {
113
- "BatchGetApplicationsOutput$applicationsInfo": "<p>Information about the applications.</p>"
114
- }
115
- },
116
- "ApplicationsList": {
117
- "base": null,
118
- "refs": {
119
- "BatchGetApplicationsInput$applicationNames": "<p>A list of application names, with multiple application names separated by spaces.</p>",
120
- "ListApplicationsOutput$applications": "<p>A list of application names.</p>"
121
- }
122
- },
123
- "AutoScalingGroup": {
124
- "base": "<p>Information about an Auto Scaling group.</p>",
125
- "refs": {
126
- "AutoScalingGroupList$member": null
127
- }
128
- },
129
- "AutoScalingGroupHook": {
130
- "base": null,
131
- "refs": {
132
- "AutoScalingGroup$hook": "<p>An Auto Scaling lifecycle event hook name.</p>"
133
- }
134
- },
135
- "AutoScalingGroupList": {
136
- "base": null,
137
- "refs": {
138
- "DeleteDeploymentGroupOutput$hooksNotCleanedUp": "<p>If the output contains no data, and the corresponding deployment group contained at least one Auto Scaling group, AWS CodeDeploy successfully removed all corresponding Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto Scaling. If the output does contain data, AWS CodeDeploy could not remove some Auto Scaling lifecycle event hooks from the Amazon EC2 instances in the Auto Scaling group.</p>",
139
- "DeploymentGroupInfo$autoScalingGroups": "<p>A list of associated Auto Scaling groups.</p>",
140
- "UpdateDeploymentGroupOutput$hooksNotCleanedUp": "<p>If the output contains no data, and the corresponding deployment group contained at least one Auto Scaling group, AWS CodeDeploy successfully removed all corresponding Auto Scaling lifecycle event hooks from the AWS account. If the output does contain data, AWS CodeDeploy could not remove some Auto Scaling lifecycle event hooks from the AWS account.</p>"
141
- }
142
- },
143
- "AutoScalingGroupName": {
144
- "base": null,
145
- "refs": {
146
- "AutoScalingGroup$name": "<p>The Auto Scaling group name.</p>",
147
- "AutoScalingGroupNameList$member": null
148
- }
149
- },
150
- "AutoScalingGroupNameList": {
151
- "base": null,
152
- "refs": {
153
- "CreateDeploymentGroupInput$autoScalingGroups": "<p>A list of associated Auto Scaling groups.</p>",
154
- "UpdateDeploymentGroupInput$autoScalingGroups": "<p>The replacement list of Auto Scaling groups to be included in the deployment group, if you want to change them.</p>"
155
- }
156
- },
157
- "BatchGetApplicationsInput": {
158
- "base": "<p>Represents the input of a batch get applications operation.</p>",
159
- "refs": {
160
- }
161
- },
162
- "BatchGetApplicationsOutput": {
163
- "base": "<p>Represents the output of a batch get applications operation.</p>",
164
- "refs": {
165
- }
166
- },
167
- "BatchGetDeploymentsInput": {
168
- "base": "<p>Represents the input of a batch get deployments operation.</p>",
169
- "refs": {
170
- }
171
- },
172
- "BatchGetDeploymentsOutput": {
173
- "base": "<p>Represents the output of a batch get deployments operation.</p>",
174
- "refs": {
175
- }
176
- },
177
- "BatchGetOnPremisesInstancesInput": {
178
- "base": "<p>Represents the input of a batch get on-premises instances operation.</p>",
179
- "refs": {
180
- }
181
- },
182
- "BatchGetOnPremisesInstancesOutput": {
183
- "base": "<p>Represents the output of a batch get on-premises instances operation.</p>",
184
- "refs": {
185
- }
186
- },
187
- "Boolean": {
188
- "base": null,
189
- "refs": {
190
- "ApplicationInfo$linkedToGitHub": "<p>True if the user has authenticated with GitHub for the specified application; otherwise, false.</p>",
191
- "CreateDeploymentInput$ignoreApplicationStopFailures": "<p>If set to true, then if the deployment causes the ApplicationStop deployment lifecycle event to fail to a specific instance, the deployment will not be considered to have failed to that instance at that point and will continue on to the BeforeInstall deployment lifecycle event.</p> <p>If set to false or not specified, then if the deployment causes the ApplicationStop deployment lifecycle event to fail to a specific instance, the deployment will stop to that instance, and the deployment to that instance will be considered to have failed.</p>",
192
- "DeploymentInfo$ignoreApplicationStopFailures": "<p>If true, then if the deployment causes the ApplicationStop deployment lifecycle event to fail to a specific instance, the deployment will not be considered to have failed to that instance at that point and will continue on to the BeforeInstall deployment lifecycle event.</p> <p>If false or not specified, then if the deployment causes the ApplicationStop deployment lifecycle event to fail to a specific instance, the deployment will stop to that instance, and the deployment to that instance will be considered to have failed.</p>"
193
- }
194
- },
195
- "BucketNameFilterRequiredException": {
196
- "base": "<p>A bucket name is required but was not provided.</p>",
197
- "refs": {
198
- }
199
- },
200
- "BundleType": {
201
- "base": null,
202
- "refs": {
203
- "S3Location$bundleType": "<p>The file type of the application revision. Must be one of the following:</p> <ul> <li>tar: A tar archive file.</li> <li>tgz: A compressed tar archive file.</li> <li>zip: A zip archive file.</li> </ul>"
204
- }
205
- },
206
- "CommitId": {
207
- "base": null,
208
- "refs": {
209
- "GitHubLocation$commitId": "<p>The SHA1 commit ID of the GitHub commit that references the that represents the bundled artifacts for the application revision.</p>"
210
- }
211
- },
212
- "CreateApplicationInput": {
213
- "base": "<p>Represents the input of a create application operation.</p>",
214
- "refs": {
215
- }
216
- },
217
- "CreateApplicationOutput": {
218
- "base": "<p>Represents the output of a create application operation.</p>",
219
- "refs": {
220
- }
221
- },
222
- "CreateDeploymentConfigInput": {
223
- "base": "<p>Represents the input of a create deployment configuration operation.</p>",
224
- "refs": {
225
- }
226
- },
227
- "CreateDeploymentConfigOutput": {
228
- "base": "<p>Represents the output of a create deployment configuration operation.</p>",
229
- "refs": {
230
- }
231
- },
232
- "CreateDeploymentGroupInput": {
233
- "base": "<p>Represents the input of a create deployment group operation.</p>",
234
- "refs": {
235
- }
236
- },
237
- "CreateDeploymentGroupOutput": {
238
- "base": "<p>Represents the output of a create deployment group operation.</p>",
239
- "refs": {
240
- }
241
- },
242
- "CreateDeploymentInput": {
243
- "base": "<p>Represents the input of a create deployment operation.</p>",
244
- "refs": {
245
- }
246
- },
247
- "CreateDeploymentOutput": {
248
- "base": "<p>Represents the output of a create deployment operation.</p>",
249
- "refs": {
250
- }
251
- },
252
- "DeleteApplicationInput": {
253
- "base": "<p>Represents the input of a delete application operation.</p>",
254
- "refs": {
255
- }
256
- },
257
- "DeleteDeploymentConfigInput": {
258
- "base": "<p>Represents the input of a delete deployment configuration operation.</p>",
259
- "refs": {
260
- }
261
- },
262
- "DeleteDeploymentGroupInput": {
263
- "base": "<p>Represents the input of a delete deployment group operation.</p>",
264
- "refs": {
265
- }
266
- },
267
- "DeleteDeploymentGroupOutput": {
268
- "base": "<p>Represents the output of a delete deployment group operation.</p>",
269
- "refs": {
270
- }
271
- },
272
- "DeploymentAlreadyCompletedException": {
273
- "base": "<p>The deployment is already completed.</p>",
274
- "refs": {
275
- }
276
- },
277
- "DeploymentConfigAlreadyExistsException": {
278
- "base": "<p>A deployment configuration with the specified name already exists with the applicable IAM user or AWS account.</p>",
279
- "refs": {
280
- }
281
- },
282
- "DeploymentConfigDoesNotExistException": {
283
- "base": "<p>The deployment configuration does not exist with the applicable IAM user or AWS account.</p>",
284
- "refs": {
285
- }
286
- },
287
- "DeploymentConfigId": {
288
- "base": null,
289
- "refs": {
290
- "CreateDeploymentConfigOutput$deploymentConfigId": "<p>A unique deployment configuration ID.</p>",
291
- "DeploymentConfigInfo$deploymentConfigId": "<p>The deployment configuration ID.</p>"
292
- }
293
- },
294
- "DeploymentConfigInUseException": {
295
- "base": "<p>The deployment configuration is still in use.</p>",
296
- "refs": {
297
- }
298
- },
299
- "DeploymentConfigInfo": {
300
- "base": "<p>Information about a deployment configuration.</p>",
301
- "refs": {
302
- "GetDeploymentConfigOutput$deploymentConfigInfo": "<p>Information about the deployment configuration.</p>"
303
- }
304
- },
305
- "DeploymentConfigLimitExceededException": {
306
- "base": "<p>The deployment configurations limit was exceeded.</p>",
307
- "refs": {
308
- }
309
- },
310
- "DeploymentConfigName": {
311
- "base": null,
312
- "refs": {
313
- "CreateDeploymentConfigInput$deploymentConfigName": "<p>The name of the deployment configuration to create.</p>",
314
- "CreateDeploymentGroupInput$deploymentConfigName": "<p>If specified, the deployment configuration name must be one of the predefined values, or it can be a custom deployment configuration:</p> <ul> <li>CodeDeployDefault.AllAtOnce deploys an application revision to up to all of the instances at once. The overall deployment succeeds if the application revision deploys to at least one of the instances. The overall deployment fails after the application revision fails to deploy to all of the instances. For example, for 9 instances, deploy to up to all 9 instances at once. The overall deployment succeeds if any of the 9 instances is successfully deployed to, and it fails if all 9 instances fail to be deployed to.</li> <li>CodeDeployDefault.HalfAtATime deploys to up to half of the instances at a time (with fractions rounded down). The overall deployment succeeds if the application revision deploys to at least half of the instances (with fractions rounded up); otherwise, the deployment fails. For example, for 9 instances, deploy to up to 4 instances at a time. The overall deployment succeeds if 5 or more instances are successfully deployed to; otherwise, the deployment fails. Note that the deployment may successfully deploy to some instances, even if the overall deployment fails.</li> <li>CodeDeployDefault.OneAtATime deploys the application revision to only one of the instances at a time. The overall deployment succeeds if the application revision deploys to all of the instances. The overall deployment fails after the application revision first fails to deploy to any one instances. For example, for 9 instances, deploy to one instance at a time. The overall deployment succeeds if all 9 instances are successfully deployed to, and it fails if any of one of the 9 instances fail to be deployed to. Note that the deployment may successfully deploy to some instances, even if the overall deployment fails. This is the default deployment configuration if a configuration isn't specified for either the deployment or the deployment group.</li> </ul> <p>To create a custom deployment configuration, call the create deployment configuration operation.</p>",
315
- "CreateDeploymentInput$deploymentConfigName": "<p>The name of an existing deployment configuration associated with the applicable IAM user or AWS account.</p> <p>If not specified, the value configured in the deployment group will be used as the default. If the deployment group does not have a deployment configuration associated with it, then CodeDeployDefault.OneAtATime will be used by default.</p>",
316
- "DeleteDeploymentConfigInput$deploymentConfigName": "<p>The name of an existing deployment configuration associated with the applicable IAM user or AWS account.</p>",
317
- "DeploymentConfigInfo$deploymentConfigName": "<p>The deployment configuration name.</p>",
318
- "DeploymentConfigsList$member": null,
319
- "DeploymentGroupInfo$deploymentConfigName": "<p>The deployment configuration name.</p>",
320
- "DeploymentInfo$deploymentConfigName": "<p>The deployment configuration name.</p>",
321
- "GetDeploymentConfigInput$deploymentConfigName": "<p>The name of an existing deployment configuration associated with the applicable IAM user or AWS account.</p>",
322
- "UpdateDeploymentGroupInput$deploymentConfigName": "<p>The replacement deployment configuration name to use, if you want to change it.</p>"
323
- }
324
- },
325
- "DeploymentConfigNameRequiredException": {
326
- "base": "<p>The deployment configuration name was not specified.</p>",
327
- "refs": {
328
- }
329
- },
330
- "DeploymentConfigsList": {
331
- "base": null,
332
- "refs": {
333
- "ListDeploymentConfigsOutput$deploymentConfigsList": "<p>A list of deployment configurations, including the built-in configurations such as CodeDeployDefault.OneAtATime.</p>"
334
- }
335
- },
336
- "DeploymentCreator": {
337
- "base": null,
338
- "refs": {
339
- "DeploymentInfo$creator": "<p>How the deployment was created:</p> <ul> <li>user: A user created the deployment.</li> <li>autoscaling: Auto Scaling created the deployment.</li> </ul>"
340
- }
341
- },
342
- "DeploymentDoesNotExistException": {
343
- "base": "<p>The deployment does not exist with the applicable IAM user or AWS account.</p>",
344
- "refs": {
345
- }
346
- },
347
- "DeploymentGroupAlreadyExistsException": {
348
- "base": "<p>A deployment group with the specified name already exists with the applicable IAM user or AWS account.</p>",
349
- "refs": {
350
- }
351
- },
352
- "DeploymentGroupDoesNotExistException": {
353
- "base": "<p>The named deployment group does not exist with the applicable IAM user or AWS account.</p>",
354
- "refs": {
355
- }
356
- },
357
- "DeploymentGroupId": {
358
- "base": null,
359
- "refs": {
360
- "CreateDeploymentGroupOutput$deploymentGroupId": "<p>A unique deployment group ID.</p>",
361
- "DeploymentGroupInfo$deploymentGroupId": "<p>The deployment group ID.</p>"
362
- }
363
- },
364
- "DeploymentGroupInfo": {
365
- "base": "<p>Information about a deployment group.</p>",
366
- "refs": {
367
- "GetDeploymentGroupOutput$deploymentGroupInfo": "<p>Information about the deployment group.</p>"
368
- }
369
- },
370
- "DeploymentGroupLimitExceededException": {
371
- "base": "<p> The deployment groups limit was exceeded.</p>",
372
- "refs": {
373
- }
374
- },
375
- "DeploymentGroupName": {
376
- "base": null,
377
- "refs": {
378
- "CreateDeploymentGroupInput$deploymentGroupName": "<p>The name of an existing deployment group for the specified application.</p>",
379
- "CreateDeploymentInput$deploymentGroupName": "<p>The deployment group's name.</p>",
380
- "DeleteDeploymentGroupInput$deploymentGroupName": "<p>The name of an existing deployment group for the specified application.</p>",
381
- "DeploymentGroupInfo$deploymentGroupName": "<p>The deployment group name.</p>",
382
- "DeploymentGroupsList$member": null,
383
- "DeploymentInfo$deploymentGroupName": "<p>The deployment group name.</p>",
384
- "GetDeploymentGroupInput$deploymentGroupName": "<p>The name of an existing deployment group for the specified application.</p>",
385
- "ListDeploymentsInput$deploymentGroupName": "<p>The name of an existing deployment group for the specified application.</p>",
386
- "UpdateDeploymentGroupInput$currentDeploymentGroupName": "<p>The current name of the existing deployment group.</p>",
387
- "UpdateDeploymentGroupInput$newDeploymentGroupName": "<p>The new name of the deployment group, if you want to change it.</p>"
388
- }
389
- },
390
- "DeploymentGroupNameRequiredException": {
391
- "base": "<p>The deployment group name was not specified.</p>",
392
- "refs": {
393
- }
394
- },
395
- "DeploymentGroupsList": {
396
- "base": null,
397
- "refs": {
398
- "GenericRevisionInfo$deploymentGroups": "<p>A list of deployment groups that use this revision.</p>",
399
- "ListDeploymentGroupsOutput$deploymentGroups": "<p>A list of corresponding deployment group names.</p>"
400
- }
401
- },
402
- "DeploymentId": {
403
- "base": null,
404
- "refs": {
405
- "CreateDeploymentOutput$deploymentId": "<p>A unique deployment ID.</p>",
406
- "DeploymentInfo$deploymentId": "<p>The deployment ID.</p>",
407
- "DeploymentsList$member": null,
408
- "GetDeploymentInput$deploymentId": "<p>An existing deployment ID associated with the applicable IAM user or AWS account.</p>",
409
- "GetDeploymentInstanceInput$deploymentId": "<p>The unique ID of a deployment.</p>",
410
- "InstanceSummary$deploymentId": "<p>The deployment ID.</p>",
411
- "ListDeploymentInstancesInput$deploymentId": "<p>The unique ID of a deployment.</p>",
412
- "StopDeploymentInput$deploymentId": "<p>The unique ID of a deployment.</p>"
413
- }
414
- },
415
- "DeploymentIdRequiredException": {
416
- "base": "<p>At least one deployment ID must be specified.</p>",
417
- "refs": {
418
- }
419
- },
420
- "DeploymentInfo": {
421
- "base": "<p>Information about a deployment.</p>",
422
- "refs": {
423
- "DeploymentsInfoList$member": null,
424
- "GetDeploymentOutput$deploymentInfo": "<p>Information about the deployment.</p>"
425
- }
426
- },
427
- "DeploymentLimitExceededException": {
428
- "base": "<p>The number of allowed deployments was exceeded.</p>",
429
- "refs": {
430
- }
431
- },
432
- "DeploymentNotStartedException": {
433
- "base": "<p>The specified deployment has not started.</p>",
434
- "refs": {
435
- }
436
- },
437
- "DeploymentOverview": {
438
- "base": "<p>Information about the deployment status of the instances in the deployment.</p>",
439
- "refs": {
440
- "DeploymentInfo$deploymentOverview": "<p>A summary of the deployment status of the instances in the deployment.</p>"
441
- }
442
- },
443
- "DeploymentStatus": {
444
- "base": null,
445
- "refs": {
446
- "DeploymentInfo$status": "<p>The current state of the deployment as a whole.</p>",
447
- "DeploymentStatusList$member": null
448
- }
449
- },
450
- "DeploymentStatusList": {
451
- "base": null,
452
- "refs": {
453
- "ListDeploymentsInput$includeOnlyStatuses": "<p>A subset of deployments to list, by status:</p> <ul> <li>Created: Include in the resulting list created deployments.</li> <li>Queued: Include in the resulting list queued deployments.</li> <li>In Progress: Include in the resulting list in-progress deployments.</li> <li>Succeeded: Include in the resulting list succeeded deployments.</li> <li>Failed: Include in the resulting list failed deployments.</li> <li>Aborted: Include in the resulting list aborted deployments.</li> </ul>"
454
- }
455
- },
456
- "DeploymentsInfoList": {
457
- "base": null,
458
- "refs": {
459
- "BatchGetDeploymentsOutput$deploymentsInfo": "<p>Information about the deployments.</p>"
460
- }
461
- },
462
- "DeploymentsList": {
463
- "base": null,
464
- "refs": {
465
- "BatchGetDeploymentsInput$deploymentIds": "<p>A list of deployment IDs, with multiple deployment IDs separated by spaces.</p>",
466
- "ListDeploymentsOutput$deployments": "<p>A list of deployment IDs.</p>"
467
- }
468
- },
469
- "DeregisterOnPremisesInstanceInput": {
470
- "base": "<p>Represents the input of a deregister on-premises instance operation.</p>",
471
- "refs": {
472
- }
473
- },
474
- "Description": {
475
- "base": null,
476
- "refs": {
477
- "CreateDeploymentInput$description": "<p>A comment about the deployment.</p>",
478
- "DeploymentInfo$description": "<p>A comment about the deployment.</p>",
479
- "GenericRevisionInfo$description": "<p>A comment about the revision.</p>",
480
- "RegisterApplicationRevisionInput$description": "<p>A comment about the revision.</p>"
481
- }
482
- },
483
- "DescriptionTooLongException": {
484
- "base": "<p>The description that was provided is too long.</p>",
485
- "refs": {
486
- }
487
- },
488
- "Diagnostics": {
489
- "base": "<p>Diagnostic information about executable scripts that are part of a deployment.</p>",
490
- "refs": {
491
- "LifecycleEvent$diagnostics": "<p>Diagnostic information about the deployment lifecycle event.</p>"
492
- }
493
- },
494
- "EC2TagFilter": {
495
- "base": "<p>Information about a tag filter.</p>",
496
- "refs": {
497
- "EC2TagFilterList$member": null
498
- }
499
- },
500
- "EC2TagFilterList": {
501
- "base": null,
502
- "refs": {
503
- "CreateDeploymentGroupInput$ec2TagFilters": "<p>The Amazon EC2 tags to filter on.</p>",
504
- "DeploymentGroupInfo$ec2TagFilters": "<p>The Amazon EC2 tags to filter on.</p>",
505
- "UpdateDeploymentGroupInput$ec2TagFilters": "<p>The replacement set of Amazon EC2 tags to filter on, if you want to change them.</p>"
506
- }
507
- },
508
- "EC2TagFilterType": {
509
- "base": null,
510
- "refs": {
511
- "EC2TagFilter$Type": "<p>The tag filter type:</p> <ul> <li>KEY_ONLY: Key only.</li> <li>VALUE_ONLY: Value only.</li> <li>KEY_AND_VALUE: Key and value.</li> </ul>"
512
- }
513
- },
514
- "ETag": {
515
- "base": null,
516
- "refs": {
517
- "S3Location$eTag": "<p>The ETag of the Amazon S3 object that represents the bundled artifacts for the application revision.</p> <p>If the ETag is not specified as an input parameter, ETag validation of the object will be skipped.</p>"
518
- }
519
- },
520
- "ErrorCode": {
521
- "base": null,
522
- "refs": {
523
- "ErrorInformation$code": "<p>The error code:</p> <ul> <li>APPLICATION_MISSING: The application was missing. Note that this error code will most likely be raised if the application is deleted after the deployment is created but before it starts.</li> <li>DEPLOYMENT_GROUP_MISSING: The deployment group was missing. Note that this error code will most likely be raised if the deployment group is deleted after the deployment is created but before it starts.</li> <li>HEALTH_CONSTRAINTS: The deployment failed on too many instances to be able to successfully deploy within the specified instance health constraints.</li> <li>HEALTH_CONSTRAINTS_INVALID: The revision can never successfully deploy within the instance health constraints as specified.</li> <li>IAM_ROLE_MISSING: The service role cannot be accessed.</li> <li>IAM_ROLE_PERMISSIONS: The service role does not have the correct permissions.</li> <li>INTERNAL_ERROR: There was an internal error.</li> <li>NO_EC2_SUBSCRIPTION: The calling account is not subscribed to the Amazon EC2 service.</li> <li>NO_INSTANCES: No instances were specified, or no instances can be found.</li> <li>OVER_MAX_INSTANCES: The maximum number of instances was exceeded.</li> <li>THROTTLED: The operation was throttled because the calling account exceeded the throttling limits of one or more AWS services.</li> <li>TIMEOUT: The deployment has timed out.</li> <li>REVISION_MISSING: The revision ID was missing. Note that this error code will most likely be raised if the revision is deleted after the deployment is created but before it starts.</li> </ul>"
524
- }
525
- },
526
- "ErrorInformation": {
527
- "base": "<p>Information about a deployment error.</p>",
528
- "refs": {
529
- "DeploymentInfo$errorInformation": "<p>Information about any error associated with this deployment.</p>"
530
- }
531
- },
532
- "ErrorMessage": {
533
- "base": null,
534
- "refs": {
535
- "ErrorInformation$message": "<p>An accompanying error message.</p>"
536
- }
537
- },
538
- "GenericRevisionInfo": {
539
- "base": "<p>Information about an application revision.</p>",
540
- "refs": {
541
- "GetApplicationRevisionOutput$revisionInfo": "<p>General information about the revision.</p>"
542
- }
543
- },
544
- "GetApplicationInput": {
545
- "base": "<p>Represents the input of a get application operation.</p>",
546
- "refs": {
547
- }
548
- },
549
- "GetApplicationOutput": {
550
- "base": "<p>Represents the output of a get application operation.</p>",
551
- "refs": {
552
- }
553
- },
554
- "GetApplicationRevisionInput": {
555
- "base": "<p>Represents the input of a get application revision operation.</p>",
556
- "refs": {
557
- }
558
- },
559
- "GetApplicationRevisionOutput": {
560
- "base": "<p>Represents the output of a get application revision operation.</p>",
561
- "refs": {
562
- }
563
- },
564
- "GetDeploymentConfigInput": {
565
- "base": "<p>Represents the input of a get deployment configuration operation.</p>",
566
- "refs": {
567
- }
568
- },
569
- "GetDeploymentConfigOutput": {
570
- "base": "<p>Represents the output of a get deployment configuration operation.</p>",
571
- "refs": {
572
- }
573
- },
574
- "GetDeploymentGroupInput": {
575
- "base": "<p>Represents the input of a get deployment group operation.</p>",
576
- "refs": {
577
- }
578
- },
579
- "GetDeploymentGroupOutput": {
580
- "base": "<p>Represents the output of a get deployment group operation.</p>",
581
- "refs": {
582
- }
583
- },
584
- "GetDeploymentInput": {
585
- "base": "<p>Represents the input of a get deployment operation.</p>",
586
- "refs": {
587
- }
588
- },
589
- "GetDeploymentInstanceInput": {
590
- "base": "<p>Represents the input of a get deployment instance operation.</p>",
591
- "refs": {
592
- }
593
- },
594
- "GetDeploymentInstanceOutput": {
595
- "base": "<p>Represents the output of a get deployment instance operation.</p>",
596
- "refs": {
597
- }
598
- },
599
- "GetDeploymentOutput": {
600
- "base": "<p>Represents the output of a get deployment operation.</p>",
601
- "refs": {
602
- }
603
- },
604
- "GetOnPremisesInstanceInput": {
605
- "base": "<p>Represents the input of a get on-premises instance operation.</p>",
606
- "refs": {
607
- }
608
- },
609
- "GetOnPremisesInstanceOutput": {
610
- "base": "<p>Represents the output of a get on-premises instance operation.</p>",
611
- "refs": {
612
- }
613
- },
614
- "GitHubLocation": {
615
- "base": "<p>Information about the location of application artifacts that are stored in GitHub.</p>",
616
- "refs": {
617
- "RevisionLocation$gitHubLocation": null
618
- }
619
- },
620
- "IamUserArn": {
621
- "base": null,
622
- "refs": {
623
- "InstanceInfo$iamUserArn": "<p>The IAM user ARN associated with the on-premises instance.</p>",
624
- "RegisterOnPremisesInstanceInput$iamUserArn": "<p>The ARN of the IAM user to associate with the on-premises instance.</p>"
625
- }
626
- },
627
- "IamUserArnAlreadyRegisteredException": {
628
- "base": "<p>The specified IAM user ARN is already registered with an on-premises instance.</p>",
629
- "refs": {
630
- }
631
- },
632
- "IamUserArnRequiredException": {
633
- "base": "<p>An IAM user ARN was not specified.</p>",
634
- "refs": {
635
- }
636
- },
637
- "InstanceArn": {
638
- "base": null,
639
- "refs": {
640
- "InstanceInfo$instanceArn": "<p>The ARN of the on-premises instance.</p>"
641
- }
642
- },
643
- "InstanceCount": {
644
- "base": null,
645
- "refs": {
646
- "DeploymentOverview$Pending": "<p>The number of instances that are pending in the deployment.</p>",
647
- "DeploymentOverview$InProgress": "<p>The number of instances that are in progress in the deployment.</p>",
648
- "DeploymentOverview$Succeeded": "<p>The number of instances that have succeeded in the deployment.</p>",
649
- "DeploymentOverview$Failed": "<p>The number of instances that have failed in the deployment.</p>",
650
- "DeploymentOverview$Skipped": "<p>The number of instances that have been skipped in the deployment.</p>"
651
- }
652
- },
653
- "InstanceDoesNotExistException": {
654
- "base": "<p>The specified instance does not exist in the deployment group.</p>",
655
- "refs": {
656
- }
657
- },
658
- "InstanceId": {
659
- "base": null,
660
- "refs": {
661
- "GetDeploymentInstanceInput$instanceId": "<p>The unique ID of an instance in the deployment's deployment group.</p>",
662
- "InstanceSummary$instanceId": "<p>The instance ID.</p>",
663
- "InstancesList$member": null
664
- }
665
- },
666
- "InstanceIdRequiredException": {
667
- "base": "<p>The instance ID was not specified.</p>",
668
- "refs": {
669
- }
670
- },
671
- "InstanceInfo": {
672
- "base": "<p>Information about an on-premises instance.</p>",
673
- "refs": {
674
- "GetOnPremisesInstanceOutput$instanceInfo": "<p>Information about the on-premises instance.</p>",
675
- "InstanceInfoList$member": null
676
- }
677
- },
678
- "InstanceInfoList": {
679
- "base": null,
680
- "refs": {
681
- "BatchGetOnPremisesInstancesOutput$instanceInfos": "<p>Information about the on-premises instances.</p>"
682
- }
683
- },
684
- "InstanceLimitExceededException": {
685
- "base": "<p>The maximum number of allowed on-premises instances in a single call was exceeded.</p>",
686
- "refs": {
687
- }
688
- },
689
- "InstanceName": {
690
- "base": null,
691
- "refs": {
692
- "DeregisterOnPremisesInstanceInput$instanceName": "<p>The name of the on-premises instance to deregister.</p>",
693
- "GetOnPremisesInstanceInput$instanceName": "<p>The name of the on-premises instance to get information about</p>",
694
- "InstanceInfo$instanceName": "<p>The name of the on-premises instance.</p>",
695
- "InstanceNameList$member": null,
696
- "RegisterOnPremisesInstanceInput$instanceName": "<p>The name of the on-premises instance to register.</p>"
697
- }
698
- },
699
- "InstanceNameAlreadyRegisteredException": {
700
- "base": "<p>The specified on-premises instance name is already registered.</p>",
701
- "refs": {
702
- }
703
- },
704
- "InstanceNameList": {
705
- "base": null,
706
- "refs": {
707
- "AddTagsToOnPremisesInstancesInput$instanceNames": "<p>The names of the on-premises instances to add tags to.</p>",
708
- "BatchGetOnPremisesInstancesInput$instanceNames": "<p>The names of the on-premises instances to get information about.</p>",
709
- "ListOnPremisesInstancesOutput$instanceNames": "<p>The list of matching on-premises instance names.</p>",
710
- "RemoveTagsFromOnPremisesInstancesInput$instanceNames": "<p>The names of the on-premises instances to remove tags from.</p>"
711
- }
712
- },
713
- "InstanceNameRequiredException": {
714
- "base": "<p>An on-premises instance name was not specified.</p>",
715
- "refs": {
716
- }
717
- },
718
- "InstanceNotRegisteredException": {
719
- "base": "<p>The specified on-premises instance is not registered.</p>",
720
- "refs": {
721
- }
722
- },
723
- "InstanceStatus": {
724
- "base": null,
725
- "refs": {
726
- "InstanceStatusList$member": null,
727
- "InstanceSummary$status": "<p>The deployment status for this instance:</p> <ul> <li>Pending: The deployment is pending for this instance.</li> <li>In Progress: The deployment is in progress for this instance.</li> <li>Succeeded: The deployment has succeeded for this instance.</li> <li>Failed: The deployment has failed for this instance.</li> <li>Skipped: The deployment has been skipped for this instance.</li> <li>Unknown: The deployment status is unknown for this instance.</li> </ul>"
728
- }
729
- },
730
- "InstanceStatusList": {
731
- "base": null,
732
- "refs": {
733
- "ListDeploymentInstancesInput$instanceStatusFilter": "<p>A subset of instances to list, by status:</p> <ul> <li>Pending: Include in the resulting list those instances with pending deployments.</li> <li>InProgress: Include in the resulting list those instances with in-progress deployments.</li> <li>Succeeded: Include in the resulting list those instances with succeeded deployments.</li> <li>Failed: Include in the resulting list those instances with failed deployments.</li> <li>Skipped: Include in the resulting list those instances with skipped deployments.</li> <li>Unknown: Include in the resulting list those instances with deployments in an unknown state.</li> </ul>"
734
- }
735
- },
736
- "InstanceSummary": {
737
- "base": "<p>Information about an instance in a deployment.</p>",
738
- "refs": {
739
- "GetDeploymentInstanceOutput$instanceSummary": "<p>Information about the instance.</p>"
740
- }
741
- },
742
- "InstancesList": {
743
- "base": null,
744
- "refs": {
745
- "ListDeploymentInstancesOutput$instancesList": "<p>A list of instances IDs.</p>"
746
- }
747
- },
748
- "InvalidApplicationNameException": {
749
- "base": "<p>The application name was specified in an invalid format.</p>",
750
- "refs": {
751
- }
752
- },
753
- "InvalidAutoScalingGroupException": {
754
- "base": "<p>The Auto Scaling group was specified in an invalid format or does not exist.</p>",
755
- "refs": {
756
- }
757
- },
758
- "InvalidBucketNameFilterException": {
759
- "base": "<p>The bucket name either doesn't exist or was specified in an invalid format.</p>",
760
- "refs": {
761
- }
762
- },
763
- "InvalidDeployedStateFilterException": {
764
- "base": "<p>The deployed state filter was specified in an invalid format.</p>",
765
- "refs": {
766
- }
767
- },
768
- "InvalidDeploymentConfigNameException": {
769
- "base": "<p>The deployment configuration name was specified in an invalid format.</p>",
770
- "refs": {
771
- }
772
- },
773
- "InvalidDeploymentGroupNameException": {
774
- "base": "<p>The deployment group name was specified in an invalid format.</p>",
775
- "refs": {
776
- }
777
- },
778
- "InvalidDeploymentIdException": {
779
- "base": "<p>At least one of the deployment IDs was specified in an invalid format.</p>",
780
- "refs": {
781
- }
782
- },
783
- "InvalidDeploymentStatusException": {
784
- "base": "<p>The specified deployment status doesn't exist or cannot be determined.</p>",
785
- "refs": {
786
- }
787
- },
788
- "InvalidEC2TagException": {
789
- "base": "<p>The tag was specified in an invalid format.</p>",
790
- "refs": {
791
- }
792
- },
793
- "InvalidIamUserArnException": {
794
- "base": "<p>The IAM user ARN was specified in an invalid format.</p>",
795
- "refs": {
796
- }
797
- },
798
- "InvalidInstanceNameException": {
799
- "base": "<p>The specified on-premises instance name was specified in an invalid format.</p>",
800
- "refs": {
801
- }
802
- },
803
- "InvalidInstanceStatusException": {
804
- "base": "<p>The specified instance status does not exist.</p>",
805
- "refs": {
806
- }
807
- },
808
- "InvalidKeyPrefixFilterException": {
809
- "base": "<p>The specified key prefix filter was specified in an invalid format.</p>",
810
- "refs": {
811
- }
812
- },
813
- "InvalidMinimumHealthyHostValueException": {
814
- "base": "<p>The minimum healthy instances value was specified in an invalid format.</p>",
815
- "refs": {
816
- }
817
- },
818
- "InvalidNextTokenException": {
819
- "base": "<p>The next token was specified in an invalid format.</p>",
820
- "refs": {
821
- }
822
- },
823
- "InvalidOperationException": {
824
- "base": "<p>An invalid operation was detected.</p>",
825
- "refs": {
826
- }
827
- },
828
- "InvalidRegistrationStatusException": {
829
- "base": "<p>The registration status was specified in an invalid format.</p>",
830
- "refs": {
831
- }
832
- },
833
- "InvalidRevisionException": {
834
- "base": "<p>The revision was specified in an invalid format.</p>",
835
- "refs": {
836
- }
837
- },
838
- "InvalidRoleException": {
839
- "base": "<p>The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Auto Scaling.</p>",
840
- "refs": {
841
- }
842
- },
843
- "InvalidSortByException": {
844
- "base": "<p>The column name to sort by is either not present or was specified in an invalid format.</p>",
845
- "refs": {
846
- }
847
- },
848
- "InvalidSortOrderException": {
849
- "base": "<p>The sort order was specified in an invalid format.</p>",
850
- "refs": {
851
- }
852
- },
853
- "InvalidTagException": {
854
- "base": "<p>The specified tag was specified in an invalid format.</p>",
855
- "refs": {
856
- }
857
- },
858
- "InvalidTagFilterException": {
859
- "base": "<p>The specified tag filter was specified in an invalid format.</p>",
860
- "refs": {
861
- }
862
- },
863
- "InvalidTimeRangeException": {
864
- "base": "<p>The specified time range was specified in an invalid format.</p>",
865
- "refs": {
866
- }
867
- },
868
- "Key": {
869
- "base": null,
870
- "refs": {
871
- "EC2TagFilter$Key": "<p>The tag filter key.</p>",
872
- "Tag$Key": "<p>The tag's key.</p>",
873
- "TagFilter$Key": "<p>The on-premises instance tag filter key.</p>"
874
- }
875
- },
876
- "LifecycleErrorCode": {
877
- "base": null,
878
- "refs": {
879
- "Diagnostics$errorCode": "<p>The associated error code:</p> <ul> <li>Success: The specified script ran.</li> <li>ScriptMissing: The specified script was not found in the specified location.</li> <li>ScriptNotExecutable: The specified script is not a recognized executable file type.</li> <li>ScriptTimedOut: The specified script did not finish running in the specified time period.</li> <li>ScriptFailed: The specified script failed to run as expected.</li> <li>UnknownError: The specified script did not run for an unknown reason.</li> </ul>"
880
- }
881
- },
882
- "LifecycleEvent": {
883
- "base": "<p>Information about a deployment lifecycle event.</p>",
884
- "refs": {
885
- "LifecycleEventList$member": null
886
- }
887
- },
888
- "LifecycleEventList": {
889
- "base": null,
890
- "refs": {
891
- "InstanceSummary$lifecycleEvents": "<p>A list of lifecycle events for this instance.</p>"
892
- }
893
- },
894
- "LifecycleEventName": {
895
- "base": null,
896
- "refs": {
897
- "LifecycleEvent$lifecycleEventName": "<p>The deployment lifecycle event name, such as ApplicationStop, BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.</p>"
898
- }
899
- },
900
- "LifecycleEventStatus": {
901
- "base": null,
902
- "refs": {
903
- "LifecycleEvent$status": "<p>The deployment lifecycle event status:</p> <ul> <li>Pending: The deployment lifecycle event is pending.</li> <li>InProgress: The deployment lifecycle event is in progress.</li> <li>Succeeded: The deployment lifecycle event has succeeded.</li> <li>Failed: The deployment lifecycle event has failed.</li> <li>Skipped: The deployment lifecycle event has been skipped.</li> <li>Unknown: The deployment lifecycle event is unknown.</li> </ul>"
904
- }
905
- },
906
- "LifecycleMessage": {
907
- "base": null,
908
- "refs": {
909
- "Diagnostics$message": "<p>The message associated with the error.</p>"
910
- }
911
- },
912
- "ListApplicationRevisionsInput": {
913
- "base": "<p>Represents the input of a list application revisions operation.</p>",
914
- "refs": {
915
- }
916
- },
917
- "ListApplicationRevisionsOutput": {
918
- "base": "<p>Represents the output of a list application revisions operation.</p>",
919
- "refs": {
920
- }
921
- },
922
- "ListApplicationsInput": {
923
- "base": "<p>Represents the input of a list applications operation.</p>",
924
- "refs": {
925
- }
926
- },
927
- "ListApplicationsOutput": {
928
- "base": "<p>Represents the output of a list applications operation.</p>",
929
- "refs": {
930
- }
931
- },
932
- "ListDeploymentConfigsInput": {
933
- "base": "<p>Represents the input of a list deployment configurations operation.</p>",
934
- "refs": {
935
- }
936
- },
937
- "ListDeploymentConfigsOutput": {
938
- "base": "<p>Represents the output of a list deployment configurations operation.</p>",
939
- "refs": {
940
- }
941
- },
942
- "ListDeploymentGroupsInput": {
943
- "base": "<p>Represents the input of a list deployment groups operation.</p>",
944
- "refs": {
945
- }
946
- },
947
- "ListDeploymentGroupsOutput": {
948
- "base": "<p>Represents the output of a list deployment groups operation.</p>",
949
- "refs": {
950
- }
951
- },
952
- "ListDeploymentInstancesInput": {
953
- "base": "<p>Represents the input of a list deployment instances operation.</p>",
954
- "refs": {
955
- }
956
- },
957
- "ListDeploymentInstancesOutput": {
958
- "base": "<p>Represents the output of a list deployment instances operation.</p>",
959
- "refs": {
960
- }
961
- },
962
- "ListDeploymentsInput": {
963
- "base": "<p>Represents the input of a list deployments operation.</p>",
964
- "refs": {
965
- }
966
- },
967
- "ListDeploymentsOutput": {
968
- "base": "<p>Represents the output of a list deployments operation.</p>",
969
- "refs": {
970
- }
971
- },
972
- "ListOnPremisesInstancesInput": {
973
- "base": "<p>Represents the input of a list on-premises instances operation.</p>.",
974
- "refs": {
975
- }
976
- },
977
- "ListOnPremisesInstancesOutput": {
978
- "base": "<p>Represents the output of list on-premises instances operation.</p>",
979
- "refs": {
980
- }
981
- },
982
- "ListStateFilterAction": {
983
- "base": null,
984
- "refs": {
985
- "ListApplicationRevisionsInput$deployed": "<p>Whether to list revisions based on whether the revision is the target revision of an deployment group:</p> <ul> <li>include: List revisions that are target revisions of a deployment group.</li> <li>exclude: Do not list revisions that are target revisions of a deployment group.</li> <li>ignore: List all revisions, regardless of whether they are target revisions of a deployment group.</li> </ul>"
986
- }
987
- },
988
- "LogTail": {
989
- "base": null,
990
- "refs": {
991
- "Diagnostics$logTail": "<p>The last portion of the associated diagnostic log.</p>"
992
- }
993
- },
994
- "Message": {
995
- "base": null,
996
- "refs": {
997
- "StopDeploymentOutput$statusMessage": "<p>An accompanying status message.</p>"
998
- }
999
- },
1000
- "MinimumHealthyHosts": {
1001
- "base": "<p>Information about minimum healthy instances.</p>",
1002
- "refs": {
1003
- "CreateDeploymentConfigInput$minimumHealthyHosts": "<p>The minimum number of healthy instances that should be available at any time during the deployment. There are two parameters expected in the input: type and value.</p> <p>The type parameter takes either of the following values:</p> <ul> <li>HOST_COUNT: The value parameter represents the minimum number of healthy instances, as an absolute value.</li> <li>FLEET_PERCENT: The value parameter represents the minimum number of healthy instances, as a percentage of the total number of instances in the deployment. If you specify FLEET_PERCENT, then at the start of the deployment AWS CodeDeploy converts the percentage to the equivalent number of instances and rounds fractional instances up.</li> </ul> <p>The value parameter takes an integer.</p> <p>For example, to set a minimum of 95% healthy instances, specify a type of FLEET_PERCENT and a value of 95.</p>",
1004
- "DeploymentConfigInfo$minimumHealthyHosts": "<p>Information about the number or percentage of minimum healthy instances.</p>"
1005
- }
1006
- },
1007
- "MinimumHealthyHostsType": {
1008
- "base": null,
1009
- "refs": {
1010
- "MinimumHealthyHosts$type": "<p>The minimum healthy instances type:</p> <ul> <li>HOST_COUNT: The minimum number of healthy instances, as an absolute value.</li> <li>FLEET_PERCENT: The minimum number of healthy instances, as a percentage of the total number of instances in the deployment.</li> </ul> <p>For example, for 9 instances, if a HOST_COUNT of 6 is specified, deploy to up to 3 instances at a time. The deployment succeeds if 6 or more instances are successfully deployed to; otherwise, the deployment fails. If a FLEET_PERCENT of 40 is specified, deploy to up to 5 instances at a time. The deployment succeeds if 4 or more instances are successfully deployed to; otherwise, the deployment fails.</p> <note>In a call to the get deployment configuration operation, CodeDeployDefault.OneAtATime will return a minimum healthy instances type of MOST_CONCURRENCY and a value of 1. This means a deployment to only one instances at a time. (You cannot set the type to MOST_CONCURRENCY, only to HOST_COUNT or FLEET_PERCENT.)</note>"
1011
- }
1012
- },
1013
- "MinimumHealthyHostsValue": {
1014
- "base": null,
1015
- "refs": {
1016
- "MinimumHealthyHosts$value": "<p>The minimum healthy instances value.</p>"
1017
- }
1018
- },
1019
- "NextToken": {
1020
- "base": null,
1021
- "refs": {
1022
- "ListApplicationRevisionsInput$nextToken": "<p>An identifier that was returned from the previous list application revisions call, which can be used to return the next set of applications in the list.</p>",
1023
- "ListApplicationRevisionsOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list application revisions call to return the next set of application revisions in the list.</p>",
1024
- "ListApplicationsInput$nextToken": "<p>An identifier that was returned from the previous list applications call, which can be used to return the next set of applications in the list.</p>",
1025
- "ListApplicationsOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list applications call to return the next set of applications in the list.</p>",
1026
- "ListDeploymentConfigsInput$nextToken": "<p>An identifier that was returned from the previous list deployment configurations call, which can be used to return the next set of deployment configurations in the list.</p>",
1027
- "ListDeploymentConfigsOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list deployment configurations call to return the next set of deployment configurations in the list.</p>",
1028
- "ListDeploymentGroupsInput$nextToken": "<p>An identifier that was returned from the previous list deployment groups call, which can be used to return the next set of deployment groups in the list.</p>",
1029
- "ListDeploymentGroupsOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list deployment groups call to return the next set of deployment groups in the list.</p>",
1030
- "ListDeploymentInstancesInput$nextToken": "<p>An identifier that was returned from the previous list deployment instances call, which can be used to return the next set of deployment instances in the list.</p>",
1031
- "ListDeploymentInstancesOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list deployment instances call to return the next set of deployment instances in the list.</p>",
1032
- "ListDeploymentsInput$nextToken": "<p>An identifier that was returned from the previous list deployments call, which can be used to return the next set of deployments in the list.</p>",
1033
- "ListDeploymentsOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list deployments call to return the next set of deployments in the list.</p>",
1034
- "ListOnPremisesInstancesInput$nextToken": "<p>An identifier that was returned from the previous list on-premises instances call, which can be used to return the next set of on-premises instances in the list.</p>",
1035
- "ListOnPremisesInstancesOutput$nextToken": "<p>If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list on-premises instances call to return the next set of on-premises instances in the list.</p>"
1036
- }
1037
- },
1038
- "RegisterApplicationRevisionInput": {
1039
- "base": "<p>Represents the input of a register application revision operation.</p>",
1040
- "refs": {
1041
- }
1042
- },
1043
- "RegisterOnPremisesInstanceInput": {
1044
- "base": "<p>Represents the input of register on-premises instance operation.</p>",
1045
- "refs": {
1046
- }
1047
- },
1048
- "RegistrationStatus": {
1049
- "base": null,
1050
- "refs": {
1051
- "ListOnPremisesInstancesInput$registrationStatus": "<p>The on-premises instances registration status:</p> <ul> <li>Deregistered: Include in the resulting list deregistered on-premises instances.</li> <li>Registered: Include in the resulting list registered on-premises instances.</li> </ul>"
1052
- }
1053
- },
1054
- "RemoveTagsFromOnPremisesInstancesInput": {
1055
- "base": "<p>Represents the input of a remove tags from on-premises instances operation.</p>",
1056
- "refs": {
1057
- }
1058
- },
1059
- "Repository": {
1060
- "base": null,
1061
- "refs": {
1062
- "GitHubLocation$repository": "<p>The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision.</p> <p>Specified as account/repository.</p>"
1063
- }
1064
- },
1065
- "RevisionDoesNotExistException": {
1066
- "base": "<p>The named revision does not exist with the applicable IAM user or AWS account.</p>",
1067
- "refs": {
1068
- }
1069
- },
1070
- "RevisionLocation": {
1071
- "base": "<p>Information about an application revision's location.</p>",
1072
- "refs": {
1073
- "CreateDeploymentInput$revision": "<p>The type of revision to deploy, along with information about the revision's location.</p>",
1074
- "DeploymentGroupInfo$targetRevision": "<p>Information about the deployment group's target revision, including the revision's type and its location.</p>",
1075
- "DeploymentInfo$revision": "<p>Information about the location of application artifacts that are stored and the service to retrieve them from.</p>",
1076
- "GetApplicationRevisionInput$revision": "<p>Information about the application revision to get, including the revision's type and its location.</p>",
1077
- "GetApplicationRevisionOutput$revision": "<p>Additional information about the revision, including the revision's type and its location.</p>",
1078
- "RegisterApplicationRevisionInput$revision": "<p>Information about the application revision to register, including the revision's type and its location.</p>",
1079
- "RevisionLocationList$member": null
1080
- }
1081
- },
1082
- "RevisionLocationList": {
1083
- "base": null,
1084
- "refs": {
1085
- "ListApplicationRevisionsOutput$revisions": "<p>A list of revision locations that contain the matching revisions.</p>"
1086
- }
1087
- },
1088
- "RevisionLocationType": {
1089
- "base": null,
1090
- "refs": {
1091
- "RevisionLocation$revisionType": "<p>The application revision's type:</p> <ul> <li>S3: An application revision stored in Amazon S3.</li> <li>GitHub: An application revision stored in GitHub.</li> </ul>"
1092
- }
1093
- },
1094
- "RevisionRequiredException": {
1095
- "base": "<p>The revision ID was not specified.</p>",
1096
- "refs": {
1097
- }
1098
- },
1099
- "Role": {
1100
- "base": null,
1101
- "refs": {
1102
- "CreateDeploymentGroupInput$serviceRoleArn": "<p>A service role ARN that allows AWS CodeDeploy to act on the user's behalf when interacting with AWS services.</p>",
1103
- "DeploymentGroupInfo$serviceRoleArn": "<p>A service role ARN.</p>",
1104
- "UpdateDeploymentGroupInput$serviceRoleArn": "<p>A replacement service role's ARN, if you want to change it.</p>"
1105
- }
1106
- },
1107
- "RoleRequiredException": {
1108
- "base": "<p>The role ID was not specified.</p>",
1109
- "refs": {
1110
- }
1111
- },
1112
- "S3Bucket": {
1113
- "base": null,
1114
- "refs": {
1115
- "ListApplicationRevisionsInput$s3Bucket": "<p>A specific Amazon S3 bucket name to limit the search for revisions.</p> <p>If set to null, then all of the user's buckets will be searched.</p>",
1116
- "S3Location$bucket": "<p>The name of the Amazon S3 bucket where the application revision is stored.</p>"
1117
- }
1118
- },
1119
- "S3Key": {
1120
- "base": null,
1121
- "refs": {
1122
- "ListApplicationRevisionsInput$s3KeyPrefix": "<p>A specific key prefix for the set of Amazon S3 objects to limit the search for revisions.</p>",
1123
- "S3Location$key": "<p>The name of the Amazon S3 object that represents the bundled artifacts for the application revision.</p>"
1124
- }
1125
- },
1126
- "S3Location": {
1127
- "base": "<p>Information about the location of application artifacts that are stored in Amazon S3.</p>",
1128
- "refs": {
1129
- "RevisionLocation$s3Location": null
1130
- }
1131
- },
1132
- "ScriptName": {
1133
- "base": null,
1134
- "refs": {
1135
- "Diagnostics$scriptName": "<p>The name of the script.</p>"
1136
- }
1137
- },
1138
- "SortOrder": {
1139
- "base": null,
1140
- "refs": {
1141
- "ListApplicationRevisionsInput$sortOrder": "<p>The order to sort the list results by:</p> <ul> <li>ascending: Sort the list of results in ascending order.</li> <li>descending: Sort the list of results in descending order.</li> </ul> <p>If not specified, the results will be sorted in ascending order.</p> <p>If set to null, the results will be sorted in an arbitrary order.</p>"
1142
- }
1143
- },
1144
- "StopDeploymentInput": {
1145
- "base": "<p>Represents the input of a stop deployment operation.</p>",
1146
- "refs": {
1147
- }
1148
- },
1149
- "StopDeploymentOutput": {
1150
- "base": "<p>Represents the output of a stop deployment operation.</p>",
1151
- "refs": {
1152
- }
1153
- },
1154
- "StopStatus": {
1155
- "base": null,
1156
- "refs": {
1157
- "StopDeploymentOutput$status": "<p>The status of the stop deployment operation:</p> <ul> <li>Pending: The stop operation is pending.</li> <li>Succeeded: The stop operation succeeded.</li> </ul>"
1158
- }
1159
- },
1160
- "Tag": {
1161
- "base": "<p>Information about a tag.</p>",
1162
- "refs": {
1163
- "TagList$member": null
1164
- }
1165
- },
1166
- "TagFilter": {
1167
- "base": "<p>Information about an on-premises instance tag filter.</p>",
1168
- "refs": {
1169
- "TagFilterList$member": null
1170
- }
1171
- },
1172
- "TagFilterList": {
1173
- "base": null,
1174
- "refs": {
1175
- "CreateDeploymentGroupInput$onPremisesInstanceTagFilters": "<p>The on-premises instance tags to filter on.</p>",
1176
- "DeploymentGroupInfo$onPremisesInstanceTagFilters": "<p>The on-premises instance tags to filter on.</p>",
1177
- "ListOnPremisesInstancesInput$tagFilters": "<p>The on-premises instance tags that will be used to restrict the corresponding on-premises instance names that are returned.</p>",
1178
- "UpdateDeploymentGroupInput$onPremisesInstanceTagFilters": "<p>The replacement set of on-premises instance tags for filter on, if you want to change them.</p>"
1179
- }
1180
- },
1181
- "TagFilterType": {
1182
- "base": null,
1183
- "refs": {
1184
- "TagFilter$Type": "<p>The on-premises instance tag filter type:</p> <ul> <li>KEY_ONLY: Key only.</li> <li>VALUE_ONLY: Value only.</li> <li>KEY_AND_VALUE: Key and value.</li> </ul>"
1185
- }
1186
- },
1187
- "TagLimitExceededException": {
1188
- "base": "<p>The maximum allowed number of tags was exceeded.</p>",
1189
- "refs": {
1190
- }
1191
- },
1192
- "TagList": {
1193
- "base": null,
1194
- "refs": {
1195
- "AddTagsToOnPremisesInstancesInput$tags": "<p>The tag key-value pairs to add to the on-premises instances.</p> <p>Keys and values are both required. Keys cannot be nulls or empty strings. Value-only tags are not allowed.</p>",
1196
- "InstanceInfo$tags": "<p>The tags that are currently associated with the on-premises instance.</p>",
1197
- "RemoveTagsFromOnPremisesInstancesInput$tags": "<p>The tag key-value pairs to remove from the on-premises instances.</p>"
1198
- }
1199
- },
1200
- "TagRequiredException": {
1201
- "base": "<p>A tag was not specified.</p>",
1202
- "refs": {
1203
- }
1204
- },
1205
- "TimeRange": {
1206
- "base": "<p>Information about a time range.</p>",
1207
- "refs": {
1208
- "ListDeploymentsInput$createTimeRange": "<p>A deployment creation start- and end-time range for returning a subset of the list of deployments.</p>"
1209
- }
1210
- },
1211
- "Timestamp": {
1212
- "base": null,
1213
- "refs": {
1214
- "ApplicationInfo$createTime": "<p>The time that the application was created.</p>",
1215
- "DeploymentConfigInfo$createTime": "<p>The time that the deployment configuration was created.</p>",
1216
- "DeploymentInfo$createTime": "<p>A timestamp indicating when the deployment was created.</p>",
1217
- "DeploymentInfo$startTime": "<p>A timestamp indicating when the deployment began deploying to the deployment group.</p> <p>Note that in some cases, the reported value of the start time may be later than the complete time. This is due to differences in the clock settings of various back-end servers that participate in the overall deployment process.</p>",
1218
- "DeploymentInfo$completeTime": "<p>A timestamp indicating when the deployment was completed.</p>",
1219
- "GenericRevisionInfo$firstUsedTime": "<p>When the revision was first used by AWS CodeDeploy.</p>",
1220
- "GenericRevisionInfo$lastUsedTime": "<p>When the revision was last used by AWS CodeDeploy.</p>",
1221
- "GenericRevisionInfo$registerTime": "<p>When the revision was registered with AWS CodeDeploy.</p>",
1222
- "InstanceInfo$registerTime": "<p>The time that the on-premises instance was registered.</p>",
1223
- "InstanceInfo$deregisterTime": "<p>If the on-premises instance was deregistered, the time that the on-premises instance was deregistered.</p>",
1224
- "InstanceSummary$lastUpdatedAt": "<p>A timestamp indicating when the instance information was last updated.</p>",
1225
- "LifecycleEvent$startTime": "<p>A timestamp indicating when the deployment lifecycle event started.</p>",
1226
- "LifecycleEvent$endTime": "<p>A timestamp indicating when the deployment lifecycle event ended.</p>",
1227
- "TimeRange$start": "<p>The time range's start time.</p> <note>Specify null to leave the time range's start time open-ended.</note>",
1228
- "TimeRange$end": "<p>The time range's end time.</p> <note>Specify null to leave the time range's end time open-ended.</note>"
1229
- }
1230
- },
1231
- "UpdateApplicationInput": {
1232
- "base": "<p>Represents the input of an update application operation.</p>",
1233
- "refs": {
1234
- }
1235
- },
1236
- "UpdateDeploymentGroupInput": {
1237
- "base": "<p>Represents the input of an update deployment group operation.</p>",
1238
- "refs": {
1239
- }
1240
- },
1241
- "UpdateDeploymentGroupOutput": {
1242
- "base": "<p>Represents the output of an update deployment group operation.</p>",
1243
- "refs": {
1244
- }
1245
- },
1246
- "Value": {
1247
- "base": null,
1248
- "refs": {
1249
- "EC2TagFilter$Value": "<p>The tag filter value.</p>",
1250
- "Tag$Value": "<p>The tag's value.</p>",
1251
- "TagFilter$Value": "<p>The on-premises instance tag filter value.</p>"
1252
- }
1253
- },
1254
- "VersionId": {
1255
- "base": null,
1256
- "refs": {
1257
- "S3Location$version": "<p>A specific version of the Amazon S3 object that represents the bundled artifacts for the application revision.</p> <p>If the version is not specified, the system will use the most recent version by default.</p>"
1258
- }
1259
- }
1260
- }
1261
- }