interface GenericWindowsImageProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.GenericWindowsImageProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#GenericWindowsImageProps |
Java | software.amazon.awscdk.services.ec2.GenericWindowsImageProps |
Python | aws_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
Name | Type | Description |
---|---|---|
user | User | Initial user data. |
userData?
Type:
User
(optional, default: Empty UserData for Windows machines)
Initial user data.