aws-cdk-lib.aws_ec2.GenericWindowsImageProps

interface GenericWindowsImageProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.GenericWindowsImageProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#GenericWindowsImageProps
Javasoftware.amazon.awscdk.services.ec2.GenericWindowsImageProps
Pythonaws_cdk.aws_ec2.GenericWindowsImageProps
TypeScript (source)aws-cdk-lib » aws_ec2 » GenericWindowsImageProps

Configuration options for GenericWindowsImage.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';

declare const userData: ec2.UserData;
const genericWindowsImageProps: ec2.GenericWindowsImageProps = {
  userData: userData,
};

Properties

NameTypeDescription
userData?UserDataInitial user data.

userData?

Type: UserData (optional, default: Empty UserData for Windows machines)

Initial user data.