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,514 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "DeleteDeliveryChannel": "<p>Deletes the specified delivery channel.</p> <p>The delivery channel cannot be deleted if it is the only delivery channel and the configuration recorder is still running. To delete the delivery channel, stop the running configuration recorder using the <a>StopConfigurationRecorder</a> action.</p>",
5
- "DeliverConfigSnapshot": "<p>Schedules delivery of a configuration snapshot to the Amazon S3 bucket in the specified delivery channel. After the delivery has started, AWS Config sends following notifications using an Amazon SNS topic that you have specified.</p> <ul> <li>Notification of starting the delivery.</li> <li>Notification of delivery completed, if the delivery was successfully completed.</li> <li>Notification of delivery failure, if the delivery failed to complete.</li> </ul>",
6
- "DescribeConfigurationRecorderStatus": "<p>Returns the current status of the specified configuration recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorder associated with the account.</p> <note>Currently, you can specify only one configuration recorder per account.</note>",
7
- "DescribeConfigurationRecorders": "<p>Returns the name of one or more specified configuration recorders. If the recorder name is not specified, this action returns the names of all the configuration recorders associated with the account. </p> <note> <p>Currently, you can specify only one configuration recorder per account.</p> </note>",
8
- "DescribeDeliveryChannelStatus": "<p>Returns the current status of the specified delivery channel. If a delivery channel is not specified, this action returns the current status of all delivery channels associated with the account. </p> <note>Currently, you can specify only one delivery channel per account.</note>",
9
- "DescribeDeliveryChannels": "<p>Returns details about the specified delivery channel. If a delivery channel is not specified, this action returns the details of all delivery channels associated with the account. </p> <note> <p>Currently, you can specify only one delivery channel per account.</p></note>",
10
- "GetResourceConfigHistory": "<p>Returns a list of configuration items for the specified resource. The list contains details about each state of the resource during the specified time interval. You can specify a <code>limit</code> on the number of results returned on the page. If a limit is specified, a <code>nextToken</code> is returned as part of the result that you can use to continue this request. </p> <note> <p>Each call to the API is limited to span a duration of seven days. It is likely that the number of records returned is smaller than the specified <code>limit</code>. In such cases, you can make another call, using the <code>nextToken</code> .</p> </note>",
11
- "PutConfigurationRecorder": "<p>Creates a new configuration recorder to record the resource configurations. </p> <p>You can use this action to change the role (<code>roleARN</code>) of an existing recorder. To change the role, call the action on the existing configuration recorder and specify a role.</p> <note> <p>Currently, you can specify only one configuration recorder per account. </p> </note>",
12
- "PutDeliveryChannel": "<p>Creates a new delivery channel object to deliver the configuration information to an Amazon S3 bucket, and to an Amazon SNS topic. </p> <p>You can use this action to change the Amazon S3 bucket or an Amazon SNS topic of the existing delivery channel. To change the Amazon S3 bucket or an Amazon SNS topic, call this action and specify the changed values for the S3 bucket and the SNS topic. If you specify a different value for either the S3 bucket or the SNS topic, this action will keep the existing value for the parameter that is not changed. </p> <note> <p>Currently, you can specify only one delivery channel per account.</p> </note>",
13
- "StartConfigurationRecorder": "<p>Starts recording configurations of all the resources associated with the account.</p> <p>You must have created at least one delivery channel to successfully start the configuration recorder.</p>",
14
- "StopConfigurationRecorder": "<p>Stops recording configurations of all the resources associated with the account.</p>"
15
- },
16
- "service": "<fullname>AWS Config</fullname> <p>AWS Config provides a way to keep track of the configurations of all the AWS resources associated with your AWS account. You can use AWS Config to get the current and historical configurations of each AWS resource and also to get information about the relationship between the resources. An AWS resource can be an Amazon Compute Cloud (Amazon EC2) instance, an Elastic Block Store (EBS) volume, an Elastic network Interface (ENI), or a security group. For a complete list of resources currently supported by AWS Config, see <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/config-concepts.html\">Supported AWS Resources</a>.</p> <p>You can access and manage AWS Config through the AWS Management Console, the AWS Command Line Interface (AWS CLI), the AWS Config API, or the AWS SDKs for AWS Config</p> <p>This reference guide contains documentation for the AWS Config API and the AWS CLI commands that you can use to manage AWS Config.</p> <p>The AWS Config API uses the Signature Version 4 protocol for signing requests. For more information about how to sign a request with this protocol, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html\">Signature Version 4 Signing Process</a>.</p> <p>For detailed information about AWS Config features and their associated actions or commands, as well as how to work with AWS Management Console, see <a href=\"http://docs.aws.amazon.com/config/latest/developerguide/WhatIsConfig.html\">What Is AWS Config?</a> in the <i>AWS Config Developer Guide</i>.</p>",
17
- "shapes": {
18
- "ARN": {
19
- "base": null,
20
- "refs": {
21
- "ConfigurationItem$arn": "<p>The Amazon Resource Name (ARN) of the resource.</p>"
22
- }
23
- },
24
- "AccountId": {
25
- "base": null,
26
- "refs": {
27
- "ConfigurationItem$accountId": "<p>The 12 digit AWS account ID associated with the resource.</p>"
28
- }
29
- },
30
- "AvailabilityZone": {
31
- "base": null,
32
- "refs": {
33
- "ConfigurationItem$availabilityZone": "<p>The Availability Zone associated with the resource.</p>"
34
- }
35
- },
36
- "Boolean": {
37
- "base": null,
38
- "refs": {
39
- "ConfigurationRecorderStatus$recording": "<p>Specifies whether the recorder is currently recording or not.</p>"
40
- }
41
- },
42
- "ChannelName": {
43
- "base": null,
44
- "refs": {
45
- "DeleteDeliveryChannelRequest$DeliveryChannelName": "<p>The name of the delivery channel to delete.</p>",
46
- "DeliverConfigSnapshotRequest$deliveryChannelName": "<p>The name of the delivery channel through which the snapshot is delivered.</p>",
47
- "DeliveryChannel$name": "<p>The name of the delivery channel. By default, AWS Config automatically assigns the name \"default\" when creating the delivery channel. You cannot change the assigned name. </p>",
48
- "DeliveryChannelNameList$member": null
49
- }
50
- },
51
- "ChronologicalOrder": {
52
- "base": null,
53
- "refs": {
54
- "GetResourceConfigHistoryRequest$chronologicalOrder": "<p>The chronological order for configuration items listed. By default the results are listed in reverse chronological order.</p>"
55
- }
56
- },
57
- "ConfigExportDeliveryInfo": {
58
- "base": "<p>A list that contains the status of the delivery of either the snapshot or the configuration history to the specified Amazon S3 bucket.</p>",
59
- "refs": {
60
- "DeliveryChannelStatus$configSnapshotDeliveryInfo": "<p>A list containing the status of the delivery of the snapshot to the specified Amazon S3 bucket.</p>",
61
- "DeliveryChannelStatus$configHistoryDeliveryInfo": "<p>A list that contains the status of the delivery of the configuration history to the specified Amazon S3 bucket.</p>"
62
- }
63
- },
64
- "ConfigStreamDeliveryInfo": {
65
- "base": "<p>A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic. </p>",
66
- "refs": {
67
- "DeliveryChannelStatus$configStreamDeliveryInfo": "<p>A list containing the status of the delivery of the configuration stream notification to the specified Amazon SNS topic.</p>"
68
- }
69
- },
70
- "Configuration": {
71
- "base": null,
72
- "refs": {
73
- "ConfigurationItem$configuration": "<p>The description of the resource configuration.</p>"
74
- }
75
- },
76
- "ConfigurationItem": {
77
- "base": "<p>A list that contains detailed configurations of a specified resource.</p> <note> <p>Currently, the list does not contain information about non-AWS components (for example, applications on your Amazon EC2 instances). </p> </note>",
78
- "refs": {
79
- "ConfigurationItemList$member": null
80
- }
81
- },
82
- "ConfigurationItemCaptureTime": {
83
- "base": null,
84
- "refs": {
85
- "ConfigurationItem$configurationItemCaptureTime": "<p>The time when the configuration recording was initiated.</p>"
86
- }
87
- },
88
- "ConfigurationItemList": {
89
- "base": null,
90
- "refs": {
91
- "GetResourceConfigHistoryResponse$configurationItems": "<p>A list that contains the configuration history of one or more resources.</p>"
92
- }
93
- },
94
- "ConfigurationItemMD5Hash": {
95
- "base": null,
96
- "refs": {
97
- "ConfigurationItem$configurationItemMD5Hash": "<p>Unique MD5 hash that represents the configuration item's state.</p> <p>You can use MD5 hash to compare the states of two or more configuration items that are associated with the same resource.</p>"
98
- }
99
- },
100
- "ConfigurationItemStatus": {
101
- "base": null,
102
- "refs": {
103
- "ConfigurationItem$configurationItemStatus": "<p>The configuration item status.</p>"
104
- }
105
- },
106
- "ConfigurationRecorder": {
107
- "base": "<p>An object that represents the recording of configuration changes of an AWS resource.</p>",
108
- "refs": {
109
- "ConfigurationRecorderList$member": null,
110
- "PutConfigurationRecorderRequest$ConfigurationRecorder": "<p>The configuration recorder object that records each configuration change made to the resources.</p>"
111
- }
112
- },
113
- "ConfigurationRecorderList": {
114
- "base": null,
115
- "refs": {
116
- "DescribeConfigurationRecordersResponse$ConfigurationRecorders": "<p>A list that contains the descriptions of the specified configuration recorders.</p>"
117
- }
118
- },
119
- "ConfigurationRecorderNameList": {
120
- "base": null,
121
- "refs": {
122
- "DescribeConfigurationRecorderStatusRequest$ConfigurationRecorderNames": "<p>The name(s) of the configuration recorder. If the name is not specified, the action returns the current status of all the configuration recorders associated with the account. </p>",
123
- "DescribeConfigurationRecordersRequest$ConfigurationRecorderNames": "<p>A list of configuration recorder names.</p>"
124
- }
125
- },
126
- "ConfigurationRecorderStatus": {
127
- "base": "<p>The current status of the configuration recorder.</p>",
128
- "refs": {
129
- "ConfigurationRecorderStatusList$member": null
130
- }
131
- },
132
- "ConfigurationRecorderStatusList": {
133
- "base": null,
134
- "refs": {
135
- "DescribeConfigurationRecorderStatusResponse$ConfigurationRecordersStatus": "<p> A list that contains status of the specified recorders. </p>"
136
- }
137
- },
138
- "ConfigurationStateId": {
139
- "base": null,
140
- "refs": {
141
- "ConfigurationItem$configurationStateId": "<p>An identifier that indicates the ordering of the configuration items of a resource.</p>"
142
- }
143
- },
144
- "Date": {
145
- "base": null,
146
- "refs": {
147
- "ConfigExportDeliveryInfo$lastAttemptTime": "<p>The time of the last attempted delivery.</p>",
148
- "ConfigExportDeliveryInfo$lastSuccessfulTime": "<p>The time of the last successful delivery.</p>",
149
- "ConfigStreamDeliveryInfo$lastStatusChangeTime": "<p>The time from the last status change.</p>",
150
- "ConfigurationRecorderStatus$lastStartTime": "<p>The time the recorder was last started.</p>",
151
- "ConfigurationRecorderStatus$lastStopTime": "<p>The time the recorder was last stopped.</p>",
152
- "ConfigurationRecorderStatus$lastStatusChangeTime": "<p>The time when the status was last changed.</p>"
153
- }
154
- },
155
- "DeleteDeliveryChannelRequest": {
156
- "base": "<p> The input for the <a>DeleteDeliveryChannel</a> action. The action accepts the following data in JSON format. </p>",
157
- "refs": {
158
- }
159
- },
160
- "DeliverConfigSnapshotRequest": {
161
- "base": "<p> The input for the <a>DeliverConfigSnapshot</a> action. </p>",
162
- "refs": {
163
- }
164
- },
165
- "DeliverConfigSnapshotResponse": {
166
- "base": "<p> The output for the <a>DeliverConfigSnapshot</a> action in JSON format. </p>",
167
- "refs": {
168
- }
169
- },
170
- "DeliveryChannel": {
171
- "base": "<p>A logical container used for storing the configuration changes of an AWS resource.</p>",
172
- "refs": {
173
- "DeliveryChannelList$member": null,
174
- "PutDeliveryChannelRequest$DeliveryChannel": "<p>The configuration delivery channel object that delivers the configuration information to an Amazon S3 bucket, and to an Amazon SNS topic.</p>"
175
- }
176
- },
177
- "DeliveryChannelList": {
178
- "base": null,
179
- "refs": {
180
- "DescribeDeliveryChannelsResponse$DeliveryChannels": "<p>A list that contains the descriptions of the specified delivery channel.</p>"
181
- }
182
- },
183
- "DeliveryChannelNameList": {
184
- "base": null,
185
- "refs": {
186
- "DescribeDeliveryChannelStatusRequest$DeliveryChannelNames": "<p>A list of delivery channel names.</p>",
187
- "DescribeDeliveryChannelsRequest$DeliveryChannelNames": "<p>A list of delivery channel names.</p>"
188
- }
189
- },
190
- "DeliveryChannelStatus": {
191
- "base": "<p>The status of a specified delivery channel.</p> <p>Valid values: <code>Success</code> | <code>Failure</code></p>",
192
- "refs": {
193
- "DeliveryChannelStatusList$member": null
194
- }
195
- },
196
- "DeliveryChannelStatusList": {
197
- "base": null,
198
- "refs": {
199
- "DescribeDeliveryChannelStatusResponse$DeliveryChannelsStatus": "<p>A list that contains the status of a specified delivery channel.</p>"
200
- }
201
- },
202
- "DeliveryStatus": {
203
- "base": null,
204
- "refs": {
205
- "ConfigExportDeliveryInfo$lastStatus": "<p>Status of the last attempted delivery.</p>",
206
- "ConfigStreamDeliveryInfo$lastStatus": "<p>Status of the last attempted delivery.</p>"
207
- }
208
- },
209
- "DescribeConfigurationRecorderStatusRequest": {
210
- "base": "<p>The input for the <a>DescribeConfigurationRecorderStatus</a> action.</p>",
211
- "refs": {
212
- }
213
- },
214
- "DescribeConfigurationRecorderStatusResponse": {
215
- "base": "<p>The output for the <a>DescribeConfigurationRecorderStatus</a> action in JSON format.</p>",
216
- "refs": {
217
- }
218
- },
219
- "DescribeConfigurationRecordersRequest": {
220
- "base": "<p>The input for the <a>DescribeConfigurationRecorders</a> action.</p>",
221
- "refs": {
222
- }
223
- },
224
- "DescribeConfigurationRecordersResponse": {
225
- "base": "<p>The output for the <a>DescribeConfigurationRecorders</a> action.</p>",
226
- "refs": {
227
- }
228
- },
229
- "DescribeDeliveryChannelStatusRequest": {
230
- "base": "<p>The input for the <a>DeliveryChannelStatus</a> action.</p>",
231
- "refs": {
232
- }
233
- },
234
- "DescribeDeliveryChannelStatusResponse": {
235
- "base": "<p>The output for the <a>DescribeDeliveryChannelStatus</a> action.</p>",
236
- "refs": {
237
- }
238
- },
239
- "DescribeDeliveryChannelsRequest": {
240
- "base": "<p>The input for the <a>DescribeDeliveryChannels</a> action.</p>",
241
- "refs": {
242
- }
243
- },
244
- "DescribeDeliveryChannelsResponse": {
245
- "base": "<p>The output for the <a>DescribeDeliveryChannels</a> action.</p>",
246
- "refs": {
247
- }
248
- },
249
- "EarlierTime": {
250
- "base": null,
251
- "refs": {
252
- "GetResourceConfigHistoryRequest$earlierTime": "<p>The time stamp that indicates an earlier time. If not specified, the action returns paginated results that contain configuration items that start from when the first configuration item was recorded.</p>"
253
- }
254
- },
255
- "GetResourceConfigHistoryRequest": {
256
- "base": "<p>The input for the <a>GetResourceConfigHistory</a> action.</p>",
257
- "refs": {
258
- }
259
- },
260
- "GetResourceConfigHistoryResponse": {
261
- "base": "<p>The output for the <a>GetResourceConfigHistory</a> action.</p>",
262
- "refs": {
263
- }
264
- },
265
- "InsufficientDeliveryPolicyException": {
266
- "base": "<p>Your Amazon S3 bucket policy does not permit AWS Config to write to it.</p>",
267
- "refs": {
268
- }
269
- },
270
- "InvalidConfigurationRecorderNameException": {
271
- "base": "<p>You have provided a configuration recorder name that is not valid.</p>",
272
- "refs": {
273
- }
274
- },
275
- "InvalidDeliveryChannelNameException": {
276
- "base": "<p>The specified delivery channel name is not valid.</p>",
277
- "refs": {
278
- }
279
- },
280
- "InvalidLimitException": {
281
- "base": "<p>You have reached the limit on the pagination.</p>",
282
- "refs": {
283
- }
284
- },
285
- "InvalidNextTokenException": {
286
- "base": "<p>The specified nextToken for pagination is not valid.</p>",
287
- "refs": {
288
- }
289
- },
290
- "InvalidRoleException": {
291
- "base": "<p>You have provided a null or empty role ARN.</p>",
292
- "refs": {
293
- }
294
- },
295
- "InvalidS3KeyPrefixException": {
296
- "base": "<p>The specified Amazon S3 key prefix is not valid.</p>",
297
- "refs": {
298
- }
299
- },
300
- "InvalidSNSTopicARNException": {
301
- "base": "<p>The specified Amazon SNS topic does not exist.</p>",
302
- "refs": {
303
- }
304
- },
305
- "InvalidTimeRangeException": {
306
- "base": "<p>The specified time range is not valid. The earlier time is not chronologically before the later time.</p>",
307
- "refs": {
308
- }
309
- },
310
- "LastDeliveryChannelDeleteFailedException": {
311
- "base": "<p>You cannot delete the delivery channel you specified because the configuration recorder is running.</p>",
312
- "refs": {
313
- }
314
- },
315
- "LaterTime": {
316
- "base": null,
317
- "refs": {
318
- "GetResourceConfigHistoryRequest$laterTime": "<p>The time stamp that indicates a later time. If not specified, current time is taken.</p>"
319
- }
320
- },
321
- "Limit": {
322
- "base": null,
323
- "refs": {
324
- "GetResourceConfigHistoryRequest$limit": "<p>The maximum number of configuration items returned in each page. The default is 10. You cannot specify a limit greater than 100.</p>"
325
- }
326
- },
327
- "MaxNumberOfConfigurationRecordersExceededException": {
328
- "base": "<p>You have reached the limit on the number of recorders you can create.</p>",
329
- "refs": {
330
- }
331
- },
332
- "MaxNumberOfDeliveryChannelsExceededException": {
333
- "base": "<p>You have reached the limit on the number of delivery channels you can create.</p>",
334
- "refs": {
335
- }
336
- },
337
- "Name": {
338
- "base": null,
339
- "refs": {
340
- "Tags$key": null
341
- }
342
- },
343
- "NextToken": {
344
- "base": null,
345
- "refs": {
346
- "GetResourceConfigHistoryRequest$nextToken": "<p>An optional parameter used for pagination of the results. </p>",
347
- "GetResourceConfigHistoryResponse$nextToken": "<p>A token used for pagination of results. </p>"
348
- }
349
- },
350
- "NoAvailableConfigurationRecorderException": {
351
- "base": "<p>There are no configuration recorders available to provide the role needed to describe your resources.</p>",
352
- "refs": {
353
- }
354
- },
355
- "NoAvailableDeliveryChannelException": {
356
- "base": "<p>There is no delivery channel available to record configurations.</p>",
357
- "refs": {
358
- }
359
- },
360
- "NoRunningConfigurationRecorderException": {
361
- "base": "<p>There is no configuration recorder running.</p>",
362
- "refs": {
363
- }
364
- },
365
- "NoSuchBucketException": {
366
- "base": "<p>The specified Amazon S3 bucket does not exist.</p>",
367
- "refs": {
368
- }
369
- },
370
- "NoSuchConfigurationRecorderException": {
371
- "base": "<p>You have specified a configuration recorder that does not exist.</p>",
372
- "refs": {
373
- }
374
- },
375
- "NoSuchDeliveryChannelException": {
376
- "base": "<p>You have specified a delivery channel that does not exist.</p>",
377
- "refs": {
378
- }
379
- },
380
- "PutConfigurationRecorderRequest": {
381
- "base": "<p>The input for the <a>PutConfigurationRecorder</a> action.</p>",
382
- "refs": {
383
- }
384
- },
385
- "PutDeliveryChannelRequest": {
386
- "base": "<p>The input for the <a>PutDeliveryChannel</a> action.</p>",
387
- "refs": {
388
- }
389
- },
390
- "RecorderName": {
391
- "base": null,
392
- "refs": {
393
- "ConfigurationRecorder$name": "<p>The name of the recorder. By default, AWS Config automatically assigns the name \"default\" when creating the configuration recorder. You cannot change the assigned name.</p>",
394
- "ConfigurationRecorderNameList$member": null,
395
- "StartConfigurationRecorderRequest$ConfigurationRecorderName": "<p>The name of the recorder object that records each configuration change made to the resources.</p>",
396
- "StopConfigurationRecorderRequest$ConfigurationRecorderName": "<p>The name of the recorder object that records each configuration change made to the resources.</p>"
397
- }
398
- },
399
- "RecorderStatus": {
400
- "base": null,
401
- "refs": {
402
- "ConfigurationRecorderStatus$lastStatus": "<p>The last (previous) status of the recorder.</p>"
403
- }
404
- },
405
- "RelatedEvent": {
406
- "base": null,
407
- "refs": {
408
- "RelatedEventList$member": null
409
- }
410
- },
411
- "RelatedEventList": {
412
- "base": null,
413
- "refs": {
414
- "ConfigurationItem$relatedEvents": "<p>A list of CloudTrail event IDs.</p> <p>A populated field indicates that the current configuration was initiated by the events recorded in the CloudTrail log. For more information about CloudTrail, see <a href=\"http://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html\">What is AWS CloudTrail?</a>.</p> <p>An empty field indicates that the current configuration was not initiated by any event.</p>"
415
- }
416
- },
417
- "Relationship": {
418
- "base": "<p>The relationship of the related resource to the main resource.</p>",
419
- "refs": {
420
- "RelationshipList$member": null
421
- }
422
- },
423
- "RelationshipList": {
424
- "base": null,
425
- "refs": {
426
- "ConfigurationItem$relationships": "<p>A list of related AWS resources.</p>"
427
- }
428
- },
429
- "RelationshipName": {
430
- "base": null,
431
- "refs": {
432
- "Relationship$relationshipName": "<p>The name of the related resource.</p>"
433
- }
434
- },
435
- "ResourceCreationTime": {
436
- "base": null,
437
- "refs": {
438
- "ConfigurationItem$resourceCreationTime": "<p>The time stamp when the resource was created. </p>"
439
- }
440
- },
441
- "ResourceId": {
442
- "base": null,
443
- "refs": {
444
- "ConfigurationItem$resourceId": "<p>The ID of the resource (for example., <code>sg-xxxxxx</code>).</p>",
445
- "GetResourceConfigHistoryRequest$resourceId": "<p>The ID of the resource (for example., <code>sg-xxxxxx</code>).</p>",
446
- "Relationship$resourceId": "<p>The resource ID of the related resource (for example, <code>sg-xxxxxx</code>.</p>"
447
- }
448
- },
449
- "ResourceNotDiscoveredException": {
450
- "base": "<p>You have specified a resource that is either unknown or has not been discovered.</p>",
451
- "refs": {
452
- }
453
- },
454
- "ResourceType": {
455
- "base": null,
456
- "refs": {
457
- "ConfigurationItem$resourceType": "<p>The type of AWS resource.</p>",
458
- "GetResourceConfigHistoryRequest$resourceType": "<p>The resource type.</p>",
459
- "Relationship$resourceType": "<p>The resource type of the related resource.</p>"
460
- }
461
- },
462
- "StartConfigurationRecorderRequest": {
463
- "base": "<p>The input for the <a>StartConfigurationRecorder</a> action.</p>",
464
- "refs": {
465
- }
466
- },
467
- "StopConfigurationRecorderRequest": {
468
- "base": "<p><p>The input for the <a>StopConfigurationRecorder</a> action.</p></p>",
469
- "refs": {
470
- }
471
- },
472
- "String": {
473
- "base": null,
474
- "refs": {
475
- "ConfigExportDeliveryInfo$lastErrorCode": "<p>The error code from the last attempted delivery.</p>",
476
- "ConfigExportDeliveryInfo$lastErrorMessage": "<p>The error message from the last attempted delivery.</p>",
477
- "ConfigStreamDeliveryInfo$lastErrorCode": "<p>The error code from the last attempted delivery.</p>",
478
- "ConfigStreamDeliveryInfo$lastErrorMessage": "<p>The error message from the last attempted delivery.</p>",
479
- "ConfigurationRecorder$roleARN": "<p>Amazon Resource Name (ARN) of the IAM role used to describe the AWS resources associated with the account.</p>",
480
- "ConfigurationRecorderStatus$name": "<p>The name of the configuration recorder.</p>",
481
- "ConfigurationRecorderStatus$lastErrorCode": "<p>The error code indicating that the recording failed.</p>",
482
- "ConfigurationRecorderStatus$lastErrorMessage": "<p>The message indicating that the recording failed due to an error.</p>",
483
- "DeliverConfigSnapshotResponse$configSnapshotId": "<p>The ID of the snapshot that is being created.</p>",
484
- "DeliveryChannel$s3BucketName": "<p>The name of the Amazon S3 bucket used to store configuration history for the delivery channel.</p>",
485
- "DeliveryChannel$s3KeyPrefix": "<p>The prefix for the specified Amazon S3 bucket.</p>",
486
- "DeliveryChannel$snsTopicARN": "<p>The Amazon Resource Name (ARN) of the IAM role used for accessing the Amazon S3 bucket and the Amazon SNS topic.</p>",
487
- "DeliveryChannelStatus$name": "<p>The name of the delivery channel.</p>"
488
- }
489
- },
490
- "Tags": {
491
- "base": null,
492
- "refs": {
493
- "ConfigurationItem$tags": "<p>A mapping of key value tags associated with the resource.</p>"
494
- }
495
- },
496
- "ValidationException": {
497
- "base": "<p>The requested action is not valid.</p>",
498
- "refs": {
499
- }
500
- },
501
- "Value": {
502
- "base": null,
503
- "refs": {
504
- "Tags$value": null
505
- }
506
- },
507
- "Version": {
508
- "base": null,
509
- "refs": {
510
- "ConfigurationItem$version": "<p>The version number of the resource configuration.</p>"
511
- }
512
- }
513
- }
514
- }