File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class QueryRequest extends Input
22
22
* Unique, case-sensitive string of up to 64 ASCII characters specified when a `Query` request is made. Providing a
23
23
* `ClientToken` makes the call to `Query`*idempotent*. This means that running the same query repeatedly will produce
24
24
* the same result. In other words, making multiple identical `Query` requests has the same effect as making a single
25
- * request. When using `ClientToken` in a query, note the following:.
25
+ * request. When using `ClientToken` in a query, note the following:
26
26
*
27
27
* - If the Query API is instantiated without a `ClientToken`, the Query SDK generates a `ClientToken` on your behalf.
28
28
* - If the `Query` invocation only contains the `ClientToken` but does not include a `NextToken`, that invocation of
@@ -62,7 +62,7 @@ final class QueryRequest extends Input
62
62
63
63
/**
64
64
* The total number of rows to be returned in the `Query` output. The initial run of `Query` with a `MaxRows` value
65
- * specified will return the result set of the query in two cases:.
65
+ * specified will return the result set of the query in two cases:
66
66
*
67
67
* - The size of the result is less than `1MB`.
68
68
* - The number of rows in the result set is less than the value of `maxRows`.
Original file line number Diff line number Diff line change 2
2
3
3
namespace AsyncAws \TimestreamQuery \ValueObject ;
4
4
5
+ use AsyncAws \TimestreamQuery \ValueObject \Datum as Datum1 ;
6
+
5
7
/**
6
8
* Datum represents a single data point in a query result.
7
9
*/
@@ -55,7 +57,7 @@ public function __construct(array $input)
55
57
{
56
58
$ this ->scalarValue = $ input ['ScalarValue ' ] ?? null ;
57
59
$ this ->timeSeriesValue = isset ($ input ['TimeSeriesValue ' ]) ? array_map ([TimeSeriesDataPoint::class, 'create ' ], $ input ['TimeSeriesValue ' ]) : null ;
58
- $ this ->arrayValue = isset ($ input ['ArrayValue ' ]) ? array_map ([Datum ::class, 'create ' ], $ input ['ArrayValue ' ]) : null ;
60
+ $ this ->arrayValue = isset ($ input ['ArrayValue ' ]) ? array_map ([Datum1 ::class, 'create ' ], $ input ['ArrayValue ' ]) : null ;
59
61
$ this ->rowValue = isset ($ input ['RowValue ' ]) ? Row::create ($ input ['RowValue ' ]) : null ;
60
62
$ this ->nullValue = $ input ['NullValue ' ] ?? null ;
61
63
}
You can’t perform that action at this time.
0 commit comments