@awboost/cfn-resource-types 0.1.42 → 0.1.43

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,45 +5,182 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-instance.html}
6
6
  */
7
7
  export type EC2InstanceProperties = {
8
+ /**
9
+ * This property is reserved for internal use. If you use it, the stack fails with this error: Bad property set: [Testing this property] (Service: AmazonEC2; Status Code: 400; Error Code: InvalidParameterCombination; Request ID: 0XXXXXX-49c7-4b40-8bcc-76885dcXXXXX).
10
+ */
8
11
  AdditionalInfo?: string;
9
- Affinity?: string;
12
+ /**
13
+ * Indicates whether the instance is associated with a dedicated host. If you want the instance to always restart on the same host on which it was launched, specify host. If you want the instance to restart on any available host, but try to launch onto the last host it ran on (on a best-effort basis), specify default.
14
+ */
15
+ Affinity?: "default" | "host";
16
+ /**
17
+ * The Availability Zone of the instance.
18
+ */
10
19
  AvailabilityZone?: string;
20
+ /**
21
+ * The block device mapping entries that defines the block devices to attach to the instance at launch.
22
+ */
11
23
  BlockDeviceMappings?: BlockDeviceMapping[];
12
- CpuOptions?: CpuOptions;
13
- CreditSpecification?: CreditSpecification;
24
+ /**
25
+ * The CPU options for the instance.
26
+ */
27
+ CpuOptions?: {
28
+ CoreCount?: number;
29
+ ThreadsPerCore?: number;
30
+ };
31
+ /**
32
+ * The credit option for CPU usage of the burstable performance instance. Valid values are standard and unlimited.
33
+ */
34
+ CreditSpecification?: {
35
+ CPUCredits?: string;
36
+ };
37
+ /**
38
+ * If you set this parameter to true, you can't terminate the instance using the Amazon EC2 console, CLI, or API; otherwise, you can.
39
+ */
14
40
  DisableApiTermination?: boolean;
41
+ /**
42
+ * Indicates whether the instance is optimized for Amazon EBS I/O.
43
+ */
15
44
  EbsOptimized?: boolean;
45
+ /**
46
+ * An elastic GPU to associate with the instance.
47
+ */
16
48
  ElasticGpuSpecifications?: ElasticGpuSpecification[];
49
+ /**
50
+ * An elastic inference accelerator to associate with the instance.
51
+ */
17
52
  ElasticInferenceAccelerators?: ElasticInferenceAccelerator[];
18
- EnclaveOptions?: EnclaveOptions;
19
- HibernationOptions?: HibernationOptions;
53
+ /**
54
+ * Indicates whether the instance is enabled for AWS Nitro Enclaves.
55
+ */
56
+ EnclaveOptions?: {
57
+ /**
58
+ * If this parameter is set to true, the instance is enabled for AWS Nitro Enclaves; otherwise, it is not enabled for AWS Nitro Enclaves.
59
+ */
60
+ Enabled?: boolean;
61
+ };
62
+ /**
63
+ * Indicates whether an instance is enabled for hibernation.
64
+ */
65
+ HibernationOptions?: {
66
+ /**
67
+ * If you set this parameter to true, your instance is enabled for hibernation.
68
+ */
69
+ Configured?: boolean;
70
+ };
71
+ /**
72
+ * If you specify host for the Affinity property, the ID of a dedicated host that the instance is associated with. If you don't specify an ID, Amazon EC2 launches the instance onto any available, compatible dedicated host in your account.
73
+ */
20
74
  HostId?: string;
75
+ /**
76
+ * The ARN of the host resource group in which to launch the instances. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host.
77
+ */
21
78
  HostResourceGroupArn?: string;
79
+ /**
80
+ * The IAM instance profile.
81
+ */
22
82
  IamInstanceProfile?: string;
83
+ /**
84
+ * The ID of the AMI. An AMI ID is required to launch an instance and must be specified here or in a launch template.
85
+ */
23
86
  ImageId?: string;
87
+ /**
88
+ * Indicates whether an instance stops or terminates when you initiate shutdown from the instance (using the operating system command for system shutdown).
89
+ */
24
90
  InstanceInitiatedShutdownBehavior?: string;
91
+ /**
92
+ * The instance type.
93
+ */
25
94
  InstanceType?: string;
95
+ /**
96
+ * [EC2-VPC] The number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet.
97
+ */
26
98
  Ipv6AddressCount?: number;
99
+ /**
100
+ * [EC2-VPC] The IPv6 addresses from the range of the subnet to associate with the primary network interface.
101
+ */
27
102
  Ipv6Addresses?: InstanceIpv6Address[];
103
+ /**
104
+ * The ID of the kernel.
105
+ */
28
106
  KernelId?: string;
107
+ /**
108
+ * The name of the key pair.
109
+ */
29
110
  KeyName?: string;
111
+ /**
112
+ * The launch template to use to launch the instances.
113
+ */
30
114
  LaunchTemplate?: LaunchTemplateSpecification;
115
+ /**
116
+ * The license configurations.
117
+ */
31
118
  LicenseSpecifications?: LicenseSpecification[];
119
+ /**
120
+ * Specifies whether detailed monitoring is enabled for the instance.
121
+ */
32
122
  Monitoring?: boolean;
123
+ /**
124
+ * The network interfaces to associate with the instance.
125
+ */
33
126
  NetworkInterfaces?: NetworkInterface[];
127
+ /**
128
+ * The name of an existing placement group that you want to launch the instance into (cluster | partition | spread).
129
+ */
34
130
  PlacementGroupName?: string;
131
+ /**
132
+ * The options for the instance hostname.
133
+ */
35
134
  PrivateDnsNameOptions?: PrivateDnsNameOptions;
135
+ /**
136
+ * [EC2-VPC] The primary IPv4 address. You must specify a value from the IPv4 address range of the subnet.
137
+ */
36
138
  PrivateIpAddress?: string;
139
+ /**
140
+ * Indicates whether to assign the tags from the instance to all of the volumes attached to the instance at launch. If you specify true and you assign tags to the instance, those tags are automatically assigned to all of the volumes that you attach to the instance at launch. If you specify false, those tags are not assigned to the attached volumes.
141
+ */
37
142
  PropagateTagsToVolumeOnCreation?: boolean;
143
+ /**
144
+ * The ID of the RAM disk to select.
145
+ */
38
146
  RamdiskId?: string;
147
+ /**
148
+ * The IDs of the security groups.
149
+ */
39
150
  SecurityGroupIds?: string[];
151
+ /**
152
+ * the names of the security groups. For a nondefault VPC, you must use security group IDs instead.
153
+ */
40
154
  SecurityGroups?: string[];
155
+ /**
156
+ * Specifies whether to enable an instance launched in a VPC to perform NAT.
157
+ */
41
158
  SourceDestCheck?: boolean;
159
+ /**
160
+ * The SSM document and parameter values in AWS Systems Manager to associate with this instance.
161
+ */
42
162
  SsmAssociations?: SsmAssociation[];
163
+ /**
164
+ * [EC2-VPC] The ID of the subnet to launch the instance into.
165
+
166
+
167
+ */
43
168
  SubnetId?: string;
169
+ /**
170
+ * The tags to add to the instance.
171
+ */
44
172
  Tags?: Tag[];
173
+ /**
174
+ * The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware.
175
+ */
45
176
  Tenancy?: string;
177
+ /**
178
+ * The user data to make available to the instance.
179
+ */
46
180
  UserData?: string;
181
+ /**
182
+ * The volumes to attach to the instance.
183
+ */
47
184
  Volumes?: Volume[];
48
185
  };
