aws-sdk 2.832.0 → 2.833.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -1
- package/README.md +1 -1
- package/apis/databrew-2017-07-25.min.json +79 -62
- package/apis/managedblockchain-2018-09-24.min.json +159 -36
- package/apis/monitoring-2010-08-01.min.json +15 -9
- package/apis/robomaker-2018-06-29.min.json +198 -170
- package/clients/cloudwatch.d.ts +12 -1
- package/clients/databrew.d.ts +170 -143
- package/clients/iot.d.ts +2 -2
- package/clients/managedblockchain.d.ts +140 -6
- package/clients/robomaker.d.ts +35 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +5 -5
- package/dist/aws-sdk.js +18 -12
- package/dist/aws-sdk.min.js +29 -29
- package/lib/config.d.ts +1 -1
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/cloudwatch.d.ts
CHANGED
|
@@ -881,7 +881,12 @@ declare namespace CloudWatch {
|
|
|
881
881
|
* The maximum number of data points the request should return before paginating. If you omit this, the default of 100,800 is used.
|
|
882
882
|
*/
|
|
883
883
|
MaxDatapoints?: GetMetricDataMaxDatapoints;
|
|
884
|
+
/**
|
|
885
|
+
* This structure includes the Timezone parameter, which you can use to specify your time zone so that the labels of returned data display the correct time for your time zone.
|
|
886
|
+
*/
|
|
887
|
+
LabelOptions?: LabelOptions;
|
|
884
888
|
}
|
|
889
|
+
export type GetMetricDataLabelTimezone = string;
|
|
885
890
|
export type GetMetricDataMaxDatapoints = number;
|
|
886
891
|
export interface GetMetricDataOutput {
|
|
887
892
|
/**
|
|
@@ -1061,6 +1066,12 @@ declare namespace CloudWatch {
|
|
|
1061
1066
|
export type InsightRuleUnboundInteger = number;
|
|
1062
1067
|
export type InsightRuleUnboundLong = number;
|
|
1063
1068
|
export type InsightRules = InsightRule[];
|
|
1069
|
+
export interface LabelOptions {
|
|
1070
|
+
/**
|
|
1071
|
+
* The time zone to use for metric data return in this operation. The format is + or - followed by four digits. The first two digits indicate the number of hours ahead or behind of UTC, and the final two digits are the number of minutes. For example, +0130 indicates a time zone that is 1 hour and 30 minutes ahead of UTC. The default is +0000.
|
|
1072
|
+
*/
|
|
1073
|
+
Timezone?: GetMetricDataLabelTimezone;
|
|
1074
|
+
}
|
|
1064
1075
|
export type LastModified = Date;
|
|
1065
1076
|
export interface ListDashboardsInput {
|
|
1066
1077
|
/**
|
|
@@ -1282,7 +1293,7 @@ declare namespace CloudWatch {
|
|
|
1282
1293
|
*/
|
|
1283
1294
|
Expression?: MetricExpression;
|
|
1284
1295
|
/**
|
|
1285
|
-
* A human-readable label for this metric or expression. This is especially useful if this is an expression, so that you know what the value represents. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown. If Label is omitted, CloudWatch generates a default.
|
|
1296
|
+
* A human-readable label for this metric or expression. This is especially useful if this is an expression, so that you know what the value represents. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown. If Label is omitted, CloudWatch generates a default. You can put dynamic expressions into a label, so that it is more descriptive. For more information, see Using Dynamic Labels.
|
|
1286
1297
|
*/
|
|
1287
1298
|
Label?: MetricLabel;
|
|
1288
1299
|
/**
|