class AmazonLinuxImage
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.AmazonLinuxImage |
Java | software.amazon.awscdk.services.ec2.AmazonLinuxImage |
Python | aws_cdk.aws_ec2.AmazonLinuxImage |
TypeScript (source) | @aws-cdk/aws-ec2 » AmazonLinuxImage |
Implements
IMachine
Extends
Generic
Selects the latest version of Amazon Linux.
This Machine Image automatically updates to the latest version on every deployment. Be aware this will cause your instances to be replaced when a new version of the image becomes available. Do not store stateful information on the instance if you are using this image.
The AMI ID is selected using the values published to the SSM parameter store.
Example
// Pick a Windows edition to use
const windows = new ec2.WindowsImage(ec2.WindowsVersion.WINDOWS_SERVER_2019_ENGLISH_FULL_BASE);
// Pick the right Amazon Linux edition. All arguments shown are optional
// and will default to these values when omitted.
const amznLinux = new ec2.AmazonLinuxImage({
generation: ec2.AmazonLinuxGeneration.AMAZON_LINUX,
edition: ec2.AmazonLinuxEdition.STANDARD,
virtualization: ec2.AmazonLinuxVirt.HVM,
storage: ec2.AmazonLinuxStorage.GENERAL_PURPOSE,
});
// For other custom (Linux) images, instantiate a `GenericLinuxImage` with
// a map giving the AMI to in for each region:
const linux = new ec2.GenericLinuxImage({
'us-east-1': 'ami-97785bed',
'eu-west-1': 'ami-12345678',
// ...
});
Initializer
new AmazonLinuxImage(props?: AmazonLinuxImageProps)
Parameters
- props
Amazon
Linux Image Props
Properties
Name | Type | Description |
---|---|---|
parameter | string | Name of the SSM parameter we're looking up. |
parameterName
Type:
string
Name of the SSM parameter we're looking up.
Methods
Name | Description |
---|---|
get | Return the image to use in the given context. |
static ssm | Return the SSM parameter name that will contain the Amazon Linux image with the given attributes. |
Image(scope)
getpublic getImage(scope: Construct): MachineImageConfig
Parameters
- scope
Construct
Returns
Return the image to use in the given context.
ParameterName(props?)
static ssmpublic static ssmParameterName(props?: AmazonLinuxImageProps): string
Parameters
- props
Amazon
Linux Image Props
Returns
string
Return the SSM parameter name that will contain the Amazon Linux image with the given attributes.