@awboost/cfn-resource-types 0.1.98 → 0.1.99
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.
|
@@ -16,7 +16,7 @@ export type CloudWatchMetricStreamProperties = {
|
|
|
16
16
|
* @minLength `20`
|
|
17
17
|
* @maxLength `2048`
|
|
18
18
|
*/
|
|
19
|
-
FirehoseArn
|
|
19
|
+
FirehoseArn?: string;
|
|
20
20
|
/**
|
|
21
21
|
* Define which metrics will be streamed. Metrics matched by multiple instances of MetricStreamFilter are joined with an OR operation by default. If both IncludeFilters and ExcludeFilters are omitted, all metrics in the account will be streamed. IncludeFilters and ExcludeFilters are mutually exclusive. Default to null.
|
|
22
22
|
* @maxLength `1000`
|
|
@@ -37,13 +37,13 @@ export type CloudWatchMetricStreamProperties = {
|
|
|
37
37
|
* @minLength `1`
|
|
38
38
|
* @maxLength `255`
|
|
39
39
|
*/
|
|
40
|
-
OutputFormat
|
|
40
|
+
OutputFormat?: string;
|
|
41
41
|
/**
|
|
42
42
|
* The ARN of the role that provides access to the Kinesis Firehose.
|
|
43
43
|
* @minLength `20`
|
|
44
44
|
* @maxLength `2048`
|
|
45
45
|
*/
|
|
46
|
-
RoleArn
|
|
46
|
+
RoleArn?: string;
|
|
47
47
|
/**
|
|
48
48
|
* By default, a metric stream always sends the MAX, MIN, SUM, and SAMPLECOUNT statistics for each metric that is streamed. You can use this parameter to have the metric stream also send additional statistics in the stream. This array can have up to 100 members.
|
|
49
49
|
* @maxLength `100`
|
|
@@ -149,7 +149,7 @@ export type Tag = {
|
|
|
149
149
|
Key: string;
|
|
150
150
|
/**
|
|
151
151
|
* String which you can use to describe or define the tag.
|
|
152
|
-
* @minLength `
|
|
152
|
+
* @minLength `0`
|
|
153
153
|
* @maxLength `256`
|
|
154
154
|
*/
|
|
155
155
|
Value: string;
|