49
186
  /**
@@ -51,18 +188,43 @@ export type EC2InstanceProperties = {
51
188
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-instance.html#aws-resource-ec2-instance-return-values}
52
189
  */
53
190
  export type EC2InstanceAttributes = {
54
- Id: string;
191
+ /**
192
+ * The EC2 Instance ID.
193
+ */
194
+ InstanceId: string;
195
+ /**
196
+ * The private DNS name of the specified instance. For example: ip-10-24-34-0.ec2.internal.
197
+ */
55
198
  PrivateDnsName: string;
199
+ /**
200
+ * The private IP address of the specified instance. For example: 10.24.34.0.
201
+ */
56
202
  PrivateIp: string;
203
+ /**
204
+ * The public DNS name of the specified instance. For example: ec2-107-20-50-45.compute-1.amazonaws.com.
205
+ */
57
206
  PublicDnsName: string;
207
+ /**
208
+ * The public IP address of the specified instance. For example: 192.0.2.0.
209
+ */
58
210
  PublicIp: string;
211
+ /**
212
+ * The ID of the VPC that the instance is running in.
213
+ */
214
+ VpcId: string;
59
215
  };
60
216
  /**
61
217
  * Type definition for `AWS::EC2::Instance.AssociationParameter`.
62
218
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-associationparameter.html}
63
219
  */
