RegisterImageRequest
public struct RegisterImageRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The architecture of the AMI. Default: For Amazon EBS-backed AMIs, i386. For instance store-backed AMIs, the architecture specified in the manifest file.
Declaration
Swift
public let architecture: ArchitectureValues?
-
The billing product codes. Your account must be authorized to specify billing product codes. Otherwise, you can use the AWS Marketplace to bill for the use of an AMI.
Declaration
Swift
public let billingProducts: [String]?
-
The block device mapping entries.
Declaration
Swift
public let blockDeviceMappings: [BlockDeviceMapping]?
-
A description for your AMI.
Declaration
Swift
public let description: String?
-
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
Declaration
Swift
public let dryRun: Bool?
-
Set to true to enable enhanced networking with ENA for the AMI and any instances that you launch from the AMI. This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.
Declaration
Swift
public let enaSupport: Bool?
-
The full path to your AMI manifest in Amazon S3 storage. The specified bucket must have the aws-exec-read canned access control list (ACL) to ensure that it can be accessed by Amazon EC2. For more information, see Canned ACLs in the Amazon S3 Service Developer Guide.
Declaration
Swift
public let imageLocation: String?
-
The ID of the kernel.
Declaration
Swift
public let kernelId: String?
-
A name for your AMI. Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes (‘), at-signs (@), or underscores(_)
Declaration
Swift
public let name: String
-
The ID of the RAM disk.
Declaration
Swift
public let ramdiskId: String?
-
The device name of the root device volume (for example, /dev/sda1).
Declaration
Swift
public let rootDeviceName: String?
-
Set to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the AMI and any instances that you launch from the AMI. There is no way to disable sriovNetSupport at this time. This option is supported only for HVM AMIs. Specifying this option with a PV AMI can make instances launched from the AMI unreachable.
Declaration
Swift
public let sriovNetSupport: String?
-
The type of virtualization (hvm | paravirtual). Default: paravirtual
Declaration
Swift
public let virtualizationType: String?
-
init(architecture:billingProducts:blockDeviceMappings:description:dryRun:enaSupport:imageLocation:kernelId:name:ramdiskId:rootDeviceName:sriovNetSupport:virtualizationType:)
Undocumented
Declaration
Swift
public init(architecture: ArchitectureValues? = nil, billingProducts: [String]? = nil, blockDeviceMappings: [BlockDeviceMapping]? = nil, description: String? = nil, dryRun: Bool? = nil, enaSupport: Bool? = nil, imageLocation: String? = nil, kernelId: String? = nil, name: String, ramdiskId: String? = nil, rootDeviceName: String? = nil, sriovNetSupport: String? = nil, virtualizationType: String? = nil)