@awboost/cfn-resource-types 0.1.72 → 0.1.73
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,7 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* Specifies the properties for creating a launch template.
|
|
6
6
|
The minimum required properties for specifying a launch template are as follows:
|
|
7
7
|
+ You must specify at least one property for the launch template data.
|
|
8
|
-
+ You
|
|
8
|
+
+ You can optionally specify a name for the launch template. If you do not specify a name, CFN creates a name for you.
|
|
9
9
|
|
|
10
10
|
A launch template can contain some or all of the configuration information to launch an instance. When you launch an instance using a launch template, instance properties that are not specified in the launch template use default values, except the ``ImageId`` property, which has no default value. If you do not specify an AMI ID for the launch template ``ImageId`` property, you must specify an AMI ID for the instance ``ImageId`` property.
|
|
11
11
|
For more information, see [Launch an instance from a launch template](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html) in the *Amazon EC2 User Guide*.
|
|
@@ -920,7 +920,7 @@ export type NetworkInterface = {
|
|
|
920
920
|
*/
|
|
921
921
|
Description?: string;
|
|
922
922
|
/**
|
|
923
|
-
* The device index for the network interface attachment.
|
|
923
|
+
* The device index for the network interface attachment. Each network interface requires a device index. If the launch template includes network interfaces with a device index other than 0, you must add a primary network interface when you launch a instance using this launch template,
|
|
924
924
|
*/
|
|
925
925
|
DeviceIndex?: number;
|
|
926
926
|
/**
|
|
@@ -1186,7 +1186,7 @@ export type VCpuCount = {
|
|
|
1186
1186
|
* Specifies the properties for creating a launch template.
|
|
1187
1187
|
The minimum required properties for specifying a launch template are as follows:
|
|
1188
1188
|
+ You must specify at least one property for the launch template data.
|
|
1189
|
-
+ You
|
|
1189
|
+
+ You can optionally specify a name for the launch template. If you do not specify a name, CFN creates a name for you.
|
|
1190
1190
|
|
|
1191
1191
|
A launch template can contain some or all of the configuration information to launch an instance. When you launch an instance using a launch template, instance properties that are not specified in the launch template use default values, except the ``ImageId`` property, which has no default value. If you do not specify an AMI ID for the launch template ``ImageId`` property, you must specify an AMI ID for the instance ``ImageId`` property.
|
|
1192
1192
|
For more information, see [Launch an instance from a launch template](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html) in the *Amazon EC2 User Guide*.
|
|
@@ -4,7 +4,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
4
4
|
* Specifies the properties for creating a launch template.
|
|
5
5
|
The minimum required properties for specifying a launch template are as follows:
|
|
6
6
|
+ You must specify at least one property for the launch template data.
|
|
7
|
-
+ You
|
|
7
|
+
+ You can optionally specify a name for the launch template. If you do not specify a name, CFN creates a name for you.
|
|
8
8
|
|
|
9
9
|
A launch template can contain some or all of the configuration information to launch an instance. When you launch an instance using a launch template, instance properties that are not specified in the launch template use default values, except the ``ImageId`` property, which has no default value. If you do not specify an AMI ID for the launch template ``ImageId`` property, you must specify an AMI ID for the instance ``ImageId`` property.
|
|
10
10
|
For more information, see [Launch an instance from a launch template](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html) in the *Amazon EC2 User Guide*.
|