/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CloudOsVersionCode } from './cloud-os-version-code';
/**
 *
 * @export
 * @interface CloudServiceSettingsAwsEc2
 */
export interface CloudServiceSettingsAwsEc2 {
    /**
     * The instance type to be launched on the cloud provider
     * @type {string}
     * @memberof CloudServiceSettingsAwsEc2
     */
    instance_type: string;
    /**
     * Datacenter region where the cloud instance will be launched
     * @type {string}
     * @memberof CloudServiceSettingsAwsEc2
     */
    region: string;
    /**
     * Human readable version of the server region
     * @type {string}
     * @memberof CloudServiceSettingsAwsEc2
     */
    region_human_readable?: string;
    /**
     * The storage\'s size of the cloud instance
     * @type {number}
     * @memberof CloudServiceSettingsAwsEc2
     */
    storage_size: number;
    /**
     *
     * @type {CloudOsVersionCode}
     * @memberof CloudServiceSettingsAwsEc2
     */
    os_version_code: CloudOsVersionCode | null;
}
