@awboost/cfn-resource-types 0.1.226 → 0.1.228

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.
@@ -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 [Origin Keep-alive Timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*.
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 [Origin Response Timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*.
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
  /**
@@ -17,6 +17,7 @@ export type DynamoDBGlobalTableProperties = {
17
17
  */
18
18
  KeySchema: KeySchema[];
19
19
  LocalSecondaryIndexes?: LocalSecondaryIndex[];
20
+ PointInTimeRecoverySpecification?: PointInTimeRecoverySpecification;
20
21
  /**
21
22
  * @minLength `1`
22
23
  */
@@ -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`.
@@ -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.
@@ -15,17 +15,17 @@ export type QBusinessDataAccessorProperties = {
15
15
  * @maxLength `36`
16
16
  * @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
17
17
  */
18
- ApplicationId?: string;
18
+ ApplicationId: string;
19
19
  /**
20
20
  * @minLength `1`
21
- * @maxLength `1000`
21
+ * @maxLength `100`
22
22
  * @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*$`
23
23
  */
24
24
  DisplayName: string;
25
25
  /**
26
26
  * @minLength `1`
27
27
  * @maxLength `1284`
28
- * @pattern `^arn:aws:iam::[0-9]{12}:role/.+`
28
+ * @pattern `^arn:aws:iam::[0-9]{12}:role/[a-zA-Z0-9_/+=,.@-]+$`
29
29
  */
30
30
  Principal: string;
31
31
  /**
@@ -19,7 +19,7 @@ export type QBusinessPermissionProperties = {
19
19
  /**
20
20
  * @minLength `1`
21
21
  * @maxLength `1284`
22
- * @pattern `^arn:aws:iam::[0-9]{12}:role/.+`
22
+ * @pattern `^arn:aws:iam::[0-9]{12}:role/[a-zA-Z0-9_/+=,.@-]+$`
23
23
  */
24
24
  Principal: string;
25
25
  /**
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.226",
3
+ "version": "0.1.228",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },