@awboost/cfn-resource-types 0.1.201 → 0.1.202
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.
|
@@ -143,7 +143,7 @@ export type FieldIdentifier = {
|
|
|
143
143
|
* The type of the task template's field
|
|
144
144
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-fieldtype.html}
|
|
145
145
|
*/
|
|
146
|
-
export type FieldType = "NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL";
|
|
146
|
+
export type FieldType = "NAME" | "DESCRIPTION" | "SCHEDULED_TIME" | "QUICK_CONNECT" | "URL" | "NUMBER" | "TEXT" | "TEXT_AREA" | "DATE_TIME" | "BOOLEAN" | "SINGLE_SELECT" | "EMAIL" | "EXPIRY_DURATION" | "SELF_ASSIGN";
|
|
147
147
|
/**
|
|
148
148
|
* Type definition for `AWS::Connect::TaskTemplate.InvisibleFieldInfo`.
|
|
149
149
|
* Invisible field info
|
package/lib/AWS-EKS-Cluster.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export type EKSClusterProperties = {
|
|
|
14
14
|
* Set this value to false to avoid creating the default networking add-ons when the cluster is created.
|
|
15
15
|
*/
|
|
16
16
|
BootstrapSelfManagedAddons?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Todo: add description
|
|
19
|
+
*/
|
|
20
|
+
ComputeConfig?: ComputeConfig;
|
|
17
21
|
EncryptionConfig?: EncryptionConfig[];
|
|
18
22
|
/**
|
|
19
23
|
* The Kubernetes network configuration for the cluster.
|
|
@@ -34,6 +38,10 @@ export type EKSClusterProperties = {
|
|
|
34
38
|
* An object representing the Outpost configuration to use for AWS EKS outpost cluster.
|
|
35
39
|
*/
|
|
36
40
|
OutpostConfig?: OutpostConfig;
|
|
41
|
+
/**
|
|
42
|
+
* Configuration fields for specifying on-premises node and pod CIDRs that are external to the VPC passed during cluster creation.
|
|
43
|
+
*/
|
|
44
|
+
RemoteNetworkConfig?: RemoteNetworkConfig;
|
|
37
45
|
/**
|
|
38
46
|
* An object representing the VPC configuration to use for an Amazon EKS cluster.
|
|
39
47
|
*/
|
|
@@ -42,6 +50,10 @@ export type EKSClusterProperties = {
|
|
|
42
50
|
* The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
|
|
43
51
|
*/
|
|
44
52
|
RoleArn: string;
|
|
53
|
+
/**
|
|
54
|
+
* Todo: add description
|
|
55
|
+
*/
|
|
56
|
+
StorageConfig?: StorageConfig;
|
|
45
57
|
/**
|
|
46
58
|
* An array of key-value pairs to apply to this resource.
|
|
47
59
|
*/
|
|
@@ -118,6 +130,17 @@ export type AccessConfig = {
|
|
|
118
130
|
*/
|
|
119
131
|
BootstrapClusterCreatorAdminPermissions?: boolean;
|
|
120
132
|
};
|
|
133
|
+
/**
|
|
134
|
+
* Type definition for `AWS::EKS::Cluster.BlockStorage`.
|
|
135
|
+
* Todo: add description
|
|
136
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-blockstorage.html}
|
|
137
|
+
*/
|
|
138
|
+
export type BlockStorage = {
|
|
139
|
+
/**
|
|
140
|
+
* Todo: add description
|
|
141
|
+
*/
|
|
142
|
+
Enabled?: boolean;
|
|
143
|
+
};
|
|
121
144
|
/**
|
|
122
145
|
* Type definition for `AWS::EKS::Cluster.ClusterLogging`.
|
|
123
146
|
* The cluster control plane logging configuration for your cluster.
|
|
@@ -129,6 +152,25 @@ export type ClusterLogging = {
|
|
|
129
152
|
*/
|
|
130
153
|
EnabledTypes?: LoggingTypeConfig[];
|
|
131
154
|
};
|
|
155
|
+
/**
|
|
156
|
+
* Type definition for `AWS::EKS::Cluster.ComputeConfig`.
|
|
157
|
+
* Todo: add description
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-computeconfig.html}
|
|
159
|
+
*/
|
|
160
|
+
export type ComputeConfig = {
|
|
161
|
+
/**
|
|
162
|
+
* Todo: add description
|
|
163
|
+
*/
|
|
164
|
+
Enabled?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* Todo: add description
|
|
167
|
+
*/
|
|
168
|
+
NodePools?: string[];
|
|
169
|
+
/**
|
|
170
|
+
* Todo: add description
|
|
171
|
+
*/
|
|
172
|
+
NodeRoleArn?: string;
|
|
173
|
+
};
|
|
132
174
|
/**
|
|
133
175
|
* Type definition for `AWS::EKS::Cluster.ControlPlanePlacement`.
|
|
134
176
|
* Specify the placement group of the control plane machines for your cluster.
|
|
@@ -140,6 +182,17 @@ export type ControlPlanePlacement = {
|
|
|
140
182
|
*/
|
|
141
183
|
GroupName?: string;
|
|
142
184
|
};
|
|
185
|
+
/**
|
|
186
|
+
* Type definition for `AWS::EKS::Cluster.ElasticLoadBalancing`.
|
|
187
|
+
* Todo: add description
|
|
188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-elasticloadbalancing.html}
|
|
189
|
+
*/
|
|
190
|
+
export type ElasticLoadBalancing = {
|
|
191
|
+
/**
|
|
192
|
+
* Todo: add description
|
|
193
|
+
*/
|
|
194
|
+
Enabled?: boolean;
|
|
195
|
+
};
|
|
143
196
|
/**
|
|
144
197
|
* Type definition for `AWS::EKS::Cluster.EncryptionConfig`.
|
|
145
198
|
* The encryption configuration for the cluster
|
|
@@ -161,6 +214,10 @@ export type EncryptionConfig = {
|
|
|
161
214
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-kubernetesnetworkconfig.html}
|
|
162
215
|
*/
|
|
163
216
|
export type KubernetesNetworkConfig = {
|
|
217
|
+
/**
|
|
218
|
+
* Todo: add description
|
|
219
|
+
*/
|
|
220
|
+
ElasticLoadBalancing?: ElasticLoadBalancing;
|
|
164
221
|
/**
|
|
165
222
|
* Ipv4 or Ipv6. You can only specify ipv6 for 1.21 and later clusters that use version 1.10.1 or later of the Amazon VPC CNI add-on
|
|
166
223
|
*/
|
|
@@ -221,6 +278,43 @@ export type Provider = {
|
|
|
221
278
|
*/
|
|
222
279
|
KeyArn?: string;
|
|
223
280
|
};
|
|
281
|
+
/**
|
|
282
|
+
* Type definition for `AWS::EKS::Cluster.RemoteNetworkConfig`.
|
|
283
|
+
* Configuration fields for specifying on-premises node and pod CIDRs that are external to the VPC passed during cluster creation.
|
|
284
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenetworkconfig.html}
|
|
285
|
+
*/
|
|
286
|
+
export type RemoteNetworkConfig = {
|
|
287
|
+
/**
|
|
288
|
+
* Network configuration of nodes run on-premises with EKS Hybrid Nodes.
|
|
289
|
+
*/
|
|
290
|
+
RemoteNodeNetworks: RemoteNodeNetwork[];
|
|
291
|
+
/**
|
|
292
|
+
* Network configuration of pods run on-premises with EKS Hybrid Nodes.
|
|
293
|
+
*/
|
|
294
|
+
RemotePodNetworks?: RemotePodNetwork[];
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* Type definition for `AWS::EKS::Cluster.RemoteNodeNetwork`.
|
|
298
|
+
* Network configuration of nodes run on-premises with EKS Hybrid Nodes.
|
|
299
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotenodenetwork.html}
|
|
300
|
+
*/
|
|
301
|
+
export type RemoteNodeNetwork = {
|
|
302
|
+
/**
|
|
303
|
+
* Specifies the list of remote node CIDRs.
|
|
304
|
+
*/
|
|
305
|
+
Cidrs: string[];
|
|
306
|
+
};
|
|
307
|
+
/**
|
|
308
|
+
* Type definition for `AWS::EKS::Cluster.RemotePodNetwork`.
|
|
309
|
+
* Network configuration of pods run on-premises with EKS Hybrid Nodes.
|
|
310
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-remotepodnetwork.html}
|
|
311
|
+
*/
|
|
312
|
+
export type RemotePodNetwork = {
|
|
313
|
+
/**
|
|
314
|
+
* Specifies the list of remote pod CIDRs.
|
|
315
|
+
*/
|
|
316
|
+
Cidrs: string[];
|
|
317
|
+
};
|
|
224
318
|
/**
|
|
225
319
|
* Type definition for `AWS::EKS::Cluster.ResourcesVpcConfig`.
|
|
226
320
|
* An object representing the VPC configuration to use for an Amazon EKS cluster.
|
|
@@ -248,6 +342,17 @@ export type ResourcesVpcConfig = {
|
|
|
248
342
|
*/
|
|
249
343
|
SubnetIds: string[];
|
|
250
344
|
};
|
|
345
|
+
/**
|
|
346
|
+
* Type definition for `AWS::EKS::Cluster.StorageConfig`.
|
|
347
|
+
* Todo: add description
|
|
348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-storageconfig.html}
|
|
349
|
+
*/
|
|
350
|
+
export type StorageConfig = {
|
|
351
|
+
/**
|
|
352
|
+
* Todo: add description
|
|
353
|
+
*/
|
|
354
|
+
BlockStorage?: BlockStorage;
|
|
355
|
+
};
|
|
251
356
|
/**
|
|
252
357
|
* Type definition for `AWS::EKS::Cluster.Tag`.
|
|
253
358
|
* A key-value pair to associate with a resource.
|