@aws-cdk/aws-ec2
Version:
The CDK Construct Library for AWS::EC2
6 lines (5 loc) • 455 B
TypeScript
import { CfnInstance, CfnLaunchTemplate } from '../ec2.generated';
import { BlockDevice } from '../volume';
import { Construct } from '@aws-cdk/core';
export declare function instanceBlockDeviceMappings(construct: Construct, blockDevices: BlockDevice[]): CfnInstance.BlockDeviceMappingProperty[];
export declare function launchTemplateBlockDeviceMappings(construct: Construct, blockDevices: BlockDevice[]): CfnLaunchTemplate.BlockDeviceMappingProperty[];