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
2222 * Unique, case-sensitive string of up to 64 ASCII characters specified when a `Query` request is made. Providing a
2323 * `ClientToken` makes the call to `Query`*idempotent*. This means that running the same query repeatedly will produce
2424 * 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:
2626 *
2727 * - If the Query API is instantiated without a `ClientToken`, the Query SDK generates a `ClientToken` on your behalf.
2828 * - 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
6262
6363 /**
6464 * 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:
6666 *
6767 * - The size of the result is less than `1MB`.
6868 * - 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 22
33namespace AsyncAws \TimestreamQuery \ValueObject ;
44
5+ use AsyncAws \TimestreamQuery \ValueObject \Datum as Datum1 ;
6+
57/**
68 * Datum represents a single data point in a query result.
79 */
@@ -55,7 +57,7 @@ public function __construct(array $input)
5557 {
5658 $ this ->scalarValue = $ input ['ScalarValue ' ] ?? null ;
5759 $ 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 ;
5961 $ this ->rowValue = isset ($ input ['RowValue ' ]) ? Row::create ($ input ['RowValue ' ]) : null ;
6062 $ this ->nullValue = $ input ['NullValue ' ] ?? null ;
6163 }
You can’t perform that action at this time.
0 commit comments