@awboost/cfn-resource-types 0.1.27 → 0.1.28

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.
@@ -5,32 +5,53 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshiftserverless-workgroup.html}
6
6
  */
7
7
  export type RedshiftServerlessWorkgroupProperties = {
8
+ /**
9
+ * The base compute capacity of the workgroup in Redshift Processing Units (RPUs).
10
+ */
8
11
  BaseCapacity?: number;
12
+ /**
13
+ * The value that specifies whether to enable enhanced virtual private cloud (VPC) routing, which forces Amazon Redshift Serverless to route traffic through your VPC.
14
+ */
9
15
  EnhancedVpcRouting?: boolean;
10
16
  /**
17
+ * The max compute capacity of the workgroup in Redshift Processing Units (RPUs).
18
+ */
19
+ MaxCapacity?: number;
20
+ /**
21
+ * The namespace the workgroup is associated with.
11
22
  * @minLength `3`
12
23
  * @maxLength `64`
13
24
  * @pattern `^(?=^[a-z0-9-]+$).{3,64}$`
14
25
  */
15
26
  NamespaceName?: string;
27
+ /**
28
+ * The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
29
+ */
16
30
  Port?: number;
31
+ /**
32
+ * A value that specifies whether the workgroup can be accessible from a public network.
33
+ */
17
34
  PubliclyAccessible?: boolean;
18
35
  /**
36
+ * A list of security group IDs to associate with the workgroup.
19
37
  * @minLength `1`
20
38
  * @maxLength `32`
21
39
  */
22
40
  SecurityGroupIds?: string[];
23
41
  /**
42
+ * A list of subnet IDs the workgroup is associated with.
24
43
  * @minLength `1`
25
44
  * @maxLength `32`
26
45
  */
27
46
  SubnetIds?: string[];
28
47
  /**
48
+ * The map of the key-value pairs used to tag the workgroup.
29
49
  * @minLength `0`
30
50
  * @maxLength `200`
31
51
  */
32
52
  Tags?: Tag[];
33
53
  /**
54
+ * The name of the workgroup.
34
55
  * @minLength `3`
35
56
  * @maxLength `64`
36
57
  * @pattern `^(?=^[a-z0-9-]+$).{3,64}$`
@@ -43,6 +64,7 @@ export type RedshiftServerlessWorkgroupProperties = {
43
64
  */
44
65
  export type RedshiftServerlessWorkgroupAttributes = {
45
66
  /**
67
+ * A list of parameters to set for finer control over a database. Available options are datestyle, enable_user_activity_logging, query_group, search_path, max_query_execution_time, and require_ssl.
46
68
  * @minLength `1`
47
69
  */
48
70
  ConfigParameters: {
@@ -57,6 +79,9 @@ export type RedshiftServerlessWorkgroupAttributes = {
57
79
  */
58
80
  ParameterValue: string;
59
81
  }[];
82
+ /**
83
+ * Definition for workgroup resource
84
+ */
60
85
  Workgroup: {
61
86
  BaseCapacity: number;
62
87
  ConfigParameters: {
@@ -87,6 +112,7 @@ export type RedshiftServerlessWorkgroupAttributes = {
87
112
  }[];
88
113
  };
89
114
  EnhancedVpcRouting: boolean;
115
+ MaxCapacity: number;
90
116
  /**
91
117
  * @minLength `3`
92
118
  * @maxLength `64`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },