import CloudRegion from './CloudRegion'; /** * @export * @class InfrastructureSettings */ export declare class InfrastructureSettings { /** * Id of a custom infrastructure, e.g., AWS Cloud Connect * @type {string} * @memberof InfrastructureSettings */ infrastructureId?: string; /** * @type {CloudRegion} * @memberof InfrastructureSettings */ cloudRegion?: CloudRegion; constructor(obj?: Partial); } export default InfrastructureSettings;