Update Go AWS SDK to the latest version

This commit is contained in:
Andrey Smirnov
2019-07-13 00:03:55 +03:00
committed by Andrey Smirnov
parent d08be990ef
commit 94a72b23ff
2183 changed files with 885887 additions and 228114 deletions
+301 -1
View File
@@ -6,6 +6,7 @@
"jsonVersion":"1.1",
"protocol":"json",
"serviceFullName":"Amazon CloudWatch Logs",
"serviceId":"CloudWatch Logs",
"signatureVersion":"v4",
"targetPrefix":"Logs_20140328",
"uid":"logs-2014-03-28"
@@ -249,6 +250,20 @@
{"shape":"ServiceUnavailableException"}
]
},
"DescribeQueries":{
"name":"DescribeQueries",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeQueriesRequest"},
"output":{"shape":"DescribeQueriesResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
]
},
"DescribeResourcePolicies":{
"name":"DescribeResourcePolicies",
"http":{
@@ -318,6 +333,50 @@
{"shape":"ServiceUnavailableException"}
]
},
"GetLogGroupFields":{
"name":"GetLogGroupFields",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetLogGroupFieldsRequest"},
"output":{"shape":"GetLogGroupFieldsResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"LimitExceededException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
]
},
"GetLogRecord":{
"name":"GetLogRecord",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetLogRecordRequest"},
"output":{"shape":"GetLogRecordResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"LimitExceededException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
]
},
"GetQueryResults":{
"name":"GetQueryResults",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetQueryResultsRequest"},
"output":{"shape":"GetQueryResultsResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
]
},
"ListTagsLogGroup":{
"name":"ListTagsLogGroup",
"http":{
@@ -371,7 +430,8 @@
{"shape":"InvalidSequenceTokenException"},
{"shape":"DataAlreadyAcceptedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
{"shape":"ServiceUnavailableException"},
{"shape":"UnrecognizedClientException"}
]
},
"PutMetricFilter":{
@@ -432,6 +492,36 @@
{"shape":"ServiceUnavailableException"}
]
},
"StartQuery":{
"name":"StartQuery",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StartQueryRequest"},
"output":{"shape":"StartQueryResponse"},
"errors":[
{"shape":"MalformedQueryException"},
{"shape":"InvalidParameterException"},
{"shape":"LimitExceededException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
]
},
"StopQuery":{
"name":"StopQuery",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"StopQueryRequest"},
"output":{"shape":"StopQueryResponse"},
"errors":[
{"shape":"InvalidParameterException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceUnavailableException"}
]
},
"TagLogGroup":{
"name":"TagLogGroup",
"http":{
@@ -695,6 +785,27 @@
"nextToken":{"shape":"NextToken"}
}
},
"DescribeQueriesMaxResults":{
"type":"integer",
"max":1000,
"min":1
},
"DescribeQueriesRequest":{
"type":"structure",
"members":{
"logGroupName":{"shape":"LogGroupName"},
"status":{"shape":"QueryStatus"},
"maxResults":{"shape":"DescribeQueriesMaxResults"},
"nextToken":{"shape":"NextToken"}
}
},
"DescribeQueriesResponse":{
"type":"structure",
"members":{
"queries":{"shape":"QueryInfoList"},
"nextToken":{"shape":"NextToken"}
}
},
"DescribeResourcePoliciesRequest":{
"type":"structure",
"members":{
@@ -841,6 +952,7 @@
"key":{"shape":"Token"},
"value":{"shape":"Value"}
},
"Field":{"type":"string"},
"FilterCount":{"type":"integer"},
"FilterLogEventsRequest":{
"type":"structure",
@@ -848,6 +960,7 @@
"members":{
"logGroupName":{"shape":"LogGroupName"},
"logStreamNames":{"shape":"InputLogStreamNames"},
"logStreamNamePrefix":{"shape":"LogStreamName"},
"startTime":{"shape":"Timestamp"},
"endTime":{"shape":"Timestamp"},
"filterPattern":{"shape":"FilterPattern"},
@@ -913,6 +1026,48 @@
"nextBackwardToken":{"shape":"NextToken"}
}
},
"GetLogGroupFieldsRequest":{
"type":"structure",
"required":["logGroupName"],
"members":{
"logGroupName":{"shape":"LogGroupName"},
"time":{"shape":"Timestamp"}
}
},
"GetLogGroupFieldsResponse":{
"type":"structure",
"members":{
"logGroupFields":{"shape":"LogGroupFieldList"}
}
},
"GetLogRecordRequest":{
"type":"structure",
"required":["logRecordPointer"],
"members":{
"logRecordPointer":{"shape":"LogRecordPointer"}
}
},
"GetLogRecordResponse":{
"type":"structure",
"members":{
"logRecord":{"shape":"LogRecord"}
}
},
"GetQueryResultsRequest":{
"type":"structure",
"required":["queryId"],
"members":{
"queryId":{"shape":"QueryId"}
}
},
"GetQueryResultsResponse":{
"type":"structure",
"members":{
"results":{"shape":"QueryResults"},
"statistics":{"shape":"QueryStatistics"},
"status":{"shape":"QueryStatus"}
}
},
"InputLogEvent":{
"type":"structure",
"required":[
@@ -992,6 +1147,17 @@
"kmsKeyId":{"shape":"KmsKeyId"}
}
},
"LogGroupField":{
"type":"structure",
"members":{
"name":{"shape":"Field"},
"percent":{"shape":"Percentage"}
}
},
"LogGroupFieldList":{
"type":"list",
"member":{"shape":"LogGroupField"}
},
"LogGroupName":{
"type":"string",
"max":512,
@@ -1002,6 +1168,12 @@
"type":"list",
"member":{"shape":"LogGroup"}
},
"LogRecord":{
"type":"map",
"key":{"shape":"Field"},
"value":{"shape":"Value"}
},
"LogRecordPointer":{"type":"string"},
"LogStream":{
"type":"structure",
"members":{
@@ -1026,6 +1198,14 @@
"type":"list",
"member":{"shape":"LogStream"}
},
"MalformedQueryException":{
"type":"structure",
"members":{
"queryCompileError":{"shape":"QueryCompileError"}
},
"exception":true
},
"Message":{"type":"string"},
"MetricFilter":{
"type":"structure",
"members":{
@@ -1115,6 +1295,11 @@
"type":"list",
"member":{"shape":"OutputLogEvent"}
},
"Percentage":{
"type":"integer",
"max":100,
"min":0
},
"PolicyDocument":{
"type":"string",
"max":5120,
@@ -1228,6 +1413,67 @@
"distribution":{"shape":"Distribution"}
}
},
"QueryCharOffset":{"type":"integer"},
"QueryCompileError":{
"type":"structure",
"members":{
"location":{"shape":"QueryCompileErrorLocation"},
"message":{"shape":"Message"}
}
},
"QueryCompileErrorLocation":{
"type":"structure",
"members":{
"startCharOffset":{"shape":"QueryCharOffset"},
"endCharOffset":{"shape":"QueryCharOffset"}
}
},
"QueryId":{
"type":"string",
"max":256,
"min":0
},
"QueryInfo":{
"type":"structure",
"members":{
"queryId":{"shape":"QueryId"},
"queryString":{"shape":"QueryString"},
"status":{"shape":"QueryStatus"},
"createTime":{"shape":"Timestamp"},
"logGroupName":{"shape":"LogGroupName"}
}
},
"QueryInfoList":{
"type":"list",
"member":{"shape":"QueryInfo"}
},
"QueryResults":{
"type":"list",
"member":{"shape":"ResultRows"}
},
"QueryStatistics":{
"type":"structure",
"members":{
"recordsMatched":{"shape":"StatsValue"},
"recordsScanned":{"shape":"StatsValue"},
"bytesScanned":{"shape":"StatsValue"}
}
},
"QueryStatus":{
"type":"string",
"enum":[
"Scheduled",
"Running",
"Complete",
"Failed",
"Cancelled"
]
},
"QueryString":{
"type":"string",
"max":2048,
"min":0
},
"RejectedLogEventsInfo":{
"type":"structure",
"members":{
@@ -1260,6 +1506,17 @@
"lastUpdatedTime":{"shape":"Timestamp"}
}
},
"ResultField":{
"type":"structure",
"members":{
"field":{"shape":"Field"},
"value":{"shape":"Value"}
}
},
"ResultRows":{
"type":"list",
"member":{"shape":"ResultField"}
},
"RoleArn":{
"type":"string",
"min":1
@@ -1287,6 +1544,42 @@
"fault":true
},
"StartFromHead":{"type":"boolean"},
"StartQueryRequest":{
"type":"structure",
"required":[
"logGroupName",
"startTime",
"endTime",
"queryString"
],
"members":{
"logGroupName":{"shape":"LogGroupName"},
"startTime":{"shape":"Timestamp"},
"endTime":{"shape":"Timestamp"},
"queryString":{"shape":"QueryString"},
"limit":{"shape":"EventsLimit"}
}
},
"StartQueryResponse":{
"type":"structure",
"members":{
"queryId":{"shape":"QueryId"}
}
},
"StatsValue":{"type":"double"},
"StopQueryRequest":{
"type":"structure",
"required":["queryId"],
"members":{
"queryId":{"shape":"QueryId"}
}
},
"StopQueryResponse":{
"type":"structure",
"members":{
"success":{"shape":"Success"}
}
},
"StoredBytes":{
"type":"long",
"min":0
@@ -1307,6 +1600,7 @@
"type":"list",
"member":{"shape":"SubscriptionFilter"}
},
"Success":{"type":"boolean"},
"TagKey":{
"type":"string",
"max":128,
@@ -1373,6 +1667,12 @@
"min":0
},
"Token":{"type":"string"},
"UnrecognizedClientException":{
"type":"structure",
"members":{
},
"exception":true
},
"UntagLogGroupRequest":{
"type":"structure",
"required":[
+266 -33
View File
@@ -19,20 +19,26 @@
"DescribeLogGroups": "<p>Lists the specified log groups. You can list all your log groups or filter the results by prefix. The results are ASCII-sorted by log group name.</p>",
"DescribeLogStreams": "<p>Lists the log streams for the specified log group. You can list all the log streams or filter the results by prefix. You can also control how the results are ordered.</p> <p>This operation has a limit of five transactions per second, after which transactions are throttled.</p>",
"DescribeMetricFilters": "<p>Lists the specified metric filters. You can list all the metric filters or filter the results by log name, prefix, metric name, or metric namespace. The results are ASCII-sorted by filter name.</p>",
"DescribeQueries": "<p>Returns a list of CloudWatch Logs Insights queries that are scheduled, executing, or have been executed recently in this account. You can request all queries, or limit it to queries of a specific log group or queries with a certain status.</p>",
"DescribeResourcePolicies": "<p>Lists the resource policies in this account.</p>",
"DescribeSubscriptionFilters": "<p>Lists the subscription filters for the specified log group. You can list all the subscription filters or filter the results by prefix. The results are ASCII-sorted by filter name.</p>",
"DisassociateKmsKey": "<p>Disassociates the associated AWS Key Management Service (AWS KMS) customer master key (CMK) from the specified log group.</p> <p>After the AWS KMS CMK is disassociated from the log group, AWS CloudWatch Logs stops encrypting newly ingested data for the log group. All previously ingested data remains encrypted, and AWS CloudWatch Logs requires permissions for the CMK whenever the encrypted data is requested.</p> <p>Note that it can take up to 5 minutes for this operation to take effect.</p>",
"FilterLogEvents": "<p>Lists log events from the specified log group. You can list all the log events or filter the results using a filter pattern, a time range, and the name of the log stream.</p> <p>By default, this operation returns as many log events as can fit in 1 MB (up to 10,000 log events), or all the events found within the time range that you specify. If the results include a token, then there are more log events available, and you can get additional results by specifying the token in a subsequent call.</p>",
"GetLogEvents": "<p>Lists log events from the specified log stream. You can list all the log events or filter using a time range.</p> <p>By default, this operation returns as many log events as can fit in a response size of 1MB (up to 10,000 log events). You can get additional log events by specifying one of the tokens in a subsequent call.</p>",
"GetLogGroupFields": "<p>Returns a list of the fields that are included in log events in the specified log group, along with the percentage of log events that contain each field. The search is limited to a time period that you specify.</p> <p>In the results, fields that start with @ are fields generated by CloudWatch Logs. For example, <code>@timestamp</code> is the timestamp of each log event.</p> <p>The response results are sorted by the frequency percentage, starting with the highest percentage.</p>",
"GetLogRecord": "<p>Retrieves all the fields and values of a single log event. All fields are retrieved, even if the original query that produced the <code>logRecordPointer</code> retrieved only a subset of fields. Fields are returned as field name/field value pairs.</p> <p>Additionally, the entire unparsed log event is returned within <code>@message</code>.</p>",
"GetQueryResults": "<p>Returns the results from the specified query. If the query is in progress, partial results of that current execution are returned.</p> <p>Only the fields requested in the query are returned, along with a <code>@ptr</code> field which is the identifier for the log record. You can use the value of <code>@ptr</code> in a operation to get the full log record.</p> <p> <code>GetQueryResults</code> does not start a query execution. To run a query, use .</p>",
"ListTagsLogGroup": "<p>Lists the tags for the specified log group.</p>",
"PutDestination": "<p>Creates or updates a destination. A destination encapsulates a physical resource (such as an Amazon Kinesis stream) and enables you to subscribe to a real-time stream of log events for a different account, ingested using <a>PutLogEvents</a>. Currently, the only supported physical resource is a Kinesis stream belonging to the same account as the destination.</p> <p>Through an access policy, a destination controls what is written to its Kinesis stream. By default, <code>PutDestination</code> does not set any access policy with the destination, which means a cross-account user cannot call <a>PutSubscriptionFilter</a> against this destination. To enable this, the destination owner must call <a>PutDestinationPolicy</a> after <code>PutDestination</code>.</p>",
"PutDestinationPolicy": "<p>Creates or updates an access policy associated with an existing destination. An access policy is an <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/policies_overview.html\">IAM policy document</a> that is used to authorize claims to register a subscription filter against a given destination.</p>",
"PutLogEvents": "<p>Uploads a batch of log events to the specified log stream.</p> <p>You must include the sequence token obtained from the response of the previous call. An upload in a newly created log stream does not require a sequence token. You can also get the sequence token using <a>DescribeLogStreams</a>. If you call <code>PutLogEvents</code> twice within a narrow time period using the same value for <code>sequenceToken</code>, both calls may be successful, or one may be rejected.</p> <p>The batch of events must satisfy the following constraints:</p> <ul> <li> <p>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.</p> </li> <li> <p>None of the log events in the batch can be more than 2 hours in the future.</p> </li> <li> <p>None of the log events in the batch can be older than 14 days or the retention period of the log group.</p> </li> <li> <p>The log events in the batch must be in chronological ordered by their time stamp (the time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC).</p> </li> <li> <p>The maximum number of log events in a batch is 10,000.</p> </li> <li> <p>A batch of log events in a single request cannot span more than 24 hours. Otherwise, the operation fails.</p> </li> </ul>",
"PutDestinationPolicy": "<p>Creates or updates an access policy associated with an existing destination. An access policy is an <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/policies_overview.html\">IAM policy document</a> that is used to authorize claims to register a subscription filter against a given destination.</p>",
"PutLogEvents": "<p>Uploads a batch of log events to the specified log stream.</p> <p>You must include the sequence token obtained from the response of the previous call. An upload in a newly created log stream does not require a sequence token. You can also get the sequence token using <a>DescribeLogStreams</a>. If you call <code>PutLogEvents</code> twice within a narrow time period using the same value for <code>sequenceToken</code>, both calls may be successful, or one may be rejected.</p> <p>The batch of events must satisfy the following constraints:</p> <ul> <li> <p>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.</p> </li> <li> <p>None of the log events in the batch can be more than 2 hours in the future.</p> </li> <li> <p>None of the log events in the batch can be older than 14 days or older than the retention period of the log group.</p> </li> <li> <p>The log events in the batch must be in chronological ordered by their timestamp. The timestamp is the time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. (In AWS Tools for PowerShell and the AWS SDK for .NET, the timestamp is specified in .NET format: yyyy-mm-ddThh:mm:ss. For example, 2017-09-15T13:45:30.) </p> </li> <li> <p>The maximum number of log events in a batch is 10,000.</p> </li> <li> <p>A batch of log events in a single request cannot span more than 24 hours. Otherwise, the operation fails.</p> </li> </ul> <p>If a call to PutLogEvents returns \"UnrecognizedClientException\" the most likely cause is an invalid AWS access key ID or secret key. </p>",
"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 <a>PutLogEvents</a>.</p> <p>The maximum number of metric filters that can be associated with a log group is 100.</p>",
"PutResourcePolicy": "<p>Creates or updates a resource policy allowing other AWS services to put log events to this account, such as Amazon Route 53. An account can have up to 50 resource policies per region.</p>",
"PutResourcePolicy": "<p>Creates or updates a resource policy allowing other AWS services to put log events to this account, such as Amazon Route 53. An account can have up to 10 resource policies per region.</p>",
"PutRetentionPolicy": "<p>Sets the retention of the specified log group. A retention policy allows you to configure the number of days for which to retain log events in the specified log group.</p>",
"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 <a>PutLogEvents</a> and have them delivered to a specific destination. Currently, the supported destinations are:</p> <ul> <li> <p>An Amazon Kinesis stream belonging to the same account as the subscription filter, for same-account delivery.</p> </li> <li> <p>A logical destination that belongs to a different account, for cross-account delivery.</p> </li> <li> <p>An Amazon Kinesis Firehose delivery stream that belongs to the same account as the subscription filter, for same-account delivery.</p> </li> <li> <p>An AWS Lambda function that belongs to the same account as the subscription filter, for same-account delivery.</p> </li> </ul> <p>There can only be one subscription filter associated with a log group. If you are updating an existing filter, you must specify the correct name in <code>filterName</code>. Otherwise, the call fails because you cannot associate a second filter with a log group.</p>",
"TagLogGroup": "<p>Adds or updates the specified tags for the specified log group.</p> <p>To list the tags for a log group, use <a>ListTagsLogGroup</a>. To remove tags, use <a>UntagLogGroup</a>.</p> <p>For more information about tags, see <a href=\"http://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/log-group-tagging.html\">Tag Log Groups in Amazon CloudWatch Logs</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>",
"StartQuery": "<p>Schedules a query of a log group using CloudWatch Logs Insights. You specify the log group and time range to query, and the query string to use.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html\">CloudWatch Logs Insights Query Syntax</a>.</p> <p>Queries time out after 15 minutes of execution. If your queries are timing out, reduce the time range being searched, or partition your query into a number of queries.</p>",
"StopQuery": "<p>Stops a CloudWatch Logs Insights query that is in progress. If the query has already ended, the operation returns an error indicating that the specified query is not running.</p>",
"TagLogGroup": "<p>Adds or updates the specified tags for the specified log group.</p> <p>To list the tags for a log group, use <a>ListTagsLogGroup</a>. To remove tags, use <a>UntagLogGroup</a>.</p> <p>For more information about tags, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/log-group-tagging.html\">Tag Log Groups in Amazon CloudWatch Logs</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>",
"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>",
"UntagLogGroup": "<p>Removes the specified tags from the specified log group.</p> <p>To list the tags for a log group, use <a>ListTagsLogGroup</a>. To add tags, use <a>UntagLogGroup</a>.</p>"
},
@@ -203,6 +209,22 @@
"refs": {
}
},
"DescribeQueriesMaxResults": {
"base": null,
"refs": {
"DescribeQueriesRequest$maxResults": "<p>Limits the number of returned queries to the specified number.</p>"
}
},
"DescribeQueriesRequest": {
"base": null,
"refs": {
}
},
"DescribeQueriesResponse": {
"base": null,
"refs": {
}
},
"DescribeResourcePoliciesRequest": {
"base": null,
"refs": {
@@ -291,7 +313,8 @@
"base": null,
"refs": {
"FilterLogEventsRequest$limit": "<p>The maximum number of events to return. The default is 10,000 events.</p>",
"GetLogEventsRequest$limit": "<p>The maximum number of log events returned. If you don't specify a value, the maximum is as many log events as can fit in a response size of 1 MB, up to 10,000 log events.</p>"
"GetLogEventsRequest$limit": "<p>The maximum number of log events returned. If you don't specify a value, the maximum is as many log events as can fit in a response size of 1 MB, up to 10,000 log events.</p>",
"StartQueryRequest$limit": "<p>The maximum number of log events to return in the query. If the query string uses the <code>fields</code> command, only the specified fields and their values are returned.</p>"
}
},
"ExportDestinationBucket": {
@@ -367,6 +390,14 @@
"MetricFilterMatchRecord$extractedValues": "<p>The values extracted from the event data by the filter.</p>"
}
},
"Field": {
"base": null,
"refs": {
"LogGroupField$name": "<p>The name of a log field.</p>",
"LogRecord$key": null,
"ResultField$field": "<p>The log event field.</p>"
}
},
"FilterCount": {
"base": null,
"refs": {
@@ -397,9 +428,9 @@
}
},
"FilterPattern": {
"base": "<p>A symbolic description of how CloudWatch Logs should interpret the data in each log event. For example, a log event may contain time stamps, IP addresses, strings, and so on. You use the filter pattern to specify what to look for in the log event message.</p>",
"base": "<p>A symbolic description of how 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>",
"refs": {
"FilterLogEventsRequest$filterPattern": "<p>The filter pattern to use. If not provided, all the events are matched.</p>",
"FilterLogEventsRequest$filterPattern": "<p>The filter pattern to use. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html\">Filter and Pattern Syntax</a>.</p> <p>If not provided, all the events are matched.</p>",
"MetricFilter$filterPattern": null,
"PutMetricFilterRequest$filterPattern": "<p>A filter pattern for extracting metric data out of ingested log events.</p>",
"PutSubscriptionFilterRequest$filterPattern": "<p>A filter pattern for subscribing to a filtered stream of log events.</p>",
@@ -429,6 +460,36 @@
"refs": {
}
},
"GetLogGroupFieldsRequest": {
"base": null,
"refs": {
}
},
"GetLogGroupFieldsResponse": {
"base": null,
"refs": {
}
},
"GetLogRecordRequest": {
"base": null,
"refs": {
}
},
"GetLogRecordResponse": {
"base": null,
"refs": {
}
},
"GetQueryResultsRequest": {
"base": null,
"refs": {
}
},
"GetQueryResultsResponse": {
"base": null,
"refs": {
}
},
"InputLogEvent": {
"base": "<p>Represents a log event, which is a record of activity that was recorded by the application or resource being monitored.</p>",
"refs": {
@@ -444,13 +505,13 @@
"InputLogStreamNames": {
"base": null,
"refs": {
"FilterLogEventsRequest$logStreamNames": "<p>Optional list of log stream names.</p>"
"FilterLogEventsRequest$logStreamNames": "<p>Filters the results to only logs from the log streams in this list.</p> <p>If you specify a value for both <code>logStreamNamePrefix</code> and <code>logStreamNames</code>, the action returns an <code>InvalidParameterException</code> error.</p>"
}
},
"Interleaved": {
"base": null,
"refs": {
"FilterLogEventsRequest$interleaved": "<p>If the value is true, the operation makes a best effort to provide responses that contain events from multiple log streams within the log group, interleaved in a single response. If the value is false, all the matched log events in the first log stream are searched first, then those in the next log stream, and so on. The default is false.</p>"
"FilterLogEventsRequest$interleaved": "<p>If the value is true, the operation makes a best effort to provide responses that contain events from multiple log streams within the log group, interleaved in a single response. If the value is false, all the matched log events in the first log stream are searched first, then those in the next log stream, and so on. The default is false.</p> <p> <b>IMPORTANT:</b> Starting on June 17, 2019, this parameter will be ignored and the value will be assumed to be true. The response from this operation will always interleave events from multiple log streams within a log group.</p>"
}
},
"InvalidOperationException": {
@@ -471,8 +532,8 @@
"KmsKeyId": {
"base": null,
"refs": {
"AssociateKmsKeyRequest$kmsKeyId": "<p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms\">Amazon Resource Names - AWS Key Management Service (AWS KMS)</a>.</p>",
"CreateLogGroupRequest$kmsKeyId": "<p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms\">Amazon Resource Names - AWS Key Management Service (AWS KMS)</a>.</p>",
"AssociateKmsKeyRequest$kmsKeyId": "<p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms\">Amazon Resource Names - AWS Key Management Service (AWS KMS)</a>.</p>",
"CreateLogGroupRequest$kmsKeyId": "<p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms\">Amazon Resource Names - AWS Key Management Service (AWS KMS)</a>.</p>",
"LogGroup$kmsKeyId": "<p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log data.</p>"
}
},
@@ -505,6 +566,18 @@
"LogGroups$member": null
}
},
"LogGroupField": {
"base": "<p>The fields contained in log events found by a <code>GetLogGroupFields</code> operation, along with the percentage of queried log events in which each field appears.</p>",
"refs": {
"LogGroupFieldList$member": null
}
},
"LogGroupFieldList": {
"base": null,
"refs": {
"GetLogGroupFieldsResponse$logGroupFields": "<p>The array of fields found in the query. Each object in the array contains the name of the field, along with the percentage of time it appeared in the log events that were queried.</p>"
}
},
"LogGroupName": {
"base": null,
"refs": {
@@ -520,11 +593,13 @@
"DescribeLogGroupsRequest$logGroupNamePrefix": "<p>The prefix to match.</p>",
"DescribeLogStreamsRequest$logGroupName": "<p>The name of the log group.</p>",
"DescribeMetricFiltersRequest$logGroupName": "<p>The name of the log group.</p>",
"DescribeQueriesRequest$logGroupName": "<p>Limits the returned queries to only those for the specified log group.</p>",
"DescribeSubscriptionFiltersRequest$logGroupName": "<p>The name of the log group.</p>",
"DisassociateKmsKeyRequest$logGroupName": "<p>The name of the log group.</p>",
"ExportTask$logGroupName": "<p>The name of the log group from which logs data was exported.</p>",
"FilterLogEventsRequest$logGroupName": "<p>The name of the log group.</p>",
"FilterLogEventsRequest$logGroupName": "<p>The name of the log group to search.</p>",
"GetLogEventsRequest$logGroupName": "<p>The name of the log group.</p>",
"GetLogGroupFieldsRequest$logGroupName": "<p>The name of the log group to search.</p>",
"ListTagsLogGroupRequest$logGroupName": "<p>The name of the log group.</p>",
"LogGroup$logGroupName": "<p>The name of the log group.</p>",
"MetricFilter$logGroupName": "<p>The name of the log group.</p>",
@@ -532,6 +607,8 @@
"PutMetricFilterRequest$logGroupName": "<p>The name of the log group.</p>",
"PutRetentionPolicyRequest$logGroupName": "<p>The name of the log group.</p>",
"PutSubscriptionFilterRequest$logGroupName": "<p>The name of the log group.</p>",
"QueryInfo$logGroupName": "<p>The name of the log group scanned by this query.</p>",
"StartQueryRequest$logGroupName": "<p>The log group on which to perform the query.</p>",
"SubscriptionFilter$logGroupName": "<p>The name of the log group.</p>",
"TagLogGroupRequest$logGroupName": "<p>The name of the log group.</p>",
"UntagLogGroupRequest$logGroupName": "<p>The name of the log group.</p>"
@@ -543,6 +620,18 @@
"DescribeLogGroupsResponse$logGroups": "<p>The log groups.</p>"
}
},
"LogRecord": {
"base": null,
"refs": {
"GetLogRecordResponse$logRecord": "<p>The requested log event, as a JSON string.</p>"
}
},
"LogRecordPointer": {
"base": null,
"refs": {
"GetLogRecordRequest$logRecordPointer": "<p>The pointer corresponding to the log event record you want to retrieve. You get this from the response of a <code>GetQueryResults</code> operation. In that response, the value of the <code>@ptr</code> field for a log event is the value to use as <code>logRecordPointer</code> to retrieve that complete log event record.</p>"
}
},
"LogStream": {
"base": "<p>Represents a log stream, which is a sequence of log events from a single emitter of logs.</p>",
"refs": {
@@ -555,8 +644,9 @@
"CreateExportTaskRequest$logStreamNamePrefix": "<p>Export only log streams that match the provided prefix. If you don't specify a value, no prefix filter is applied.</p>",
"CreateLogStreamRequest$logStreamName": "<p>The name of the log stream.</p>",
"DeleteLogStreamRequest$logStreamName": "<p>The name of the log stream.</p>",
"DescribeLogStreamsRequest$logStreamNamePrefix": "<p>The prefix to match.</p> <p>iIf <code>orderBy</code> is <code>LastEventTime</code>,you cannot specify this parameter.</p>",
"FilteredLogEvent$logStreamName": "<p>The name of the log stream this event belongs to.</p>",
"DescribeLogStreamsRequest$logStreamNamePrefix": "<p>The prefix to match.</p> <p>If <code>orderBy</code> is <code>LastEventTime</code>,you cannot specify this parameter.</p>",
"FilterLogEventsRequest$logStreamNamePrefix": "<p>Filters the results to include only events from log streams that have names starting with this prefix.</p> <p>If you specify a value for both <code>logStreamNamePrefix</code> and <code>logStreamNames</code>, but the value for <code>logStreamNamePrefix</code> does not match any log stream names specified in <code>logStreamNames</code>, the action returns an <code>InvalidParameterException</code> error.</p>",
"FilteredLogEvent$logStreamName": "<p>The name of the log stream to which this event belongs.</p>",
"GetLogEventsRequest$logStreamName": "<p>The name of the log stream.</p>",
"InputLogStreamNames$member": null,
"LogStream$logStreamName": "<p>The name of the log stream.</p>",
@@ -576,6 +666,17 @@
"DescribeLogStreamsResponse$logStreams": "<p>The log streams.</p>"
}
},
"MalformedQueryException": {
"base": "<p>The query string is not valid. Details about this error are displayed in a <code>QueryCompileError</code> object. For more information, see .</p> <p>For more information about valid query syntax, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html\">CloudWatch Logs Insights Query Syntax</a>.</p>",
"refs": {
}
},
"Message": {
"base": null,
"refs": {
"QueryCompileError$message": "<p>Reserved.</p>"
}
},
"MetricFilter": {
"base": "<p>Metric filters express how CloudWatch Logs would extract metric observations from ingested log events and transform them into metric data in a CloudWatch metric.</p>",
"refs": {
@@ -603,19 +704,19 @@
"MetricName": {
"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>",
"refs": {
"DescribeMetricFiltersRequest$metricName": null,
"DescribeMetricFiltersRequest$metricName": "<p>Filters results to include only those with the specified metric name. If you include this parameter in your request, you must also include the <code>metricNamespace</code> parameter.</p>",
"MetricTransformation$metricName": "<p>The name of the CloudWatch metric.</p>"
}
},
"MetricNamespace": {
"base": null,
"refs": {
"DescribeMetricFiltersRequest$metricNamespace": "<p>The namespace of the CloudWatch metric.</p>",
"DescribeMetricFiltersRequest$metricNamespace": "<p>Filters results to include only those in the specified namespace. If you include this parameter in your request, you must also include the <code>metricName</code> parameter.</p>",
"MetricTransformation$metricNamespace": "<p>The namespace of the CloudWatch metric.</p>"
}
},
"MetricTransformation": {
"base": "<p>Indicates how to transform ingested log events in to metric data in a CloudWatch metric.</p>",
"base": "<p>Indicates how to transform ingested log events to metric data in a CloudWatch metric.</p>",
"refs": {
"MetricTransformations$member": null
}
@@ -646,6 +747,8 @@
"DescribeLogStreamsResponse$nextToken": null,
"DescribeMetricFiltersRequest$nextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
"DescribeMetricFiltersResponse$nextToken": null,
"DescribeQueriesRequest$nextToken": null,
"DescribeQueriesResponse$nextToken": null,
"DescribeResourcePoliciesRequest$nextToken": null,
"DescribeResourcePoliciesResponse$nextToken": null,
"DescribeSubscriptionFiltersRequest$nextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
@@ -653,8 +756,8 @@
"FilterLogEventsRequest$nextToken": "<p>The token for the next set of events to return. (You received this token from a previous call.)</p>",
"FilterLogEventsResponse$nextToken": "<p>The token to use when requesting the next set of items. The token expires after 24 hours.</p>",
"GetLogEventsRequest$nextToken": "<p>The token for the next set of items to return. (You received this token from a previous call.)</p>",
"GetLogEventsResponse$nextForwardToken": "<p>The token for the next set of items in the forward direction. The token expires after 24 hours.</p>",
"GetLogEventsResponse$nextBackwardToken": "<p>The token for the next set of items in the backward direction. The token expires after 24 hours.</p>"
"GetLogEventsResponse$nextForwardToken": "<p>The token for the next set of items in the forward direction. The token expires after 24 hours. If you have reached the end of the stream, it will return the same token you passed in.</p>",
"GetLogEventsResponse$nextBackwardToken": "<p>The token for the next set of items in the backward direction. The token expires after 24 hours. This token will never be null. If you have reached the end of the stream, it will return the same token you passed in.</p>"
}
},
"OperationAbortedException": {
@@ -680,10 +783,16 @@
"GetLogEventsResponse$events": "<p>The events.</p>"
}
},
"Percentage": {
"base": null,
"refs": {
"LogGroupField$percent": "<p>The percentage of log events queried that contained the field.</p>"
}
},
"PolicyDocument": {
"base": null,
"refs": {
"PutResourcePolicyRequest$policyDocument": "<p>Details of the new policy, including the identity of the principal that is enabled to put logs to this account. This is formatted as a JSON string.</p> <p>The following example creates a resource policy enabling the Route 53 service to put DNS query logs in to the specified log group. Replace \"logArn\" with the ARN of your CloudWatch Logs resource, such as a log group or log stream.</p> <p> { \"Version\": \"2012-10-17\" \"Statement\": [ { \"Sid\": \"Route53LogsToCloudWatchLogs\", \"Effect\": \"Allow\", \"Principal\": { \"Service\": [ \"route53.amazonaws.com\" ] }, \"Action\":\"logs:PutLogEvents\", \"Resource\": logArn } ] } </p>",
"PutResourcePolicyRequest$policyDocument": "<p>Details of the new policy, including the identity of the principal that is enabled to put logs to this account. This is formatted as a JSON string. This parameter is required.</p> <p>The following example creates a resource policy enabling the Route 53 service to put DNS query logs in to the specified log group. Replace \"logArn\" with the ARN of your CloudWatch Logs resource, such as a log group or log stream.</p> <p> <code>{ \"Version\": \"2012-10-17\", \"Statement\": [ { \"Sid\": \"Route53LogsToCloudWatchLogs\", \"Effect\": \"Allow\", \"Principal\": { \"Service\": [ \"route53.amazonaws.com\" ] }, \"Action\":\"logs:PutLogEvents\", \"Resource\": \"logArn\" } ] } </code> </p>",
"ResourcePolicy$policyDocument": "<p>The details of the policy.</p>"
}
},
@@ -745,6 +854,73 @@
"refs": {
}
},
"QueryCharOffset": {
"base": null,
"refs": {
"QueryCompileErrorLocation$startCharOffset": "<p>Reserved.</p>",
"QueryCompileErrorLocation$endCharOffset": "<p>Reserved.</p>"
}
},
"QueryCompileError": {
"base": "<p>Reserved.</p>",
"refs": {
"MalformedQueryException$queryCompileError": null
}
},
"QueryCompileErrorLocation": {
"base": "<p>Reserved.</p>",
"refs": {
"QueryCompileError$location": "<p>Reserved.</p>"
}
},
"QueryId": {
"base": null,
"refs": {
"GetQueryResultsRequest$queryId": "<p>The ID number of the query.</p>",
"QueryInfo$queryId": "<p>The unique ID number of this query.</p>",
"StartQueryResponse$queryId": "<p>The unique ID of the query. </p>",
"StopQueryRequest$queryId": "<p>The ID number of the query to stop. If necessary, you can use <code>DescribeQueries</code> to find this ID number.</p>"
}
},
"QueryInfo": {
"base": "<p>Information about one CloudWatch Logs Insights query that matches the request in a <code>DescribeQueries</code> operation. </p>",
"refs": {
"QueryInfoList$member": null
}
},
"QueryInfoList": {
"base": null,
"refs": {
"DescribeQueriesResponse$queries": "<p>The list of queries that match the request.</p>"
}
},
"QueryResults": {
"base": null,
"refs": {
"GetQueryResultsResponse$results": "<p>The log events that matched the query criteria during the most recent time it ran.</p> <p>The <code>results</code> value is an array of arrays. Each log event is one object in the top-level array. Each of these log event objects is an array of <code>field</code>/<code>value</code> pairs.</p>"
}
},
"QueryStatistics": {
"base": "<p>Contains the number of log events scanned by the query, the number of log events that matched the query criteria, and the total number of bytes in the log events that were scanned.</p>",
"refs": {
"GetQueryResultsResponse$statistics": "<p>Includes the number of log events scanned by the query, the number of log events that matched the query criteria, and the total number of bytes in the log events that were scanned.</p>"
}
},
"QueryStatus": {
"base": null,
"refs": {
"DescribeQueriesRequest$status": "<p>Limits the returned queries to only those that have the specified status. Valid values are <code>Cancelled</code>, <code>Complete</code>, <code>Failed</code>, <code>Running</code>, and <code>Scheduled</code>.</p>",
"GetQueryResultsResponse$status": "<p>The status of the most recent running of the query. Possible values are <code>Cancelled</code>, <code>Complete</code>, <code>Failed</code>, <code>Running</code>, <code>Scheduled</code>, <code>Timeout</code>, and <code>Unknown</code>.</p> <p>Queries time out after 15 minutes of execution. To avoid having your queries time out, reduce the time range being searched, or partition your query into a number of queries.</p>",
"QueryInfo$status": "<p>The status of this query. Possible values are <code>Cancelled</code>, <code>Complete</code>, <code>Failed</code>, <code>Running</code>, <code>Scheduled</code>, and <code>Unknown</code>.</p>"
}
},
"QueryString": {
"base": null,
"refs": {
"QueryInfo$queryString": "<p>The query string used in this query.</p>",
"StartQueryRequest$queryString": "<p>The query string to use. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html\">CloudWatch Logs Insights Query Syntax</a>.</p>"
}
},
"RejectedLogEventsInfo": {
"base": "<p>Represents the rejected events.</p>",
"refs": {
@@ -774,6 +950,18 @@
"ResourcePolicies$member": null
}
},
"ResultField": {
"base": "<p>Contains one field from one log event returned by a CloudWatch Logs Insights query, along with the value of that field.</p>",
"refs": {
"ResultRows$member": null
}
},
"ResultRows": {
"base": null,
"refs": {
"QueryResults$member": null
}
},
"RoleArn": {
"base": null,
"refs": {
@@ -816,11 +1004,39 @@
"GetLogEventsRequest$startFromHead": "<p>If the value is true, the earliest log events are returned first. If the value is false, the latest log events are returned first. The default value is false.</p>"
}
},
"StartQueryRequest": {
"base": null,
"refs": {
}
},
"StartQueryResponse": {
"base": null,
"refs": {
}
},
"StatsValue": {
"base": null,
"refs": {
"QueryStatistics$recordsMatched": "<p>The number of log events that matched the query string.</p>",
"QueryStatistics$recordsScanned": "<p>The total number of log events scanned during the query.</p>",
"QueryStatistics$bytesScanned": "<p>The total number of bytes in the log events scanned during the query.</p>"
}
},
"StopQueryRequest": {
"base": null,
"refs": {
}
},
"StopQueryResponse": {
"base": null,
"refs": {
}
},
"StoredBytes": {
"base": null,
"refs": {
"LogGroup$storedBytes": "<p>The number of bytes stored.</p>",
"LogStream$storedBytes": "<p>The number of bytes stored.</p>"
"LogStream$storedBytes": "<p>The number of bytes stored.</p> <p> <b>IMPORTANT:</b> Starting on June 17, 2019, this parameter will be deprecated for log streams, and will be reported as zero. This change applies only to log streams. The <code>storedBytes</code> parameter for log groups is not affected.</p>"
}
},
"SubscriptionFilter": {
@@ -835,6 +1051,12 @@
"DescribeSubscriptionFiltersResponse$subscriptionFilters": "<p>The subscription filters.</p>"
}
},
"Success": {
"base": null,
"refs": {
"StopQueryResponse$success": "<p>This is true if the query was stopped by the <code>StopQuery</code> operation.</p>"
}
},
"TagKey": {
"base": null,
"refs": {
@@ -893,29 +1115,33 @@
"Timestamp": {
"base": null,
"refs": {
"CreateExportTaskRequest$from": "<p>The start time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp earlier than this time are not exported.</p>",
"CreateExportTaskRequest$to": "<p>The end time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp later than this time are not exported.</p>",
"CreateExportTaskRequest$from": "<p>The start time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp earlier than this time are not exported.</p>",
"CreateExportTaskRequest$to": "<p>The end time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not exported.</p>",
"Destination$creationTime": "<p>The creation time of the destination, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"ExportTask$from": "<p>The start time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp before this time are not exported.</p>",
"ExportTask$to": "<p>The end time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp later than this time are not exported.</p>",
"ExportTask$from": "<p>The start time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp before this time are not exported.</p>",
"ExportTask$to": "<p>The end time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not exported.</p>",
"ExportTaskExecutionInfo$creationTime": "<p>The creation time of the export task, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"ExportTaskExecutionInfo$completionTime": "<p>The completion time of the export task, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"FilterLogEventsRequest$startTime": "<p>The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp before this time are not returned.</p>",
"FilterLogEventsRequest$endTime": "<p>The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp later than this time are not returned.</p>",
"FilterLogEventsRequest$startTime": "<p>The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp before this time are not returned.</p>",
"FilterLogEventsRequest$endTime": "<p>The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not returned.</p>",
"FilteredLogEvent$timestamp": "<p>The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"FilteredLogEvent$ingestionTime": "<p>The time the event was ingested, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"GetLogEventsRequest$startTime": "<p>The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp earlier than this time are not included.</p>",
"GetLogEventsRequest$endTime": "<p>The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a time stamp later than this time are not included.</p>",
"InputLogEvent$timestamp": "<p>The time the event occurred, expressed as the number of milliseconds fter Jan 1, 1970 00:00:00 UTC.</p>",
"GetLogEventsRequest$startTime": "<p>The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to this time or later than this time are included. Events with a timestamp earlier than this time are not included.</p>",
"GetLogEventsRequest$endTime": "<p>The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to or later than this time are not included.</p>",
"GetLogGroupFieldsRequest$time": "<p>The time to set as the center of the query. If you specify <code>time</code>, the 8 minutes before and 8 minutes after this time are searched. If you omit <code>time</code>, the past 15 minutes are queried.</p> <p>The <code>time</code> value is specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.</p>",
"InputLogEvent$timestamp": "<p>The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"LogGroup$creationTime": "<p>The creation time of the log group, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"LogStream$creationTime": "<p>The creation time of the stream, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"LogStream$firstEventTimestamp": "<p>The time of the first event, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"LogStream$lastEventTimestamp": "<p> the time of the most recent log event in the log stream in CloudWatch Logs. This number is expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. lastEventTime updates on an eventual consistency basis. It typically updates in less than an hour from ingestion, but may take longer in some rare situations.</p>",
"LogStream$lastEventTimestamp": "<p>The time of the most recent log event in the log stream in CloudWatch Logs. This number is expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. The <code>lastEventTime</code> value updates on an eventual consistency basis. It typically updates in less than an hour from ingestion, but may take longer in some rare situations.</p>",
"LogStream$lastIngestionTime": "<p>The ingestion time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"MetricFilter$creationTime": "<p>The creation time of the metric filter, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"OutputLogEvent$timestamp": "<p>The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"OutputLogEvent$ingestionTime": "<p>The time the event was ingested, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"ResourcePolicy$lastUpdatedTime": "<p>Time stamp showing when this policy was last updated, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"QueryInfo$createTime": "<p>The date and time that this query was created.</p>",
"ResourcePolicy$lastUpdatedTime": "<p>Timestamp showing when this policy was last updated, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>",
"StartQueryRequest$startTime": "<p>The beginning of the time range to query. The range is inclusive, so the specified start time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.</p>",
"StartQueryRequest$endTime": "<p>The end of the time range to query. The range is inclusive, so the specified end time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.</p>",
"SubscriptionFilter$creationTime": "<p>The creation time of the subscription filter, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.</p>"
}
},
@@ -925,6 +1151,11 @@
"ExtractedValues$key": null
}
},
"UnrecognizedClientException": {
"base": "<p>The most likely cause is an invalid AWS access key ID or secret key.</p>",
"refs": {
}
},
"UntagLogGroupRequest": {
"base": null,
"refs": {
@@ -933,7 +1164,9 @@
"Value": {
"base": null,
"refs": {
"ExtractedValues$value": null
"ExtractedValues$value": null,
"LogRecord$value": null,
"ResultField$value": "<p>The value of this field.</p>"
}
}
}
@@ -0,0 +1,19 @@
{
"version": 1,
"defaultRegion": "us-west-2",
"testCases": [
{
"operationName": "DescribeLogGroups",
"input": {},
"errorExpectedFromService": false
},
{
"operationName": "GetLogEvents",
"input": {
"logGroupName": "fakegroup",
"logStreamName": "fakestream"
},
"errorExpectedFromService": true
}
]
}