64
220
  export type AssociationParameter = {
221
+ /**
222
+ * The name of an input parameter that is in the associated SSM document.
223
+ */
65
224
  Key: string;
225
+ /**
226
+ * The value of an input parameter.
227
+ */
66
228
  Value: string[];
67
229
  };
68
230
  /**
@@ -70,37 +232,49 @@ export type AssociationParameter = {
70
232
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-blockdevicemapping.html}
71
233
  */
72
234
  export type BlockDeviceMapping = {
235
+ /**
236
+ * The device name (for example, /dev/sdh or xvdh).
237
+ */
73
238
  DeviceName: string;
239
+ /**
240
+ * Parameters used to automatically set up EBS volumes when the instance is launched.
241
+ */
74
242
  Ebs?: Ebs;
75
- NoDevice?: NoDevice;
243
+ NoDevice?: Record<string, any>;
76
244
  VirtualName?: string;
77
245
  };
78
- /**
79
- * Type definition for `AWS::EC2::Instance.CpuOptions`.
80
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-cpuoptions.html}
81
- */
82
- export type CpuOptions = {
83
- CoreCount?: number;
84
- ThreadsPerCore?: number;
85
- };
86
- /**
87
- * Type definition for `AWS::EC2::Instance.CreditSpecification`.
88
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-creditspecification.html}
89
- */
90
- export type CreditSpecification = {
91
- CPUCredits?: string;
92
- };
93
246
  /**
94
247
  * Type definition for `AWS::EC2::Instance.Ebs`.
95
248
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-ebs.html}
96
249
  */
97
250
  export type Ebs = {
251
+ /**
252
+ * Indicates whether the EBS volume is deleted on instance termination.
253
+ */
98
254
  DeleteOnTermination?: boolean;
255
+ /**
256
+ * Indicates whether the volume should be encrypted.
257
+ */
99
258
  Encrypted?: boolean;
259
+ /**
260
+ * The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
261
+ */
100
262
  Iops?: number;
263
+ /**
264
+ * The identifier of the AWS Key Management Service (AWS KMS) customer managed CMK to use for Amazon EBS encryption. If KmsKeyId is specified, the encrypted state must be true. If the encrypted state is true but you do not specify KmsKeyId, your AWS managed CMK for EBS is used.
265
+ */
101
266
  KmsKeyId?: string;
267
+ /**
268
+ * The ID of the snapshot.
269
+ */
102
270
  SnapshotId?: string;
271
+ /**
272
+ * The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.
273
+ */
103
274
  VolumeSize?: number;
275
+ /**
276
+ * The volume type.
277
+ */
104
278
  VolumeType?: string;
105
279
  };
106
280
  /**
@@ -108,6 +282,9 @@ export type Ebs = {
108
282
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-elasticgpuspecification.html}
109
283
  */
