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,599 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "CreateLogGroup": "<p> Creates a new log group with the specified name. The name of the log group must be unique within a region for an AWS account. You can create up to 500 log groups per account. </p> <p> You must use the following guidelines when naming a log group: <ul> <li>Log group names can be between 1 and 512 characters long.</li> <li>Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), '/' (forward slash), and '.' (period).</li> </ul> </p>",
5
- "CreateLogStream": "<p> Creates a new log stream in the specified log group. The name of the log stream must be unique within the log group. There is no limit on the number of log streams that can exist in a log group. </p> <p> You must use the following guidelines when naming a log stream: <ul> <li>Log stream names can be between 1 and 512 characters long.</li> <li>The ':' colon character is not allowed.</li> </ul> </p>",
6
- "DeleteLogGroup": "<p> Deletes the log group with the specified name and permanently deletes all the archived log events associated with it. </p>",
7
- "DeleteLogStream": "<p> Deletes a log stream and permanently deletes all the archived log events associated with it. </p>",
8
- "DeleteMetricFilter": "<p> Deletes a metric filter associated with the specified log group. </p>",
9
- "DeleteRetentionPolicy": "<p> Deletes the retention policy of the specified log group. Log events would not expire if they belong to log groups without a retention policy. </p>",
10
- "DeleteSubscriptionFilter": "<p> Deletes a subscription filter associated with the specified log group. </p>",
11
- "DescribeLogGroups": "<p> Returns all the log groups that are associated with the AWS account making the request. The list returned in the response is ASCII-sorted by log group name. </p> <p> By default, this operation returns up to 50 log groups. If there are more log groups to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of log groups returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
12
- "DescribeLogStreams": "<p> Returns all the log streams that are associated with the specified log group. The list returned in the response is ASCII-sorted by log stream name. </p> <p> By default, this operation returns up to 50 log streams. If there are more log streams to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of log streams returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. This operation has a limit of five transactions per second, after which transactions are throttled. </p>",
13
- "DescribeMetricFilters": "<p> Returns all the metrics filters associated with the specified log group. The list returned in the response is ASCII-sorted by filter name. </p> <p> By default, this operation returns up to 50 metric filters. If there are more metric filters to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of metric filters returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
14
- "DescribeSubscriptionFilters": "<p> Returns all the subscription filters associated with the specified log group. The list returned in the response is ASCII-sorted by filter name. </p> <p> By default, this operation returns up to 50 subscription filters. If there are more subscription filters to list, the response would contain a <code class=\"code\">nextToken</code> value in the response body. You can also limit the number of subscription filters returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
15
- "FilterLogEvents": "<p> Retrieves log events, optionally filtered by a filter pattern from the specified log group. You can provide an optional time range to filter the results on the event <code class=\"code\">timestamp</code>. You can limit the streams searched to an explicit list of <code class=\"code\">logStreamNames</code>. </p> <p> By default, this operation returns as much matching log events as can fit in a response size of 1MB, up to 10,000 log events, or all the events found within a time-bounded scan window. If the response includes a <code class=\"code\">nextToken</code>, then there is more data to search, and the search can be resumed with a new request providing the nextToken. The response will contain a list of <code class=\"code\">searchedLogStreams</code> that contains information about which streams were searched in the request and whether they have been searched completely or require further pagination. The <code class=\"code\">limit</code> parameter in the request. can be used to specify the maximum number of events to return in a page. </p>",
16
- "GetLogEvents": "<p> Retrieves log events from the specified log stream. You can provide an optional time range to filter the results on the event <code class=\"code\">timestamp</code>. </p> <p> By default, this operation returns as much log events as can fit in a response size of 1MB, up to 10,000 log events. The response will always include a <code class=\"code\">nextForwardToken</code> and a <code class=\"code\">nextBackwardToken</code> in the response body. You can use any of these tokens in subsequent <code class=\"code\">GetLogEvents</code> requests to paginate through events in either forward or backward direction. You can also limit the number of log events returned in the response by specifying the <code class=\"code\">limit</code> parameter in the request. </p>",
17
- "PutLogEvents": "<p> Uploads a batch of log events to the specified log stream. </p> <p> Every PutLogEvents request must include the <code class=\"code\">sequenceToken</code> obtained from the response of the previous request. An upload in a newly created log stream does not require a <code class=\"code\">sequenceToken</code>. </p> <p> The batch of events must satisfy the following constraints: <ul> <li>The maximum batch size is 1,048,576 bytes, and this size is calculated as the sum of all event messages in UTF-8, plus 26 bytes for each log event.</li> <li>None of the log events in the batch can be more than 2 hours in the future.</li> <li>None of the log events in the batch can be older than 14 days or the retention period of the log group.</li> <li>The log events in the batch must be in chronological ordered by their <code class=\"code\">timestamp</code>.</li> <li>The maximum number of log events in a batch is 10,000.</li> </ul> </p>",
18
- "PutMetricFilter": "<p> Creates or updates a metric filter and associates it with the specified log group. Metric filters allow you to configure rules to extract metric data from log events ingested through <code class=\"code\">PutLogEvents</code> requests. </p> <p> The maximum number of metric filters that can be associated with a log group is 100. </p>",
19
- "PutRetentionPolicy": "<p> Sets the retention of the specified log group. A retention policy allows you to configure the number of days you want to retain log events in the specified log group. </p>",
20
- "PutSubscriptionFilter": "<p> Creates or updates a subscription filter and associates it with the specified log group. Subscription filters allow you to subscribe to a real-time stream of log events ingested through <code class=\"code\">PutLogEvents</code> requests and have them delivered to a specific destination. Currently the only supported destination is an Amazon Kinesis stream belonging to the same account as the subscription filter. </p> <p> Currently there can only be one subscription filter associated with a log group. </p>",
21
- "TestMetricFilter": "<p> Tests the filter pattern of a metric filter against a sample of log event messages. You can use this operation to validate the correctness of a metric filter pattern. </p>"
22
- },
23
- "service": "<fullname>Amazon CloudWatch Logs API Reference</fullname> <p>This is the <i>Amazon CloudWatch Logs API Reference</i>. Amazon CloudWatch Logs enables you to monitor, store, and access your system, application, and custom log files. This guide provides detailed information about Amazon CloudWatch Logs actions, data types, parameters, and errors. For detailed information about Amazon CloudWatch Logs 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>Use the following links to get started using the <i>Amazon CloudWatch Logs API Reference</i>:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_Operations.html\">Actions</a>: An alphabetical list of all Amazon CloudWatch Logs actions.</li> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_Types.html\">Data Types</a>: An alphabetical list of all Amazon CloudWatch Logs data types.</li> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/CommonParameters.html\">Common Parameters</a>: Parameters that all Query actions can use.</li> <li> <a href=\"http://docs.aws.amazon.com/AmazonCloudWatchLogs/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> </ul> <p>In addition to using the Amazon CloudWatch Logs API, you can also use the following SDKs and third-party libraries to access Amazon CloudWatch Logs 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>",
24
- "shapes": {
25
- "Arn": {
26
- "base": null,
27
- "refs": {
28
- "LogGroup$arn": null,
29
- "LogStream$arn": null
30
- }
31
- },
32
- "CreateLogGroupRequest": {
33
- "base": null,
34
- "refs": {
35
- }
36
- },
37
- "CreateLogStreamRequest": {
38
- "base": null,
39
- "refs": {
40
- }
41
- },
42
- "DataAlreadyAcceptedException": {
43
- "base": null,
44
- "refs": {
45
- }
46
- },
47
- "Days": {
48
- "base": "<p>Specifies the number of days you want to retain log events in the specified log group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, 3653.</p>",
49
- "refs": {
50
- "LogGroup$retentionInDays": null,
51
- "PutRetentionPolicyRequest$retentionInDays": null
52
- }
53
- },
54
- "DeleteLogGroupRequest": {
55
- "base": null,
56
- "refs": {
57
- }
58
- },
59
- "DeleteLogStreamRequest": {
60
- "base": null,
61
- "refs": {
62
- }
63
- },
64
- "DeleteMetricFilterRequest": {
65
- "base": null,
66
- "refs": {
67
- }
68
- },
69
- "DeleteRetentionPolicyRequest": {
70
- "base": null,
71
- "refs": {
72
- }
73
- },
74
- "DeleteSubscriptionFilterRequest": {
75
- "base": null,
76
- "refs": {
77
- }
78
- },
79
- "Descending": {
80
- "base": null,
81
- "refs": {
82
- "DescribeLogStreamsRequest$descending": "<p> If set to true, results are returned in descending order. If you don't specify a value or set it to false, results are returned in ascending order. </p>"
83
- }
84
- },
85
- "DescribeLimit": {
86
- "base": "<p>The maximum number of results to return.</p>",
87
- "refs": {
88
- "DescribeLogGroupsRequest$limit": "<p> The maximum number of items returned in the response. If you don't specify a value, the request would return up to 50 items. </p>",
89
- "DescribeLogStreamsRequest$limit": "<p> The maximum number of items returned in the response. If you don't specify a value, the request would return up to 50 items. </p>",
90
- "DescribeMetricFiltersRequest$limit": "<p> The maximum number of items returned in the response. If you don't specify a value, the request would return up to 50 items. </p>",
91
- "DescribeSubscriptionFiltersRequest$limit": null
92
- }
93
- },
94
- "DescribeLogGroupsRequest": {
95
- "base": null,
96
- "refs": {
97
- }
98
- },
99
- "DescribeLogGroupsResponse": {
100
- "base": null,
101
- "refs": {
102
- }
103
- },
104
- "DescribeLogStreamsRequest": {
105
- "base": null,
106
- "refs": {
107
- }
108
- },
109
- "DescribeLogStreamsResponse": {
110
- "base": null,
111
- "refs": {
112
- }
113
- },
114
- "DescribeMetricFiltersRequest": {
115
- "base": null,
116
- "refs": {
117
- }
118
- },
119
- "DescribeMetricFiltersResponse": {
120
- "base": null,
121
- "refs": {
122
- }
123
- },
124
- "DescribeSubscriptionFiltersRequest": {
125
- "base": null,
126
- "refs": {
127
- }
128
- },
129
- "DescribeSubscriptionFiltersResponse": {
130
- "base": null,
131
- "refs": {
132
- }
133
- },
134
- "DestinationArn": {
135
- "base": null,
136
- "refs": {
137
- "PutSubscriptionFilterRequest$destinationArn": "<p>The ARN of an Amazon Kinesis stream to deliver matching log events to.</p>",
138
- "SubscriptionFilter$destinationArn": null
139
- }
140
- },
141
- "EventId": {
142
- "base": null,
143
- "refs": {
144
- "FilteredLogEvent$eventId": "<p>A unique identifier for this event.</p>"
145
- }
146
- },
147
- "EventMessage": {
148
- "base": null,
149
- "refs": {
150
- "FilteredLogEvent$message": "<p>The data contained in the log event.</p>",
151
- "InputLogEvent$message": null,
152
- "MetricFilterMatchRecord$eventMessage": null,
153
- "OutputLogEvent$message": null,
154
- "TestEventMessages$member": null
155
- }
156
- },
157
- "EventNumber": {
158
- "base": null,
159
- "refs": {
160
- "MetricFilterMatchRecord$eventNumber": null
161
- }
162
- },
163
- "EventsLimit": {
164
- "base": "<p>The maximum number of events to return.</p>",
165
- "refs": {
166
- "FilterLogEventsRequest$limit": "<p>The maximum number of events to return in a page of results. Default is 10,000 events.</p>",
167
- "GetLogEventsRequest$limit": "<p> The maximum number of log events returned in the response. If you don't specify a value, the request would return as many log events as can fit in a response size of 1MB, up to 10,000 log events. </p>"
168
- }
169
- },
170
- "ExtractedValues": {
171
- "base": null,
172
- "refs": {
173
- "MetricFilterMatchRecord$extractedValues": null
174
- }
175
- },
176
- "FilterCount": {
177
- "base": "<p>The number of metric filters associated with the log group.</p>",
178
- "refs": {
179
- "LogGroup$metricFilterCount": null
180
- }
181
- },
182
- "FilterLogEventsRequest": {
183
- "base": null,
184
- "refs": {
185
- }
186
- },
187
- "FilterLogEventsResponse": {
188
- "base": null,
189
- "refs": {
190
- }
191
- },
192
- "FilterName": {
193
- "base": "<p>A name for a metric or subscription filter.</p>",
194
- "refs": {
195
- "DeleteMetricFilterRequest$filterName": "<p>The name of the metric filter to delete.</p>",
196
- "DeleteSubscriptionFilterRequest$filterName": "<p>The name of the subscription filter to delete.</p>",
197
- "DescribeMetricFiltersRequest$filterNamePrefix": "<p>Will only return metric filters that match the provided filterNamePrefix. If you don't specify a value, no prefix filter is applied.</p>",
198
- "DescribeSubscriptionFiltersRequest$filterNamePrefix": "<p>Will only return subscription filters that match the provided filterNamePrefix. If you don't specify a value, no prefix filter is applied.</p>",
199
- "MetricFilter$filterName": null,
200
- "PutMetricFilterRequest$filterName": "<p>A name for the metric filter.</p>",
201
- "PutSubscriptionFilterRequest$filterName": "<p>A name for the subscription filter.</p>",
202
- "SubscriptionFilter$filterName": null
203
- }
204
- },
205
- "FilterPattern": {
206
- "base": "<p>A symbolic description of how Amazon CloudWatch Logs should interpret the data in each log event. For example, a log event may contain timestamps, IP addresses, strings, and so on. You use the filter pattern to specify what to look for in the log event message.</p>",
207
- "refs": {
208
- "FilterLogEventsRequest$filterPattern": "<p> A valid CloudWatch Logs filter pattern to use for filtering the response. If not provided, all the events are matched. </p>",
209
- "MetricFilter$filterPattern": null,
210
- "PutMetricFilterRequest$filterPattern": "<p>A valid CloudWatch Logs filter pattern for extracting metric data out of ingested log events.</p>",
211
- "PutSubscriptionFilterRequest$filterPattern": "<p>A valid CloudWatch Logs filter pattern for subscribing to a filtered stream of log events.</p>",
212
- "SubscriptionFilter$filterPattern": null,
213
- "TestMetricFilterRequest$filterPattern": null
214
- }
215
- },
216
- "FilteredLogEvent": {
217
- "base": "<p>Represents a matched event from a <code class=\"code\">FilterLogEvents</code> request.</p>",
218
- "refs": {
219
- "FilteredLogEvents$member": null
220
- }
221
- },
222
- "FilteredLogEvents": {
223
- "base": "<p>A list of matched <code class=\"code\">FilteredLogEvent</code> objects returned from a <code class=\"code\">FilterLogEvents</code> request.</p>",
224
- "refs": {
225
- "FilterLogEventsResponse$events": "<p>A list of <code class=\"code\">FilteredLogEvent</code> objects representing the matched events from the request.</p>"
226
- }
227
- },
228
- "GetLogEventsRequest": {
229
- "base": null,
230
- "refs": {
231
- }
232
- },
233
- "GetLogEventsResponse": {
234
- "base": null,
235
- "refs": {
236
- }
237
- },
238
- "InputLogEvent": {
239
- "base": "<p>A log event is a record of some activity that was recorded by the application or resource being monitored. The log event record that Amazon CloudWatch Logs understands contains two properties: the timestamp of when the event occurred, and the raw event message.</p>",
240
- "refs": {
241
- "InputLogEvents$member": null
242
- }
243
- },
244
- "InputLogEvents": {
245
- "base": "<p>A list of log events belonging to a log stream.</p>",
246
- "refs": {
247
- "PutLogEventsRequest$logEvents": null
248
- }
249
- },
250
- "InputLogStreamNames": {
251
- "base": "<p>A list of log stream names.</p>",
252
- "refs": {
253
- "FilterLogEventsRequest$logStreamNames": "<p> Optional list of log stream names within the specified log group to search. Defaults to all the log streams in the log group. </p>"
254
- }
255
- },
256
- "Interleaved": {
257
- "base": null,
258
- "refs": {
259
- "FilterLogEventsRequest$interleaved": "<p>If provided, the API will make a best effort to provide responses that contain events from multiple log streams within the log group interleaved in a single response. If not provided, all the matched log events in the first log stream will be searched first, then those in the next log stream, etc.</p>"
260
- }
261
- },
262
- "InvalidParameterException": {
263
- "base": "<p>Returned if a parameter of the request is incorrectly specified.</p>",
264
- "refs": {
265
- }
266
- },
267
- "InvalidSequenceTokenException": {
268
- "base": null,
269
- "refs": {
270
- }
271
- },
272
- "LimitExceededException": {
273
- "base": "<p>Returned if you have reached the maximum number of resources that can be created.</p>",
274
- "refs": {
275
- }
276
- },
277
- "LogEventIndex": {
278
- "base": null,
279
- "refs": {
280
- "RejectedLogEventsInfo$tooNewLogEventStartIndex": null,
281
- "RejectedLogEventsInfo$tooOldLogEventEndIndex": null,
282
- "RejectedLogEventsInfo$expiredLogEventEndIndex": null
283
- }
284
- },
285
- "LogGroup": {
286
- "base": null,
287
- "refs": {
288
- "LogGroups$member": null
289
- }
290
- },
291
- "LogGroupName": {
292
- "base": null,
293
- "refs": {
294
- "CreateLogGroupRequest$logGroupName": "<p>The name of the log group to create.</p>",
295
- "CreateLogStreamRequest$logGroupName": "<p>The name of the log group under which the log stream is to be created.</p>",
296
- "DeleteLogGroupRequest$logGroupName": "<p>The name of the log group to delete.</p>",
297
- "DeleteLogStreamRequest$logGroupName": "<p>The name of the log group under which the log stream to delete belongs.</p>",
298
- "DeleteMetricFilterRequest$logGroupName": "<p>The name of the log group that is associated with the metric filter to delete.</p>",
299
- "DeleteRetentionPolicyRequest$logGroupName": "<p>The name of the log group that is associated with the retention policy to delete.</p>",
300
- "DeleteSubscriptionFilterRequest$logGroupName": "<p>The name of the log group that is associated with the subscription filter to delete.</p>",
301
- "DescribeLogGroupsRequest$logGroupNamePrefix": "<p>Will only return log groups that match the provided logGroupNamePrefix. If you don't specify a value, no prefix filter is applied.</p>",
302
- "DescribeLogStreamsRequest$logGroupName": "<p>The log group name for which log streams are to be listed.</p>",
303
- "DescribeMetricFiltersRequest$logGroupName": "<p>The log group name for which metric filters are to be listed.</p>",
304
- "DescribeSubscriptionFiltersRequest$logGroupName": "<p>The log group name for which subscription filters are to be listed.</p>",
305
- "FilterLogEventsRequest$logGroupName": "<p> The name of the log group to query. </p>",
306
- "GetLogEventsRequest$logGroupName": "<p>The name of the log group to query.</p>",
307
- "LogGroup$logGroupName": null,
308
- "PutLogEventsRequest$logGroupName": "<p>The name of the log group to put log events to.</p>",
309
- "PutMetricFilterRequest$logGroupName": "<p>The name of the log group to associate the metric filter with.</p>",
310
- "PutRetentionPolicyRequest$logGroupName": "<p>The name of the log group to associate the retention policy with.</p>",
311
- "PutSubscriptionFilterRequest$logGroupName": "<p>The name of the log group to associate the subscription filter with.</p>",
312
- "SubscriptionFilter$logGroupName": null
313
- }
314
- },
315
- "LogGroups": {
316
- "base": "<p>A list of log groups.</p>",
317
- "refs": {
318
- "DescribeLogGroupsResponse$logGroups": null
319
- }
320
- },
321
- "LogStream": {
322
- "base": "<p>A log stream is sequence of log events from a single emitter of logs.</p>",
323
- "refs": {
324
- "LogStreams$member": null
325
- }
326
- },
327
- "LogStreamName": {
328
- "base": null,
329
- "refs": {
330
- "CreateLogStreamRequest$logStreamName": "<p>The name of the log stream to create.</p>",
331
- "DeleteLogStreamRequest$logStreamName": "<p>The name of the log stream to delete.</p>",
332
- "DescribeLogStreamsRequest$logStreamNamePrefix": "<p> Will only return log streams that match the provided logStreamNamePrefix. If you don't specify a value, no prefix filter is applied. </p>",
333
- "FilteredLogEvent$logStreamName": "<p>The name of the log stream this event belongs to.</p>",
334
- "GetLogEventsRequest$logStreamName": "<p>The name of the log stream to query.</p>",
335
- "InputLogStreamNames$member": null,
336
- "LogStream$logStreamName": null,
337
- "PutLogEventsRequest$logStreamName": "<p>The name of the log stream to put log events to.</p>",
338
- "SearchedLogStream$logStreamName": "<p>The name of the log stream.</p>"
339
- }
340
- },
341
- "LogStreamSearchedCompletely": {
342
- "base": null,
343
- "refs": {
344
- "SearchedLogStream$searchedCompletely": "<p>Indicates whether all the events in this log stream were searched or more data exists to search by paginating further.</p>"
345
- }
346
- },
347
- "LogStreams": {
348
- "base": "<p>A list of log streams.</p>",
349
- "refs": {
350
- "DescribeLogStreamsResponse$logStreams": null
351
- }
352
- },
353
- "MetricFilter": {
354
- "base": "<p>Metric filters can be used to express how Amazon CloudWatch Logs would extract metric observations from ingested log events and transform them to metric data in a CloudWatch metric.</p>",
355
- "refs": {
356
- "MetricFilters$member": null
357
- }
358
- },
359
- "MetricFilterMatchRecord": {
360
- "base": null,
361
- "refs": {
362
- "MetricFilterMatches$member": null
363
- }
364
- },
365
- "MetricFilterMatches": {
366
- "base": null,
367
- "refs": {
368
- "TestMetricFilterResponse$matches": null
369
- }
370
- },
371
- "MetricFilters": {
372
- "base": null,
373
- "refs": {
374
- "DescribeMetricFiltersResponse$metricFilters": null
375
- }
376
- },
377
- "MetricName": {
378
- "base": "<p>The name of the CloudWatch metric to which the monitored log information should be published. For example, you may publish to a metric called ErrorCount.</p>",
379
- "refs": {
380
- "MetricTransformation$metricName": null
381
- }
382
- },
383
- "MetricNamespace": {
384
- "base": "<p>The destination namespace of the new CloudWatch metric.</p>",
385
- "refs": {
386
- "MetricTransformation$metricNamespace": null
387
- }
388
- },
389
- "MetricTransformation": {
390
- "base": null,
391
- "refs": {
392
- "MetricTransformations$member": null
393
- }
394
- },
395
- "MetricTransformations": {
396
- "base": null,
397
- "refs": {
398
- "MetricFilter$metricTransformations": null,
399
- "PutMetricFilterRequest$metricTransformations": "<p>A collection of information needed to define how metric data gets emitted.</p>"
400
- }
401
- },
402
- "MetricValue": {
403
- "base": "<p>What to publish to the metric. For example, if you're counting the occurrences of a particular term like \"Error\", the value will be \"1\" for each occurrence. If you're counting the bytes transferred the published value will be the value in the log event.</p>",
404
- "refs": {
405
- "MetricTransformation$metricValue": null
406
- }
407
- },
408
- "NextToken": {
409
- "base": "<p>A string token used for pagination that points to the next page of results. It must be a value obtained from the response of the previous request. The token expires after 24 hours.</p>",
410
- "refs": {
411
- "DescribeLogGroupsRequest$nextToken": "<p> A string token used for pagination that points to the next page of results. It must be a value obtained from the response of the previous <code class=\"code\">DescribeLogGroups</code> request. </p>",
412
- "DescribeLogGroupsResponse$nextToken": null,
413
- "DescribeLogStreamsRequest$nextToken": "<p> A string token used for pagination that points to the next page of results. It must be a value obtained from the response of the previous <code class=\"code\">DescribeLogStreams</code> request. </p>",
414
- "DescribeLogStreamsResponse$nextToken": null,
415
- "DescribeMetricFiltersRequest$nextToken": "<p> A string token used for pagination that points to the next page of results. It must be a value obtained from the response of the previous <code class=\"code\">DescribeMetricFilters</code> request. </p>",
416
- "DescribeMetricFiltersResponse$nextToken": null,
417
- "DescribeSubscriptionFiltersRequest$nextToken": null,
418
- "DescribeSubscriptionFiltersResponse$nextToken": null,
419
- "FilterLogEventsRequest$nextToken": "<p>A pagination token obtained from a <code class=\"code\">FilterLogEvents</code> response to continue paginating the FilterLogEvents results.</p>",
420
- "FilterLogEventsResponse$nextToken": "<p>A pagination token obtained from a <code class=\"code\">FilterLogEvents</code> response to continue paginating the FilterLogEvents results.</p>",
421
- "GetLogEventsRequest$nextToken": "<p> A string token used for pagination that points to the next page of results. It must be a value obtained from the <code class=\"code\">nextForwardToken</code> or <code class=\"code\">nextBackwardToken</code> fields in the response of the previous <code class=\"code\">GetLogEvents</code> request. </p>",
422
- "GetLogEventsResponse$nextForwardToken": null,
423
- "GetLogEventsResponse$nextBackwardToken": null
424
- }
425
- },
426
- "OperationAbortedException": {
427
- "base": "<p>Returned if multiple requests to update the same resource were in conflict.</p>",
428
- "refs": {
429
- }
430
- },
431
- "OrderBy": {
432
- "base": null,
433
- "refs": {
434
- "DescribeLogStreamsRequest$orderBy": "<p> Specifies what to order the returned log streams by. Valid arguments are 'LogStreamName' or 'LastEventTime'. If you don't specify a value, results are ordered by LogStreamName. If 'LastEventTime' is chosen, the request cannot also contain a logStreamNamePrefix. </p>"
435
- }
436
- },
437
- "OutputLogEvent": {
438
- "base": null,
439
- "refs": {
440
- "OutputLogEvents$member": null
441
- }
442
- },
443
- "OutputLogEvents": {
444
- "base": null,
445
- "refs": {
446
- "GetLogEventsResponse$events": null
447
- }
448
- },
449
- "PutLogEventsRequest": {
450
- "base": null,
451
- "refs": {
452
- }
453
- },
454
- "PutLogEventsResponse": {
455
- "base": null,
456
- "refs": {
457
- }
458
- },
459
- "PutMetricFilterRequest": {
460
- "base": null,
461
- "refs": {
462
- }
463
- },
464
- "PutRetentionPolicyRequest": {
465
- "base": null,
466
- "refs": {
467
- }
468
- },
469
- "PutSubscriptionFilterRequest": {
470
- "base": null,
471
- "refs": {
472
- }
473
- },
474
- "RejectedLogEventsInfo": {
475
- "base": null,
476
- "refs": {
477
- "PutLogEventsResponse$rejectedLogEventsInfo": null
478
- }
479
- },
480
- "ResourceAlreadyExistsException": {
481
- "base": "<p>Returned if the specified resource already exists.</p>",
482
- "refs": {
483
- }
484
- },
485
- "ResourceNotFoundException": {
486
- "base": "<p>Returned if the specified resource does not exist.</p>",
487
- "refs": {
488
- }
489
- },
490
- "RoleArn": {
491
- "base": null,
492
- "refs": {
493
- "PutSubscriptionFilterRequest$roleArn": "<p>The ARN of an IAM role that grants Amazon CloudWatch Logs permissions to do Amazon Kinesis PutRecord requests on the desitnation stream.</p>",
494
- "SubscriptionFilter$roleArn": null
495
- }
496
- },
497
- "SearchedLogStream": {
498
- "base": "<p>An object indicating the search status of a log stream in a <code class=\"code\">FilterLogEvents</code> request.</p>",
499
- "refs": {
500
- "SearchedLogStreams$member": null
501
- }
502
- },
503
- "SearchedLogStreams": {
504
- "base": "<p>A list of <code class=\"code\">SearchedLogStream</code> objects indicating the search status for log streams in a <code class=\"code\">FilterLogEvents</code> request.</p>",
505
- "refs": {
506
- "FilterLogEventsResponse$searchedLogStreams": "<p>A list of <code class=\"code\">SearchedLogStream</code> objects indicating which log streams have been searched in this request and whether each has been searched completely or still has more to be paginated.</p>"
507
- }
508
- },
509
- "SequenceToken": {
510
- "base": "<p>A string token used for making PutLogEvents requests. A <code class=\"code\">sequenceToken</code> can only be used once, and PutLogEvents requests must include the <code class=\"code\">sequenceToken</code> obtained from the response of the previous request.</p>",
511
- "refs": {
512
- "DataAlreadyAcceptedException$expectedSequenceToken": null,
513
- "InvalidSequenceTokenException$expectedSequenceToken": null,
514
- "LogStream$uploadSequenceToken": null,
515
- "PutLogEventsRequest$sequenceToken": "<p> A string token that must be obtained from the response of the previous <code class=\"code\">PutLogEvents</code> request. </p>",
516
- "PutLogEventsResponse$nextSequenceToken": null
517
- }
518
- },
519
- "ServiceUnavailableException": {
520
- "base": "<p>Returned if the service cannot complete the request.</p>",
521
- "refs": {
522
- }
523
- },
524
- "StartFromHead": {
525
- "base": null,
526
- "refs": {
527
- "GetLogEventsRequest$startFromHead": "<p>If set to true, the earliest log events would be returned first. The default is false (the latest log events are returned first).</p>"
528
- }
529
- },
530
- "StoredBytes": {
531
- "base": null,
532
- "refs": {
533
- "LogGroup$storedBytes": null,
534
- "LogStream$storedBytes": null
535
- }
536
- },
537
- "SubscriptionFilter": {
538
- "base": null,
539
- "refs": {
540
- "SubscriptionFilters$member": null
541
- }
542
- },
543
- "SubscriptionFilters": {
544
- "base": null,
545
- "refs": {
546
- "DescribeSubscriptionFiltersResponse$subscriptionFilters": null
547
- }
548
- },
549
- "TestEventMessages": {
550
- "base": null,
551
- "refs": {
552
- "TestMetricFilterRequest$logEventMessages": "<p>A list of log event messages to test.</p>"
553
- }
554
- },
555
- "TestMetricFilterRequest": {
556
- "base": null,
557
- "refs": {
558
- }
559
- },
560
- "TestMetricFilterResponse": {
561
- "base": null,
562
- "refs": {
563
- }
564
- },
565
- "Timestamp": {
566
- "base": "<p>A point in time expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.</p>",
567
- "refs": {
568
- "FilterLogEventsRequest$startTime": "<p>A unix timestamp indicating the start time of the range for the request. If provided, events with a timestamp prior to this time will not be returned.</p>",
569
- "FilterLogEventsRequest$endTime": "<p>A unix timestamp indicating the end time of the range for the request. If provided, events with a timestamp later than this time will not be returned.</p>",
570
- "FilteredLogEvent$timestamp": null,
571
- "FilteredLogEvent$ingestionTime": null,
572
- "GetLogEventsRequest$startTime": null,
573
- "GetLogEventsRequest$endTime": null,
574
- "InputLogEvent$timestamp": null,
575
- "LogGroup$creationTime": null,
576
- "LogStream$creationTime": null,
577
- "LogStream$firstEventTimestamp": null,
578
- "LogStream$lastEventTimestamp": null,
579
- "LogStream$lastIngestionTime": null,
580
- "MetricFilter$creationTime": null,
581
- "OutputLogEvent$timestamp": null,
582
- "OutputLogEvent$ingestionTime": null,
583
- "SubscriptionFilter$creationTime": null
584
- }
585
- },
586
- "Token": {
587
- "base": null,
588
- "refs": {
589
- "ExtractedValues$key": null
590
- }
591
- },
592
- "Value": {
593
- "base": null,
594
- "refs": {
595
- "ExtractedValues$value": null
596
- }
597
- }
598
- }
599
- }