UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

6 lines (5 loc) 467 B
import type { Construct } from 'constructs'; import type { CfnInstance, CfnLaunchTemplate } from '../ec2.generated'; import type { BlockDevice } from '../volume'; export declare function instanceBlockDeviceMappings(construct: Construct, blockDevices: BlockDevice[]): CfnInstance.BlockDeviceMappingProperty[]; export declare function launchTemplateBlockDeviceMappings(construct: Construct, blockDevices: BlockDevice[]): CfnLaunchTemplate.BlockDeviceMappingProperty[];