110
284
  export type ElasticGpuSpecification = {
285
+ /**
286
+ * The type of Elastic Graphics accelerator.
287
+ */
111
288
  Type: string;
112
289
  };
113
290
  /**
@@ -115,28 +292,24 @@ export type ElasticGpuSpecification = {
115
292
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-elasticinferenceaccelerator.html}
116
293
  */
117
294
  export type ElasticInferenceAccelerator = {
295
+ /**
296
+ * The number of elastic inference accelerators to attach to the instance.
297
+ * @min `0`
298
+ */
118
299
  Count?: number;
300
+ /**
301
+ * The type of elastic inference accelerator.
302
+ */
119
303
  Type: string;
120
304
  };
121
- /**
122
- * Type definition for `AWS::EC2::Instance.EnclaveOptions`.
123
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-enclaveoptions.html}
124
- */
125
- export type EnclaveOptions = {
126
- Enabled?: boolean;
127
- };
128
- /**
129
- * Type definition for `AWS::EC2::Instance.HibernationOptions`.
130
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-hibernationoptions.html}
131
- */
132
- export type HibernationOptions = {
133
- Configured?: boolean;
134
- };
135
305
  /**
136
306
  * Type definition for `AWS::EC2::Instance.InstanceIpv6Address`.
137
307
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-instanceipv6address.html}
138
308
  */
139
309
  export type InstanceIpv6Address = {
310
+ /**
311
+ * The IPv6 address.
312
+ */
140
313
  Ipv6Address: string;
141
314
  };
142
315
  /**
@@ -144,15 +317,27 @@ export type InstanceIpv6Address = {
144
317
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-launchtemplatespecification.html}
145
318
  */
146
319
  export type LaunchTemplateSpecification = {
320
+ /**
321
+ * The ID of the launch template. You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.
322
+ */
147
323
  LaunchTemplateId?: string;
324
+ /**
325
+ * The name of the launch template. You must specify the LaunchTemplateName or the LaunchTemplateId, but not both.
326
+ */
148
327
  LaunchTemplateName?: string;
149
- Version: string;
328
+ /**
329
+ * The version number of the launch template.
330
+ */
331
+ Version?: string;
150
332
  };
151
333
  /**
152
334
  * Type definition for `AWS::EC2::Instance.LicenseSpecification`.
153
335
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-licensespecification.html}
154
336
  */
155
337
  export type LicenseSpecification = {
338
+ /**
339
+ * The Amazon Resource Name (ARN) of the license configuration.
340
+ */
156
341
  LicenseConfigurationArn: string;
157
342
  };
158
343
  /**
@@ -160,40 +345,89 @@ export type LicenseSpecification = {
160
345
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-networkinterface.html}
161
346
  */
162
347
  export type NetworkInterface = {
348
+ /**
349
+ * Not currently supported by AWS CloudFormation.
350
+ */
163
351
  AssociateCarrierIpAddress?: boolean;
352
+ /**
353
+ * Indicates whether to assign a public IPv4 address to an instance you launch in a VPC.
354
+ */
164
355
  AssociatePublicIpAddress?: boolean;
356
+ /**
357
+ * If set to true, the interface is deleted when the instance is terminated.
358
+ */
165
359
  DeleteOnTermination?: boolean;
360
+ /**
361
+ * The description of the network interface.
362
+ */
166
363
  Description?: string;
364
+ /**
365
+ * The position of the network interface in the attachment order. A primary network interface has a device index of 0.
366
+ */
167
367
  DeviceIndex: string;
368
+ /**
369
+ * The IDs of the security groups for the network interface.
370
+ */
168
371
  GroupSet?: string[];
372
+ /**
373
+ * A number of IPv6 addresses to assign to the network interface.
374
+ */
169
375
  Ipv6AddressCount?: number;
376
+ /**
377
+ * The IPv6 addresses associated with the network interface.
378
+ */
170
379
  Ipv6Addresses?: InstanceIpv6Address[];
380
+ /**
381
+ * The ID of the network interface.
382
+ */
171
383
  NetworkInterfaceId?: string;
384
+ /**
385
+ * The private IPv4 address of the network interface.
386
+ */
172
387
  PrivateIpAddress?: string;
388
+ /**
389
+ * One or more private IPv4 addresses to assign to the network interface.
390
+ */
173
391
  PrivateIpAddresses?: PrivateIpAddressSpecification[];
392
+ /**
393
+ * The number of secondary private IPv4 addresses.
394
+ */
174
395
  SecondaryPrivateIpAddressCount?: number;
396
+ /**
397
+ * The ID of the subnet.
398
+ */
175
399
  SubnetId?: string;
176
400
  };
