Show / Hide Table of Contents

Class GenericLinuxImageProps

Configuration options for GenericLinuxImage.

Inheritance
object
GenericLinuxImageProps
Implements
IGenericLinuxImageProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GenericLinuxImageProps : IGenericLinuxImageProps
Syntax (vb)
Public Class GenericLinuxImageProps Implements IGenericLinuxImageProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.EC2;

            UserData userData;

            var genericLinuxImageProps = new GenericLinuxImageProps {
                UserData = userData
            };

Synopsis

Constructors

GenericLinuxImageProps()

Configuration options for GenericLinuxImage.

Properties

UserData

Initial user data.

Constructors

GenericLinuxImageProps()

Configuration options for GenericLinuxImage.

public GenericLinuxImageProps()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.EC2;

            UserData userData;

            var genericLinuxImageProps = new GenericLinuxImageProps {
                UserData = userData
            };

Properties

UserData

Initial user data.

public UserData? UserData { get; set; }
Property Value

UserData

Remarks

Default: - Empty UserData for Linux machines

Implements

IGenericLinuxImageProps
Back to top Generated by DocFX