@awboost/cfn-resource-types 0.1.284 → 0.1.286

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.
@@ -21,7 +21,7 @@ export type PCSComputeNodeGroupProperties = {
21
21
  /**
22
22
  * The ID of the EC2 launch template to use to provision instances.
23
23
  */
24
- Id: string;
24
+ TemplateId?: string;
25
25
  /**
26
26
  * The version of the EC2 launch template to use to provision instances.
27
27
  */
@@ -39,7 +39,7 @@ export type PaymentCryptographyKeyAttributes = {
39
39
  * Type definition for `AWS::PaymentCryptography::Key.KeyAlgorithm`.
40
40
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyalgorithm.html}
41
41
  */
42
- export type KeyAlgorithm = "TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384";
42
+ export type KeyAlgorithm = "TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521";
43
43
  /**
44
44
  * Type definition for `AWS::PaymentCryptography::Key.KeyAttributes`.
45
45
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html}
@@ -6836,7 +6836,6 @@ export type SheetTextBox = {
6836
6836
  * @maxLength `150000`
6837
6837
  */
6838
6838
  Content?: string;
6839
- Interactions?: any;
6840
6839
  /**
6841
6840
  * @minLength `1`
6842
6841
  * @maxLength `512`
@@ -7101,7 +7101,6 @@ export type SheetTextBox = {
7101
7101
  * @maxLength `150000`
7102
7102
  */
7103
7103
  Content?: string;
7104
- Interactions?: any;
7105
7104
  /**
7106
7105
  * @minLength `1`
7107
7106
  * @maxLength `512`
@@ -6445,7 +6445,6 @@ export type SheetTextBox = {
6445
6445
  * @maxLength `150000`
6446
6446
  */
6447
6447
  Content?: string;
6448
- Interactions?: any;
6449
6448
  /**
6450
6449
  * @minLength `1`
6451
6450
  * @maxLength `512`
@@ -54,6 +54,16 @@ export type RedshiftServerlessWorkgroupProperties = {
54
54
  * @maxLength `200`
55
55
  */
56
56
  Tags?: Tag[];
57
+ /**
58
+ * @minLength `1`
59
+ * @maxLength `256`
60
+ * @pattern `^[a-zA-Z0-9_]+$`
61
+ */
62
+ TrackName?: string;
63
+ /**
64
+ * Definition for workgroup resource
65
+ */
66
+ Workgroup?: Workgroup;
57
67
  /**
58
68
  * The name of the workgroup.
59
69
  * @minLength `3`
@@ -87,7 +97,6 @@ export type RedshiftServerlessWorkgroupAttributes = {
87
97
  * Definition for workgroup resource
88
98
  */
89
99
  Workgroup: {
90
- BaseCapacity: number;
91
100
  ConfigParameters: {
92
101
  /**
93
102
  * @minLength `0`
@@ -116,25 +125,22 @@ export type RedshiftServerlessWorkgroupAttributes = {
116
125
  }[];
117
126
  };
118
127
  EnhancedVpcRouting: boolean;
119
- MaxCapacity: number;
120
128
  /**
121
129
  * @minLength `3`
122
130
  * @maxLength `64`
123
131
  * @pattern `^[a-z0-9-]+$`
124
132
  */
125
133
  NamespaceName: string;
126
- PricePerformanceTarget: {
127
- /**
128
- * @min `1`
129
- * @max `100`
130
- */
131
- Level: number;
132
- Status: PerformanceTargetStatus;
133
- };
134
134
  PubliclyAccessible: boolean;
135
135
  SecurityGroupIds: string[];
136
136
  Status: WorkgroupStatus;
137
137
  SubnetIds: string[];
138
+ /**
139
+ * @minLength `1`
140
+ * @maxLength `256`
141
+ * @pattern `^[a-zA-Z0-9_]+$`
142
+ */
143
+ TrackName: string;
138
144
  WorkgroupArn: string;
139
145
  WorkgroupId: string;
140
146
  /**
@@ -183,6 +189,8 @@ export type Tag = {
183
189
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
184
190
  */
185
191
  export type Workgroup = {
192
+ BaseCapacity?: number;
193
+ MaxCapacity?: number;
186
194
  PricePerformanceTarget?: PerformanceTarget;
187
195
  };
188
196
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.284",
3
+ "version": "0.1.286",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },