LaunchConfiguration

public struct LaunchConfiguration : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • For Auto Scaling groups that are running in a VPC, specifies whether to assign a public IP address to the group’s instances. For more information, see Launching Auto Scaling Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let associatePublicIpAddress: Bool?
  • A block device mapping, which specifies the block devices for the instance. For more information, see Block Device Mapping in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let blockDeviceMappings: [BlockDeviceMapping]?
  • The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let classicLinkVPCId: String?
  • The IDs of one or more security groups for the VPC specified in ClassicLinkVPCId. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let classicLinkVPCSecurityGroups: [String]?
  • The creation date and time for the launch configuration.

    Declaration

    Swift

    public let createdTime: TimeStamp
  • Specifies whether the launch configuration is optimized for EBS I/O (true) or not (false). For more information, see Amazon EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let ebsOptimized: Bool?
  • The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role. For more information, see IAM Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let iamInstanceProfile: String?
  • The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more information, see Finding an AMI in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let imageId: String
  • Controls whether instances in this group are launched with detailed (true) or basic (false) monitoring. For more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let instanceMonitoring: InstanceMonitoring?
  • The instance type for the instances. For information about available instance types, see Available Instance Types in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let instanceType: String
  • The ID of the kernel associated with the AMI.

    Declaration

    Swift

    public let kernelId: String?
  • The name of the key pair. For more information, see Amazon EC2 Key Pairs in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let keyName: String?
  • The Amazon Resource Name (ARN) of the launch configuration.

    Declaration

    Swift

    public let launchConfigurationARN: String?
  • The name of the launch configuration.

    Declaration

    Swift

    public let launchConfigurationName: String
  • The metadata options for the instances. For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let metadataOptions: InstanceMetadataOptions?
  • The tenancy of the instance, either default or dedicated. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC. For more information, see Instance Placement Tenancy in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let placementTenancy: String?
  • The ID of the RAM disk associated with the AMI.

    Declaration

    Swift

    public let ramdiskId: String?
  • A list that contains the security groups to assign to the instances in the Auto Scaling group. For more information, see Security Groups for Your VPC in the Amazon Virtual Private Cloud User Guide.

    Declaration

    Swift

    public let securityGroups: [String]?
  • The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

    Declaration

    Swift

    public let spotPrice: String?
  • The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

    Declaration

    Swift

    public let userData: String?
  • Undocumented

    Declaration

    Swift

    public init(associatePublicIpAddress: Bool? = nil, blockDeviceMappings: [BlockDeviceMapping]? = nil, classicLinkVPCId: String? = nil, classicLinkVPCSecurityGroups: [String]? = nil, createdTime: TimeStamp, ebsOptimized: Bool? = nil, iamInstanceProfile: String? = nil, imageId: String, instanceMonitoring: InstanceMonitoring? = nil, instanceType: String, kernelId: String? = nil, keyName: String? = nil, launchConfigurationARN: String? = nil, launchConfigurationName: String, metadataOptions: InstanceMetadataOptions? = nil, placementTenancy: String? = nil, ramdiskId: String? = nil, securityGroups: [String]? = nil, spotPrice: String? = nil, userData: String? = nil)