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
- "operations": {
3
- "DeleteAlarms": "<p> Deletes all specified alarms. In the event of an error, no alarms are deleted. </p>",
4
- "DescribeAlarmHistory": "<p> Retrieves history for the specified alarm. Filter alarms by date range or item type. If an alarm name is not specified, Amazon CloudWatch returns histories for all of the owner's alarms. </p>",
5
- "DescribeAlarms": "<p> Retrieves alarms with the specified names. If no name is specified, all alarms for the user are returned. Alarms can be retrieved by using only a prefix for the alarm name, the alarm state, or a prefix for any action. </p>",
6
- "DescribeAlarmsForMetric": "<p> Retrieves all alarms for a single metric. Specify a statistic, period, or unit to filter the set of alarms further. </p>",
7
- "DisableAlarmActions": "<p> Disables actions for the specified alarms. When an alarm's actions are disabled the alarm's state may change, but none of the alarm's actions will execute. </p>",
8
- "EnableAlarmActions": "<p> Enables actions for the specified alarms. </p>",
9
- "GetMetricStatistics": "<p> Gets statistics for the specified metric. </p> <p> The maximum number of data points returned from a single <code>GetMetricStatistics</code> request is 1,440, wereas the maximum number of data points that can be queried is 50,850. If you make a request that generates more than 1,440 data points, Amazon CloudWatch returns an error. In such a case, you can alter the request by narrowing the specified time range or increasing the specified period. Alternatively, you can make multiple requests across adjacent time ranges. </p> <p> Amazon CloudWatch aggregates data points based on the length of the <code>period</code> that you specify. For example, if you request statistics with a one-minute granularity, Amazon CloudWatch aggregates data points with time stamps that fall within the same one-minute period. In such a case, the data points queried can greatly outnumber the data points returned. </p> <p> The following examples show various statistics allowed by the data point query maximum of 50,850 when you call <code>GetMetricStatistics</code> on Amazon EC2 instances with detailed (one-minute) monitoring enabled: </p> <ul> <li>Statistics for up to 400 instances for a span of one hour</li> <li>Statistics for up to 35 instances over a span of 24 hours</li> <li>Statistics for up to 2 instances over a span of 2 weeks</li> </ul> <p> For information about the namespace, metric names, and dimensions that other Amazon Web Services products use to send metrics to Cloudwatch, go to <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html\">Amazon CloudWatch Metrics, Namespaces, and Dimensions Reference</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p>",
10
- "ListMetrics": "<p> Returns a list of valid metrics stored for the AWS account owner. Returned metrics can be used with <a>GetMetricStatistics</a> to obtain statistical data for a given metric. </p>",
11
- "PutMetricAlarm": "<p> Creates or updates an alarm and associates it with the specified Amazon CloudWatch metric. Optionally, this operation can associate one or more Amazon Simple Notification Service resources with the alarm. </p> <p> When this operation creates an alarm, the alarm state is immediately set to <code>INSUFFICIENT_DATA</code>. The alarm is evaluated and its <code>StateValue</code> is set appropriately. Any actions associated with the <code>StateValue</code> is then executed. </p>",
12
- "PutMetricData": "<p> Publishes metric data points to Amazon CloudWatch. Amazon Cloudwatch associates the data points with the specified metric. If the specified metric does not exist, Amazon CloudWatch creates the metric. It can take up to fifteen minutes for a new metric to appear in calls to the <a>ListMetrics</a> action.</p> <p> The size of a <function>PutMetricData</function> request is limited to 8 KB for HTTP GET requests and 40 KB for HTTP POST requests. </p> <important> Although the <code>Value</code> parameter accepts numbers of type <code>Double</code>, Amazon CloudWatch truncates values with very large exponents. Values with base-10 exponents greater than 126 (1 x 10^126) are truncated. Likewise, values with base-10 exponents less than -130 (1 x 10^-130) are also truncated. </important> <p>Data that is timestamped 24 hours or more in the past may take in excess of 48 hours to become available from submission time using <code>GetMetricStatistics</code>.</p>",
13
- "SetAlarmState": "<p> Temporarily sets the state of an alarm. When the updated <code>StateValue</code> differs from the previous value, the action configured for the appropriate state is invoked. This is not a permanent change. The next periodic alarm check (in about a minute) will set the alarm to its actual state. </p>"
14
- },
15
- "service": "<p>This is the <i>Amazon CloudWatch API Reference</i>. This guide provides detailed information about Amazon CloudWatch actions, data types, parameters, and errors. For detailed information about Amazon CloudWatch features and their associated API calls, go to the <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide\">Amazon CloudWatch Developer Guide</a>. </p> <p>Amazon CloudWatch is a web service that enables you to publish, monitor, and manage various metrics, as well as configure alarm actions based on data from metrics. For more information about this product go to <a href=\"http://aws.amazon.com/cloudwatch\">http://aws.amazon.com/cloudwatch</a>. </p> <p> For information about the namespace, metric names, and dimensions that other Amazon Web Services products use to send metrics to Cloudwatch, go to <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html\">Amazon CloudWatch Metrics, Namespaces, and Dimensions Reference</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p> <p>Use the following links to get started using the <i>Amazon CloudWatch API Reference</i>:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Operations.html\">Actions</a>: An alphabetical list of all Amazon CloudWatch actions.</li> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Types.html\">Data Types</a>: An alphabetical list of all Amazon CloudWatch data types.</li> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CommonParameters.html\">Common Parameters</a>: Parameters that all Query actions can use.</li> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/CommonErrors.html\">Common Errors</a>: Client and server errors that all actions can return.</li> <li> <a href=\"http://docs.aws.amazon.com/general/latest/gr/index.html?rande.html\">Regions and Endpoints</a>: Itemized regions and endpoints for all AWS products.</li> <li> <a href=\"http://monitoring.amazonaws.com/doc/2010-08-01/CloudWatch.wsdl\">WSDL Location</a>: http://monitoring.amazonaws.com/doc/2010-08-01/CloudWatch.wsdl</li> </ul> <p>In addition to using the Amazon CloudWatch API, you can also use the following SDKs and third-party libraries to access Amazon CloudWatch programmatically.</p> <ul> <li><a href=\"http://aws.amazon.com/documentation/sdkforjava/\">AWS SDK for Java Documentation</a></li> <li><a href=\"http://aws.amazon.com/documentation/sdkfornet/\">AWS SDK for .NET Documentation</a></li> <li><a href=\"http://aws.amazon.com/documentation/sdkforphp/\">AWS SDK for PHP Documentation</a></li> <li><a href=\"http://aws.amazon.com/documentation/sdkforruby/\">AWS SDK for Ruby Documentation</a></li> </ul> <p>Developers in the AWS developer community also provide their own libraries, which you can find at the following AWS developer centers:</p> <ul> <li><a href=\"http://aws.amazon.com/java/\">AWS Java Developer Center</a></li> <li><a href=\"http://aws.amazon.com/php/\">AWS PHP Developer Center</a></li> <li><a href=\"http://aws.amazon.com/python/\">AWS Python Developer Center</a></li> <li><a href=\"http://aws.amazon.com/ruby/\">AWS Ruby Developer Center</a></li> <li><a href=\"http://aws.amazon.com/net/\">AWS Windows and .NET Developer Center</a></li> </ul>",
16
- "shapes": {
17
- "ActionPrefix": {
18
- "base": null,
19
- "refs": {
20
- "DescribeAlarmsInput$ActionPrefix": "<p> The action name prefix. </p>"
21
- }
22
- },
23
- "ActionsEnabled": {
24
- "base": null,
25
- "refs": {
26
- "MetricAlarm$ActionsEnabled": "<p> Indicates whether actions should be executed during any changes to the alarm's state. </p>",
27
- "PutMetricAlarmInput$ActionsEnabled": "<p> Indicates whether or not actions should be executed during any changes to the alarm's state. </p>"
28
- }
29
- },
30
- "AlarmArn": {
31
- "base": null,
32
- "refs": {
33
- "MetricAlarm$AlarmArn": "<p> The Amazon Resource Name (ARN) of the alarm. </p>"
34
- }
35
- },
36
- "AlarmDescription": {
37
- "base": null,
38
- "refs": {
39
- "MetricAlarm$AlarmDescription": "<p> The description for the alarm. </p>",
40
- "PutMetricAlarmInput$AlarmDescription": "<p> The description for the alarm. </p>"
41
- }
42
- },
43
- "AlarmHistoryItem": {
44
- "base": "<p> The <code>AlarmHistoryItem</code> data type contains descriptive information about the history of a specific alarm. If you call <a>DescribeAlarmHistory</a>, Amazon CloudWatch returns this data type as part of the <a>DescribeAlarmHistoryResult</a> data type. </p>",
45
- "refs": {
46
- "AlarmHistoryItems$member": null
47
- }
48
- },
49
- "AlarmHistoryItems": {
50
- "base": null,
51
- "refs": {
52
- "DescribeAlarmHistoryOutput$AlarmHistoryItems": "<p> A list of alarm histories in JSON format. </p>"
53
- }
54
- },
55
- "AlarmName": {
56
- "base": null,
57
- "refs": {
58
- "AlarmHistoryItem$AlarmName": "<p> The descriptive name for the alarm. </p>",
59
- "AlarmNames$member": null,
60
- "DescribeAlarmHistoryInput$AlarmName": "<p> The name of the alarm. </p>",
61
- "MetricAlarm$AlarmName": "<p> The name of the alarm. </p>",
62
- "PutMetricAlarmInput$AlarmName": "<p> The descriptive name for the alarm. This name must be unique within the user's AWS account </p>",
63
- "SetAlarmStateInput$AlarmName": "<p> The descriptive name for the alarm. This name must be unique within the user's AWS account. The maximum length is 255 characters. </p>"
64
- }
65
- },
66
- "AlarmNamePrefix": {
67
- "base": null,
68
- "refs": {
69
- "DescribeAlarmsInput$AlarmNamePrefix": "<p> The alarm name prefix. <code>AlarmNames</code> cannot be specified if this parameter is specified. </p>"
70
- }
71
- },
72
- "AlarmNames": {
73
- "base": null,
74
- "refs": {
75
- "DeleteAlarmsInput$AlarmNames": "<p> A list of alarms to be deleted. </p>",
76
- "DescribeAlarmsInput$AlarmNames": "<p> A list of alarm names to retrieve information for. </p>",
77
- "DisableAlarmActionsInput$AlarmNames": "<p> The names of the alarms to disable actions for. </p>",
78
- "EnableAlarmActionsInput$AlarmNames": "<p> The names of the alarms to enable actions for. </p>"
79
- }
80
- },
81
- "AwsQueryErrorMessage": {
82
- "base": null,
83
- "refs": {
84
- "InvalidParameterCombinationException$message": "<p></p>",
85
- "InvalidParameterValueException$message": "<p></p>",
86
- "MissingRequiredParameterException$message": "<p></p>"
87
- }
88
- },
89
- "ComparisonOperator": {
90
- "base": null,
91
- "refs": {
92
- "MetricAlarm$ComparisonOperator": "<p> The arithmetic operation to use when comparing the specified <code>Statistic</code> and <code>Threshold</code>. The specified <code>Statistic</code> value is used as the first operand. </p>",
93
- "PutMetricAlarmInput$ComparisonOperator": "<p> The arithmetic operation to use when comparing the specified <code>Statistic</code> and <code>Threshold</code>. The specified <code>Statistic</code> value is used as the first operand. </p>"
94
- }
95
- },
96
- "Datapoint": {
97
- "base": "<p> The <code>Datapoint</code> data type encapsulates the statistical data that Amazon CloudWatch computes from metric data. </p>",
98
- "refs": {
99
- "Datapoints$member": null
100
- }
101
- },
102
- "DatapointValue": {
103
- "base": null,
104
- "refs": {
105
- "Datapoint$SampleCount": "<p> The number of metric values that contributed to the aggregate value of this datapoint. </p>",
106
- "Datapoint$Average": "<p> The average of metric values that correspond to the datapoint. </p>",
107
- "Datapoint$Sum": "<p> The sum of metric values used for the datapoint. </p>",
108
- "Datapoint$Minimum": "<p> The minimum metric value used for the datapoint. </p>",
109
- "Datapoint$Maximum": "<p> The maximum of the metric value used for the datapoint. </p>",
110
- "MetricDatum$Value": "<p> The value for the metric. </p> <important>Although the <code>Value</code> parameter accepts numbers of type <code>Double</code>, Amazon CloudWatch truncates values with very large exponents. Values with base-10 exponents greater than 126 (1 x 10^126) are truncated. Likewise, values with base-10 exponents less than -130 (1 x 10^-130) are also truncated. </important>",
111
- "StatisticSet$SampleCount": "<p> The number of samples used for the statistic set. </p>",
112
- "StatisticSet$Sum": "<p> The sum of values for the sample set. </p>",
113
- "StatisticSet$Minimum": "<p> The minimum value of the sample set. </p>",
114
- "StatisticSet$Maximum": "<p> The maximum value of the sample set. </p>"
115
- }
116
- },
117
- "Datapoints": {
118
- "base": null,
119
- "refs": {
120
- "GetMetricStatisticsOutput$Datapoints": "<p> The datapoints for the specified metric. </p>"
121
- }
122
- },
123
- "DeleteAlarmsInput": {
124
- "base": null,
125
- "refs": {
126
- }
127
- },
128
- "DescribeAlarmHistoryInput": {
129
- "base": null,
130
- "refs": {
131
- }
132
- },
133
- "DescribeAlarmHistoryOutput": {
134
- "base": "<p> The output for the <a>DescribeAlarmHistory</a> action. </p>",
135
- "refs": {
136
- }
137
- },
138
- "DescribeAlarmsForMetricInput": {
139
- "base": null,
140
- "refs": {
141
- }
142
- },
143
- "DescribeAlarmsForMetricOutput": {
144
- "base": "<p> The output for the <a>DescribeAlarmsForMetric</a> action. </p>",
145
- "refs": {
146
- }
147
- },
148
- "DescribeAlarmsInput": {
149
- "base": null,
150
- "refs": {
151
- }
152
- },
153
- "DescribeAlarmsOutput": {
154
- "base": "<p> The output for the <a>DescribeAlarms</a> action. </p>",
155
- "refs": {
156
- }
157
- },
158
- "Dimension": {
159
- "base": "<p> The <code>Dimension</code> data type further expands on the identity of a metric using a Name, Value pair. </p> <p>For examples that use one or more dimensions, see <a>PutMetricData</a>.</p>",
160
- "refs": {
161
- "Dimensions$member": null
162
- }
163
- },
164
- "DimensionFilter": {
165
- "base": "<p> The <code>DimensionFilter</code> data type is used to filter <a>ListMetrics</a> results. </p>",
166
- "refs": {
167
- "DimensionFilters$member": null
168
- }
169
- },
170
- "DimensionFilters": {
171
- "base": null,
172
- "refs": {
173
- "ListMetricsInput$Dimensions": "<p> A list of dimensions to filter against. </p>"
174
- }
175
- },
176
- "DimensionName": {
177
- "base": null,
178
- "refs": {
179
- "Dimension$Name": "<p> The name of the dimension. </p>",
180
- "DimensionFilter$Name": "<p> The dimension name to be matched. </p>"
181
- }
182
- },
183
- "DimensionValue": {
184
- "base": null,
185
- "refs": {
186
- "Dimension$Value": "<p> The value representing the dimension measurement </p>",
187
- "DimensionFilter$Value": "<p> The value of the dimension to be matched. </p>"
188
- }
189
- },
190
- "Dimensions": {
191
- "base": null,
192
- "refs": {
193
- "DescribeAlarmsForMetricInput$Dimensions": "<p> The list of dimensions associated with the metric. </p>",
194
- "GetMetricStatisticsInput$Dimensions": "<p> A list of dimensions describing qualities of the metric. </p>",
195
- "Metric$Dimensions": "<p> A list of dimensions associated with the metric. </p>",
196
- "MetricAlarm$Dimensions": "<p> The list of dimensions associated with the alarm's associated metric. </p>",
197
- "MetricDatum$Dimensions": "<p> A list of dimensions associated with the metric. Note, when using the Dimensions value in a query, you need to append .member.N to it (e.g., Dimensions.member.N). </p>",
198
- "PutMetricAlarmInput$Dimensions": "<p> The dimensions for the alarm's associated metric. </p>"
199
- }
200
- },
201
- "DisableAlarmActionsInput": {
202
- "base": "<p> </p>",
203
- "refs": {
204
- }
205
- },
206
- "EnableAlarmActionsInput": {
207
- "base": null,
208
- "refs": {
209
- }
210
- },
211
- "ErrorMessage": {
212
- "base": null,
213
- "refs": {
214
- "InvalidFormatFault$message": "<p></p>",
215
- "InvalidNextToken$message": "<p></p>",
216
- "LimitExceededFault$message": "<p></p>",
217
- "ResourceNotFound$message": "<p></p>"
218
- }
219
- },
220
- "EvaluationPeriods": {
221
- "base": null,
222
- "refs": {
223
- "MetricAlarm$EvaluationPeriods": "<p> The number of periods over which data is compared to the specified threshold. </p>",
224
- "PutMetricAlarmInput$EvaluationPeriods": "<p> The number of periods over which data is compared to the specified threshold. </p>"
225
- }
226
- },
227
- "FaultDescription": {
228
- "base": null,
229
- "refs": {
230
- "InternalServiceFault$Message": "<p></p>"
231
- }
232
- },
233
- "GetMetricStatisticsInput": {
234
- "base": null,
235
- "refs": {
236
- }
237
- },
238
- "GetMetricStatisticsOutput": {
239
- "base": "<p> The output for the <a>GetMetricStatistics</a> action. </p>",
240
- "refs": {
241
- }
242
- },
243
- "HistoryData": {
244
- "base": null,
245
- "refs": {
246
- "AlarmHistoryItem$HistoryData": "<p> Machine-readable data about the alarm in JSON format. </p>"
247
- }
248
- },
249
- "HistoryItemType": {
250
- "base": null,
251
- "refs": {
252
- "AlarmHistoryItem$HistoryItemType": "<p> The type of alarm history item. </p>",
253
- "DescribeAlarmHistoryInput$HistoryItemType": "<p> The type of alarm histories to retrieve. </p>"
254
- }
255
- },
256
- "HistorySummary": {
257
- "base": null,
258
- "refs": {
259
- "AlarmHistoryItem$HistorySummary": "<p> A human-readable summary of the alarm history. </p>"
260
- }
261
- },
262
- "InternalServiceFault": {
263
- "base": "<p> Indicates that the request processing has failed due to some unknown error, exception, or failure. </p>",
264
- "refs": {
265
- }
266
- },
267
- "InvalidFormatFault": {
268
- "base": "<p> Data was not syntactically valid JSON. </p>",
269
- "refs": {
270
- }
271
- },
272
- "InvalidNextToken": {
273
- "base": "<p> The next token specified is invalid. </p>",
274
- "refs": {
275
- }
276
- },
277
- "InvalidParameterCombinationException": {
278
- "base": "<p> Parameters that must not be used together were used together. </p>",
279
- "refs": {
280
- }
281
- },
282
- "InvalidParameterValueException": {
283
- "base": "<p> Bad or out-of-range value was supplied for the input parameter. </p>",
284
- "refs": {
285
- }
286
- },
287
- "LimitExceededFault": {
288
- "base": "<p> The quota for alarms for this customer has already been reached. </p>",
289
- "refs": {
290
- }
291
- },
292
- "ListMetricsInput": {
293
- "base": null,
294
- "refs": {
295
- }
296
- },
297
- "ListMetricsOutput": {
298
- "base": "<p> The output for the <a>ListMetrics</a> action. </p>",
299
- "refs": {
300
- }
301
- },
302
- "MaxRecords": {
303
- "base": null,
304
- "refs": {
305
- "DescribeAlarmHistoryInput$MaxRecords": "<p> The maximum number of alarm history records to retrieve. </p>",
306
- "DescribeAlarmsInput$MaxRecords": "<p> The maximum number of alarm descriptions to retrieve. </p>"
307
- }
308
- },
309
- "Metric": {
310
- "base": "<p> The <code>Metric</code> data type contains information about a specific metric. If you call <a>ListMetrics</a>, Amazon CloudWatch returns information contained by this data type. </p> <p> The example in the Examples section publishes two metrics named buffers and latency. Both metrics are in the examples namespace. Both metrics have two dimensions, InstanceID and InstanceType. </p>",
311
- "refs": {
312
- "Metrics$member": null
313
- }
314
- },
315
- "MetricAlarm": {
316
- "base": "<p> The <a>MetricAlarm</a> data type represents an alarm. You can use <a>PutMetricAlarm</a> to create or update an alarm. </p>",
317
- "refs": {
318
- "MetricAlarms$member": null
319
- }
320
- },
321
- "MetricAlarms": {
322
- "base": null,
323
- "refs": {
324
- "DescribeAlarmsForMetricOutput$MetricAlarms": "<p> A list of information for each alarm with the specified metric. </p>",
325
- "DescribeAlarmsOutput$MetricAlarms": "<p> A list of information for the specified alarms. </p>"
326
- }
327
- },
328
- "MetricData": {
329
- "base": null,
330
- "refs": {
331
- "PutMetricDataInput$MetricData": "<p> A list of data describing the metric. </p>"
332
- }
333
- },
334
- "MetricDatum": {
335
- "base": "<p> The <code>MetricDatum</code> data type encapsulates the information sent with <a>PutMetricData</a> to either create a new metric or add new values to be aggregated into an existing metric. </p>",
336
- "refs": {
337
- "MetricData$member": null
338
- }
339
- },
340
- "MetricLabel": {
341
- "base": null,
342
- "refs": {
343
- "GetMetricStatisticsOutput$Label": "<p> A label describing the specified metric. </p>"
344
- }
345
- },
346
- "MetricName": {
347
- "base": null,
348
- "refs": {
349
- "DescribeAlarmsForMetricInput$MetricName": "<p> The name of the metric. </p>",
350
- "GetMetricStatisticsInput$MetricName": "<p> The name of the metric, with or without spaces. </p>",
351
- "ListMetricsInput$MetricName": "<p> The name of the metric to filter against. </p>",
352
- "Metric$MetricName": "<p> The name of the metric. </p>",
353
- "MetricAlarm$MetricName": "<p> The name of the alarm's metric. </p>",
354
- "MetricDatum$MetricName": "<p> The name of the metric. </p>",
355
- "PutMetricAlarmInput$MetricName": "<p> The name for the alarm's associated metric. </p>"
356
- }
357
- },
358
- "Metrics": {
359
- "base": null,
360
- "refs": {
361
- "ListMetricsOutput$Metrics": "<p> A list of metrics used to generate statistics for an AWS account. </p>"
362
- }
363
- },
364
- "MissingRequiredParameterException": {
365
- "base": "<p> An input parameter that is mandatory for processing the request is not supplied. </p>",
366
- "refs": {
367
- }
368
- },
369
- "Namespace": {
370
- "base": null,
371
- "refs": {
372
- "DescribeAlarmsForMetricInput$Namespace": "<p> The namespace of the metric. </p>",
373
- "GetMetricStatisticsInput$Namespace": "<p> The namespace of the metric, with or without spaces. </p>",
374
- "ListMetricsInput$Namespace": "<p> The namespace to filter against. </p>",
375
- "Metric$Namespace": "<p> The namespace of the metric. </p>",
376
- "MetricAlarm$Namespace": "<p> The namespace of alarm's associated metric. </p>",
377
- "PutMetricAlarmInput$Namespace": "<p> The namespace for the alarm's associated metric. </p>",
378
- "PutMetricDataInput$Namespace": "<p> The namespace for the metric data. </p>"
379
- }
380
- },
381
- "NextToken": {
382
- "base": null,
383
- "refs": {
384
- "DescribeAlarmHistoryInput$NextToken": "<p> The token returned by a previous call to indicate that there is more data available. </p>",
385
- "DescribeAlarmHistoryOutput$NextToken": "<p> A string that marks the start of the next batch of returned results. </p>",
386
- "DescribeAlarmsInput$NextToken": "<p> The token returned by a previous call to indicate that there is more data available. </p>",
387
- "DescribeAlarmsOutput$NextToken": "<p> A string that marks the start of the next batch of returned results. </p>",
388
- "ListMetricsInput$NextToken": "<p> The token returned by a previous call to indicate that there is more data available. </p>",
389
- "ListMetricsOutput$NextToken": "<p> A string that marks the start of the next batch of returned results. </p>"
390
- }
391
- },
392
- "Period": {
393
- "base": null,
394
- "refs": {
395
- "DescribeAlarmsForMetricInput$Period": "<p> The period in seconds over which the statistic is applied. </p>",
396
- "GetMetricStatisticsInput$Period": "<p> The granularity, in seconds, of the returned datapoints. <code>Period</code> must be at least 60 seconds and must be a multiple of 60. The default value is 60. </p>",
397
- "MetricAlarm$Period": "<p> The period in seconds over which the statistic is applied. </p>",
398
- "PutMetricAlarmInput$Period": "<p> The period in seconds over which the specified statistic is applied. </p>"
399
- }
400
- },
401
- "PutMetricAlarmInput": {
402
- "base": null,
403
- "refs": {
404
- }
405
- },
406
- "PutMetricDataInput": {
407
- "base": null,
408
- "refs": {
409
- }
410
- },
411
- "ResourceList": {
412
- "base": null,
413
- "refs": {
414
- "MetricAlarm$OKActions": "<p> The list of actions to execute when this alarm transitions into an <code>OK</code> state from any other state. Each action is specified as an Amazon Resource Number (ARN). Currently the only actions supported are publishing to an Amazon SNS topic and triggering an Auto Scaling policy. </p>",
415
- "MetricAlarm$AlarmActions": "<p> The list of actions to execute when this alarm transitions into an <code>ALARM</code> state from any other state. Each action is specified as an Amazon Resource Number (ARN). Currently the only actions supported are publishing to an Amazon SNS topic and triggering an Auto Scaling policy. </p>",
416
- "MetricAlarm$InsufficientDataActions": "<p> The list of actions to execute when this alarm transitions into an <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified as an Amazon Resource Number (ARN). Currently the only actions supported are publishing to an Amazon SNS topic or triggering an Auto Scaling policy. </p> <important>The current WSDL lists this attribute as <code>UnknownActions</code>.</important>",
417
- "PutMetricAlarmInput$OKActions": "<p> The list of actions to execute when this alarm transitions into an <code>OK</code> state from any other state. Each action is specified as an Amazon Resource Number (ARN). Currently the only action supported is publishing to an Amazon SNS topic or an Amazon Auto Scaling policy. </p>",
418
- "PutMetricAlarmInput$AlarmActions": "<p> The list of actions to execute when this alarm transitions into an <code>ALARM</code> state from any other state. Each action is specified as an Amazon Resource Number (ARN). Currently the only action supported is publishing to an Amazon SNS topic or an Amazon Auto Scaling policy. </p>",
419
- "PutMetricAlarmInput$InsufficientDataActions": "<p> The list of actions to execute when this alarm transitions into an <code>INSUFFICIENT_DATA</code> state from any other state. Each action is specified as an Amazon Resource Number (ARN). Currently the only action supported is publishing to an Amazon SNS topic or an Amazon Auto Scaling policy. </p>"
420
- }
421
- },
422
- "ResourceName": {
423
- "base": null,
424
- "refs": {
425
- "ResourceList$member": null
426
- }
427
- },
428
- "ResourceNotFound": {
429
- "base": "<p> The named resource does not exist. </p>",
430
- "refs": {
431
- }
432
- },
433
- "SetAlarmStateInput": {
434
- "base": null,
435
- "refs": {
436
- }
437
- },
438
- "StandardUnit": {
439
- "base": null,
440
- "refs": {
441
- "Datapoint$Unit": "<p> The standard unit used for the datapoint. </p>",
442
- "DescribeAlarmsForMetricInput$Unit": "<p> The unit for the metric. </p>",
443
- "GetMetricStatisticsInput$Unit": "<p> The unit for the metric. </p>",
444
- "MetricAlarm$Unit": "<p> The unit of the alarm's associated metric. </p>",
445
- "MetricDatum$Unit": "<p> The unit of the metric. </p>",
446
- "PutMetricAlarmInput$Unit": "<p> The unit for the alarm's associated metric. </p>"
447
- }
448
- },
449
- "StateReason": {
450
- "base": null,
451
- "refs": {
452
- "MetricAlarm$StateReason": "<p> A human-readable explanation for the alarm's state. </p>",
453
- "SetAlarmStateInput$StateReason": "<p> The reason that this alarm is set to this specific state (in human-readable text format) </p>"
454
- }
455
- },
456
- "StateReasonData": {
457
- "base": null,
458
- "refs": {
459
- "MetricAlarm$StateReasonData": "<p> An explanation for the alarm's state in machine-readable JSON format </p>",
460
- "SetAlarmStateInput$StateReasonData": "<p> The reason that this alarm is set to this specific state (in machine-readable JSON format) </p>"
461
- }
462
- },
463
- "StateValue": {
464
- "base": null,
465
- "refs": {
466
- "DescribeAlarmsInput$StateValue": "<p> The state value to be used in matching alarms. </p>",
467
- "MetricAlarm$StateValue": "<p> The state value for the alarm. </p>",
468
- "SetAlarmStateInput$StateValue": "<p> The value of the state. </p>"
469
- }
470
- },
471
- "Statistic": {
472
- "base": null,
473
- "refs": {
474
- "DescribeAlarmsForMetricInput$Statistic": "<p> The statistic for the metric. </p>",
475
- "MetricAlarm$Statistic": "<p> The statistic to apply to the alarm's associated metric. </p>",
476
- "PutMetricAlarmInput$Statistic": "<p> The statistic to apply to the alarm's associated metric. </p>",
477
- "Statistics$member": null
478
- }
479
- },
480
- "StatisticSet": {
481
- "base": "<p> The <code>StatisticSet</code> data type describes the <code>StatisticValues</code> component of <a>MetricDatum</a>, and represents a set of statistics that describes a specific metric. </p>",
482
- "refs": {
483
- "MetricDatum$StatisticValues": "<p> A set of statistical values describing the metric. </p>"
484
- }
485
- },
486
- "Statistics": {
487
- "base": null,
488
- "refs": {
489
- "GetMetricStatisticsInput$Statistics": "<p> The metric statistics to return. For information about specific statistics returned by GetMetricStatistics, go to <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/index.html?CHAP_TerminologyandKeyConcepts.html#Statistic\">Statistics</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p> <p> Valid Values: <code>Average | Sum | SampleCount | Maximum | Minimum</code> </p>"
490
- }
491
- },
492
- "Threshold": {
493
- "base": null,
494
- "refs": {
495
- "MetricAlarm$Threshold": "<p> The value against which the specified statistic is compared. </p>",
496
- "PutMetricAlarmInput$Threshold": "<p> The value against which the specified statistic is compared. </p>"
497
- }
498
- },
499
- "Timestamp": {
500
- "base": null,
501
- "refs": {
502
- "AlarmHistoryItem$Timestamp": "<p> The time stamp for the alarm history item. Amazon CloudWatch uses Coordinated Universal Time (UTC) when returning time stamps, which do not accommodate seasonal adjustments such as daylight savings time. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp\">Time stamps</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p>",
503
- "Datapoint$Timestamp": "<p> The time stamp used for the datapoint. Amazon CloudWatch uses Coordinated Universal Time (UTC) when returning time stamps, which do not accommodate seasonal adjustments such as daylight savings time. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp\">Time stamps</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p>",
504
- "DescribeAlarmHistoryInput$StartDate": "<p> The starting date to retrieve alarm history. </p>",
505
- "DescribeAlarmHistoryInput$EndDate": "<p> The ending date to retrieve alarm history. </p>",
506
- "GetMetricStatisticsInput$StartTime": "<p> The time stamp to use for determining the first datapoint to return. The value specified is inclusive; results include datapoints with the time stamp specified. </p>",
507
- "GetMetricStatisticsInput$EndTime": "<p> The time stamp to use for determining the last datapoint to return. The value specified is exclusive; results will include datapoints up to the time stamp specified. </p>",
508
- "MetricAlarm$AlarmConfigurationUpdatedTimestamp": "<p> The time stamp of the last update to the alarm configuration. Amazon CloudWatch uses Coordinated Universal Time (UTC) when returning time stamps, which do not accommodate seasonal adjustments such as daylight savings time. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp\">Time stamps</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p>",
509
- "MetricAlarm$StateUpdatedTimestamp": "<p> The time stamp of the last update to the alarm's state. Amazon CloudWatch uses Coordinated Universal Time (UTC) when returning time stamps, which do not accommodate seasonal adjustments such as daylight savings time. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp\">Time stamps</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p>",
510
- "MetricDatum$Timestamp": "<p> The time stamp used for the metric. If not specified, the default value is set to the time the metric data was received. Amazon CloudWatch uses Coordinated Universal Time (UTC) when returning time stamps, which do not accommodate seasonal adjustments such as daylight savings time. For more information, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/cloudwatch_concepts.html#about_timestamp\">Time stamps</a> in the <i>Amazon CloudWatch Developer Guide</i>. </p>"
511
- }
512
- }
513
- }
514
- }