Bundle
public struct Bundle : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember] -
The bundle ID (e.g., micro_1_0).
Declaration
Swift
public let bundleId: String? -
The number of vCPUs included in the bundle (e.g., 2).
Declaration
Swift
public let cpuCount: Int? -
The size of the SSD (e.g., 30).
Declaration
Swift
public let diskSizeInGb: Int? -
The Amazon EC2 instance type (e.g., t2.micro).
Declaration
Swift
public let instanceType: String? -
A Boolean value indicating whether the bundle is active.
Declaration
Swift
public let isActive: Bool? -
A friendly name for the bundle (e.g., Micro).
Declaration
Swift
public let name: String? -
A numeric value that represents the power of the bundle (e.g., 500). You can use the bundle’s power value in conjunction with a blueprint’s minimum power value to determine whether the blueprint will run on the bundle. For example, you need a bundle with a power value of 500 or more to create an instance that uses a blueprint with a minimum power value of 500.
Declaration
Swift
public let power: Int? -
The price in US dollars (e.g., 5.0) of the bundle.
Declaration
Swift
public let price: Float? -
The amount of RAM in GB (e.g., 2.0).
Declaration
Swift
public let ramSizeInGb: Float? -
The operating system platform (Linux/Unix-based or Windows Server-based) that the bundle supports. You can only launch a WINDOWS bundle on a blueprint that supports the WINDOWS platform. LINUX_UNIX blueprints require a LINUX_UNIX bundle.
Declaration
Swift
public let supportedPlatforms: [InstancePlatform]? -
The data transfer rate per month in GB (e.g., 2000).
Declaration
Swift
public let transferPerMonthInGb: Int? -
init(bundleId:cpuCount:diskSizeInGb:instanceType:isActive:name:power:price:ramSizeInGb:supportedPlatforms:transferPerMonthInGb:)Undocumented
Declaration
Swift
public init(bundleId: String? = nil, cpuCount: Int? = nil, diskSizeInGb: Int? = nil, instanceType: String? = nil, isActive: Bool? = nil, name: String? = nil, power: Int? = nil, price: Float? = nil, ramSizeInGb: Float? = nil, supportedPlatforms: [InstancePlatform]? = nil, transferPerMonthInGb: Int? = nil)
View on GitHub
Bundle Structure Reference