@awboost/cfn-resource-types 0.1.304 → 0.1.305

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.
@@ -0,0 +1,63 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::DSQL::Cluster
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html}
6
+ */
7
+ export type DSQLClusterProperties = {
8
+ /**
9
+ * Whether deletion protection is enabled in this cluster.
10
+ */
11
+ DeletionProtectionEnabled?: boolean;
12
+ Tags?: Tag[];
13
+ };
14
+ /**
15
+ * Attribute type definition for `AWS::DSQL::Cluster`.
16
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html#aws-resource-dsql-cluster-return-values}
17
+ */
18
+ export type DSQLClusterAttributes = {
19
+ /**
20
+ * The time of when the cluster was created in ISO-8601 format.
21
+ */
22
+ CreationTime: string;
23
+ /**
24
+ * The ID of the created cluster.
25
+ */
26
+ Identifier: string;
27
+ /**
28
+ * The Amazon Resource Name (ARN) for the cluster.
29
+ */
30
+ ResourceArn: string;
31
+ /**
32
+ * The status of the cluster.
33
+ */
34
+ Status: string;
35
+ };
36
+ /**
37
+ * Type definition for `AWS::DSQL::Cluster.Tag`.
38
+ * A map of key and value pairs to use to tag your cluster.
39
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-tag.html}
40
+ */
41
+ export type Tag = {
42
+ /**
43
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
44
+ * @minLength `1`
45
+ * @maxLength `128`
46
+ */
47
+ Key: string;
48
+ /**
49
+ * The value for the tag. You can specify a value that is 1 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
50
+ * @minLength `1`
51
+ * @maxLength `256`
52
+ */
53
+ Value: string;
54
+ };
55
+ /**
56
+ * Resource Type definition for AWS::DSQL::Cluster
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html}
58
+ */
59
+ export declare class DSQLCluster extends $Resource<"AWS::DSQL::Cluster", DSQLClusterProperties, DSQLClusterAttributes> {
60
+ static readonly Type = "AWS::DSQL::Cluster";
61
+ constructor(logicalId: string, properties: DSQLClusterProperties, options?: $ResourceOptions);
62
+ }
63
+ //# sourceMappingURL=AWS-DSQL-Cluster.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::DSQL::Cluster
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html}
5
+ */
6
+ export class DSQLCluster extends $Resource {
7
+ static Type = "AWS::DSQL::Cluster";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DSQLCluster.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-DSQL-Cluster.js.map
@@ -5,6 +5,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html}
6
6
  */
7
7
  export type KinesisStreamProperties = {
8
+ /**
9
+ * The final list of shard-level metrics
10
+ * @maxLength `7`
11
+ */
12
+ DesiredShardLevelMetrics?: EnhancedMetric[];
8
13
  /**
9
14
  * The name of the Kinesis stream.
10
15
  * @minLength `1`
@@ -46,6 +51,12 @@ export type KinesisStreamAttributes = {
46
51
  */
47
52
  Arn: string;
48
53
  };
54
+ /**
55
+ * Type definition for `AWS::Kinesis::Stream.EnhancedMetric`.
56
+ * Value of an enhanced metric
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-enhancedmetric.html}
58
+ */
59
+ export type EnhancedMetric = "IncomingBytes" | "IncomingRecords" | "OutgoingBytes" | "OutgoingRecords" | "WriteProvisionedThroughputExceeded" | "ReadProvisionedThroughputExceeded" | "IteratorAgeMilliseconds" | "ALL";
49
60
  /**
50
61
  * Type definition for `AWS::Kinesis::Stream.StreamEncryption`.
51
62
  * When specified, enables or updates server-side encryption using an AWS KMS key for a specified stream. Removing this property from your stack template and updating your stack disables encryption.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.304",
3
+ "version": "0.1.305",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },