@awboost/cfn-resource-types 0.1.227 → 0.1.229
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/lib/AWS-CloudFront-Distribution.d.ts +2 -2
- package/lib/AWS-DynamoDB-GlobalTable.d.ts +1 -0
- package/lib/AWS-DynamoDB-Table.d.ts +5 -0
- package/lib/AWS-ECS-Service.d.ts +1 -1
- package/lib/AWS-Logs-MetricFilter.d.ts +4 -0
- package/lib/AWS-Logs-SubscriptionFilter.d.ts +4 -0
- package/lib/AWS-Synthetics-Canary.d.ts +4 -0
- package/package.json +1 -1
|
@@ -231,7 +231,7 @@ export type CustomOriginConfig = {
|
|
|
231
231
|
HTTPSPort?: number;
|
|
232
232
|
/**
|
|
233
233
|
* Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.
|
|
234
|
-
For more information, see [
|
|
234
|
+
For more information, see [Keep-alive timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*.
|
|
235
235
|
*/
|
|
236
236
|
OriginKeepaliveTimeout?: number;
|
|
237
237
|
/**
|
|
@@ -243,7 +243,7 @@ export type CustomOriginConfig = {
|
|
|
243
243
|
OriginProtocolPolicy: string;
|
|
244
244
|
/**
|
|
245
245
|
* Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
246
|
-
For more information, see [
|
|
246
|
+
For more information, see [Response timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*.
|
|
247
247
|
*/
|
|
248
248
|
OriginReadTimeout?: number;
|
|
249
249
|
/**
|
|
@@ -326,6 +326,11 @@ export type PointInTimeRecoverySpecification = {
|
|
|
326
326
|
* Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
|
|
327
327
|
*/
|
|
328
328
|
PointInTimeRecoveryEnabled?: boolean;
|
|
329
|
+
/**
|
|
330
|
+
* @min `1`
|
|
331
|
+
* @max `35`
|
|
332
|
+
*/
|
|
333
|
+
RecoveryPeriodInDays?: number;
|
|
329
334
|
};
|
|
330
335
|
/**
|
|
331
336
|
* Type definition for `AWS::DynamoDB::Table.Projection`.
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -367,7 +367,7 @@ export type LogConfiguration = {
|
|
|
367
367
|
When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
|
|
368
368
|
Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
|
|
369
369
|
When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
|
|
370
|
-
When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``.
|
|
370
|
+
When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``. For more information, see [Under the hood: FireLens for Amazon ECS Tasks](https://docs.aws.amazon.com/containers/under-the-hood-firelens-for-amazon-ecs-tasks/).
|
|
371
371
|
When you export logs to Amazon S3, you can specify the bucket using the ``bucket`` option. You can also specify ``region``, ``total_file_size``, ``upload_timeout``, and ``use_put_object`` as options.
|
|
372
372
|
This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: ``sudo docker version --format '{{.Server.APIVersion}}'``
|
|
373
373
|
*/
|
|
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LogsMetricFilterProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* This parameter is valid only for log groups that have an active log transformer. For more information about log transformers, see [PutTransformer](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutTransformer.html).
|
|
11
|
+
If this value is ``true``, the metric filter is applied on the transformed version of the log events instead of the original ingested log events.
|
|
12
|
+
*/
|
|
9
13
|
ApplyOnTransformedLogs?: boolean;
|
|
10
14
|
/**
|
|
11
15
|
* The name of the metric filter.
|
|
@@ -11,6 +11,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
11
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html}
|
|
12
12
|
*/
|
|
13
13
|
export type LogsSubscriptionFilterProperties = {
|
|
14
|
+
/**
|
|
15
|
+
* This parameter is valid only for log groups that have an active log transformer. For more information about log transformers, see [PutTransformer](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutTransformer.html).
|
|
16
|
+
If this value is ``true``, the subscription filter is applied on the transformed version of the log events instead of the original ingested log events.
|
|
17
|
+
*/
|
|
14
18
|
ApplyOnTransformedLogs?: boolean;
|
|
15
19
|
/**
|
|
16
20
|
* The Amazon Resource Name (ARN) of the destination.
|
|
@@ -216,6 +216,10 @@ export type VisualReference = {
|
|
|
216
216
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html}
|
|
217
217
|
*/
|
|
218
218
|
export type VPCConfig = {
|
|
219
|
+
/**
|
|
220
|
+
* Allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets if set to true
|
|
221
|
+
*/
|
|
222
|
+
Ipv6AllowedForDualStack?: boolean;
|
|
219
223
|
SecurityGroupIds: string[];
|
|
220
224
|
SubnetIds: string[];
|
|
221
225
|
VpcId?: string;
|