177
- /**
178
- * Type definition for `AWS::EC2::Instance.NoDevice`.
179
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-nodevice.html}
180
- */
181
- export type NoDevice = Record<string, any>;
182
401
  /**
183
402
  * Type definition for `AWS::EC2::Instance.PrivateDnsNameOptions`.
184
403
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-privatednsnameoptions.html}
185
404
  */
186
405
  export type PrivateDnsNameOptions = {
406
+ /**
407
+ * Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records. For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide.
408
+ */
187
409
  EnableResourceNameDnsAAAARecord?: boolean;
410
+ /**
411
+ * Indicates whether to respond to DNS queries for instance hostnames with DNS A records. For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide.
412
+ */
188
413
  EnableResourceNameDnsARecord?: boolean;
189
- HostnameType?: string;
414
+ /**
415
+ * The type of hostnames to assign to instances in the subnet at launch. For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID. For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide.
416
+ */
417
+ HostnameType?: "ip-name" | "resource-name";
190
418
  };
191
419
  /**
192
420
  * Type definition for `AWS::EC2::Instance.PrivateIpAddressSpecification`.
193
421
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-privateipaddressspecification.html}
194
422
  */
195
423
  export type PrivateIpAddressSpecification = {
424
+ /**
425
+ * Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.
426
+ */
196
427
  Primary: boolean;
428
+ /**
429
+ * The private IPv4 addresses.
430
+ */
197
431
  PrivateIpAddress: string;
198
432
  };
199
433
  /**
@@ -201,7 +435,13 @@ export type PrivateIpAddressSpecification = {
201
435
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-ssmassociation.html}
202
436
  */
203
437
  export type SsmAssociation = {
438
+ /**
439
+ * The input parameter values to use with the associated SSM document.
440
+ */
204
441
  AssociationParameters?: AssociationParameter[];
442
+ /**
443
+ * The name of an SSM document to associate with the instance.
444
+ */
205
445
  DocumentName: string;
206
446
  };
207
447
  /**
@@ -217,7 +457,13 @@ export type Tag = {
217
457
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance-volume.html}
218
458
  */
219
459
  export type Volume = {
460
+ /**
461
+ * The device name (for example, /dev/sdh or xvdh).
462
+ */
220
463
  Device: string;
464
+ /**
465
+ * The ID of the EBS volume. The volume and instance must be within the same Availability Zone.
466
+ */
221
467
  VolumeId: string;
222
468
  };
223
469
  /**
@@ -92,7 +92,7 @@ export type BackupPolicy = {
92
92
  + *ENABLED* - Turns automatic backups on for the file system.
93
93
  + *DISABLED* - Turns automatic backups off for the file system.
94
94
  */
95
- Status: string;
95
+ Status: "DISABLED" | "ENABLED";
96
96
  };
97
97
  /**
98
98
  * Type definition for `AWS::EFS::FileSystem.ElasticFileSystemTag`.
@@ -6,7 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type GameLiftGameServerGroupProperties = {
8
8
  /**
9
- * Configuration settings to define a scaling policy for the Auto Scaling group that is optimized for game hosting
9
+ * Configuration settings to define a scaling policy for the Auto Scaling group that is optimized for game hosting. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
10
10
  */
11
11
  AutoScalingPolicy?: AutoScalingPolicy;
12
12
  /**
@@ -35,16 +35,16 @@ export type GameLiftGameServerGroupProperties = {
35
35
  */
36
36
  InstanceDefinitions: InstanceDefinition[];
37
37
  /**
38
- * The EC2 launch template that contains configuration settings and game server code to be deployed to all instances in the game server group.
38
+ * The EC2 launch template that contains configuration settings and game server code to be deployed to all instances in the game server group. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
39
39
  */
40
40
  LaunchTemplate?: LaunchTemplate;
41
41
  /**
42
- * The maximum number of instances allowed in the EC2 Auto Scaling group.
42
+ * The maximum number of instances allowed in the EC2 Auto Scaling group. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
43
43
  * @min `1`
44
44
  */
45
45
  MaxSize?: number;
46
46
  /**
47
- * The minimum number of instances allowed in the EC2 Auto Scaling group.
47
+ * The minimum number of instances allowed in the EC2 Auto Scaling group. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
48
48
  * @min `0`
49
49
  */
50
50
  MinSize?: number;
@@ -56,13 +56,13 @@ export type GameLiftGameServerGroupProperties = {
56
56
  */
57
57
  RoleArn: string;
58
58
  /**
59
- * A list of labels to assign to the new game server group resource.
59
+ * A list of labels to assign to the new game server group resource. Updating game server group tags with CloudFormation will not take effect. Please update this property using AWS GameLift APIs instead.
60
60
  * @minLength `0`
61
61
  * @maxLength `200`
62
62
  */
63
63
  Tags?: Tag[];
64
64
  /**
65
- * A list of virtual private cloud (VPC) subnets to use with instances in the game server group.
65
+ * A list of virtual private cloud (VPC) subnets to use with instances in the game server group. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
66
66
  * @minLength `1`
67
67
  * @maxLength `20`
68
68
  */
@@ -91,7 +91,7 @@ export type GameLiftGameServerGroupAttributes = {
91
91
  };
92
92
  /**
93
93
  * Type definition for `AWS::GameLift::GameServerGroup.AutoScalingPolicy`.
94
- * Configuration settings to define a scaling policy for the Auto Scaling group that is optimized for game hosting
94
+ * Configuration settings to define a scaling policy for the Auto Scaling group that is optimized for game hosting. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
95
95
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-gameservergroup-autoscalingpolicy.html}
96
96
  */
97
97
  export type AutoScalingPolicy = {
@@ -140,7 +140,7 @@ export type InstanceDefinition = {
140
140
  };
141
141
  /**
142
142
  * Type definition for `AWS::GameLift::GameServerGroup.LaunchTemplate`.
143
- * The EC2 launch template that contains configuration settings and game server code to be deployed to all instances in the game server group.
143
+ * The EC2 launch template that contains configuration settings and game server code to be deployed to all instances in the game server group. Updating this game server group property will not take effect for the created EC2 Auto Scaling group, please update the EC2 Auto Scaling group directly after creating the resource.
144
144
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-gameservergroup-launchtemplate.html}
145
145
  */
146
146
  export type LaunchTemplate = {
@@ -10,6 +10,7 @@ export type GlueCrawlerProperties = {
10
10
  CrawlerSecurityConfiguration?: string;
11
11
  DatabaseName?: string;
12
12
  Description?: string;
13
+ LakeFormationConfiguration?: LakeFormationConfiguration;
13
14
  Name?: string;
14
15
  RecrawlPolicy?: RecrawlPolicy;
15
16
  Role: string;
@@ -73,6 +74,14 @@ export type JdbcTarget = {
73
74
  Exclusions?: string[];
74
75
  Path?: string;
75
76
  };
77
+ /**
78
+ * Type definition for `AWS::Glue::Crawler.LakeFormationConfiguration`.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html}
80
+ */
81
+ export type LakeFormationConfiguration = {
82
+ AccountId?: string;
83
+ UseLakeFormationCredentials?: boolean;
84
+ };
76
85
  /**
77
86
  * Type definition for `AWS::Glue::Crawler.MongoDBTarget`.
78
87
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-mongodbtarget.html}
@@ -61,6 +61,10 @@ export type GatewayPlatform = {
61
61
  * A gateway that runs on AWS IoT Greengrass V2.
62
62
  */
63
63
  GreengrassV2?: GreengrassV2;
64
+ /**
65
+ * A gateway that runs on Siemens Industrial Edge.
66
+ */
67
+ SiemensIE?: SiemensIE;
64
68
  };
65
69
  /**
66
70
  * Type definition for `AWS::IoTSiteWise::Gateway.Greengrass`.
@@ -84,6 +88,17 @@ export type GreengrassV2 = {
84
88
  */
85
89
  CoreDeviceThingName: string;
86
90
  };
91
+ /**
92
+ * Type definition for `AWS::IoTSiteWise::Gateway.SiemensIE`.
93
+ * Contains the IotCoreThingName of AWS IoT Thing that the gateway runs on.
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-siemensie.html}
95
+ */
96
+ export type SiemensIE = {
97
+ /**
98
+ * The name of the IoT Core Thing.
99
+ */
100
+ IotCoreThingName: string;
101
+ };
87
102
  /**
88
103
  * Type definition for `AWS::IoTSiteWise::Gateway.Tag`.
89
104
  * To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted
@@ -0,0 +1,37 @@
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
+ * The AWS::SecurityHub::DelegatedAdmin resource represents the AWS Security Hub delegated admin account in your organization. One delegated admin resource is allowed to create for the organization in each region in which you configure the AdminAccountId.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html}
6
+ */
7
+ export type SecurityHubDelegatedAdminProperties = {
8
+ /**
9
+ * The Amazon Web Services account identifier of the account to designate as the Security Hub administrator account
10
+ * @pattern `^[0-9]{12}$`
11
+ */
12
+ AdminAccountId: string;
13
+ };
14
+ /**
15
+ * Attribute type definition for `AWS::SecurityHub::DelegatedAdmin`.
16
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html#aws-resource-securityhub-delegatedadmin-return-values}
17
+ */
18
+ export type SecurityHubDelegatedAdminAttributes = {
19
+ /**
20
+ * The identifier of the DelegatedAdmin being created and assigned as the unique identifier
21
+ * @pattern `^[0-9]{12}/[a-zA-Z0-9-]{1,32}$`
22
+ */
23
+ DelegatedAdminIdentifier: string;
24
+ /**
25
+ * The current status of the Security Hub administrator account. Indicates whether the account is currently enabled as a Security Hub administrator
26
+ */
27
+ Status: "ENABLED" | "DISABLE_IN_PROGRESS";
28
+ };
29
+ /**
30
+ * The AWS::SecurityHub::DelegatedAdmin resource represents the AWS Security Hub delegated admin account in your organization. One delegated admin resource is allowed to create for the organization in each region in which you configure the AdminAccountId.
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html}
32
+ */
33
+ export declare class SecurityHubDelegatedAdmin extends $Resource<"AWS::SecurityHub::DelegatedAdmin", SecurityHubDelegatedAdminProperties, SecurityHubDelegatedAdminAttributes> {
34
+ static readonly Type = "AWS::SecurityHub::DelegatedAdmin";
35
+ constructor(logicalId: string, properties: SecurityHubDelegatedAdminProperties, options?: $ResourceOptions);
36
+ }
37
+ //# sourceMappingURL=AWS-SecurityHub-DelegatedAdmin.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::SecurityHub::DelegatedAdmin resource represents the AWS Security Hub delegated admin account in your organization. One delegated admin resource is allowed to create for the organization in each region in which you configure the AdminAccountId.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-delegatedadmin.html}
5
+ */
6
+ export class SecurityHubDelegatedAdmin extends $Resource {
7
+ static Type = "AWS::SecurityHub::DelegatedAdmin";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SecurityHubDelegatedAdmin.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SecurityHub-DelegatedAdmin.js.map