export declare const ClusterAccountingMode: { readonly Standard: "STANDARD"; readonly None: "NONE"; }; /** * The default value is `NONE`. A value of `STANDARD` means that Slurm accounting is enabled. */ export type ClusterAccountingMode = (typeof ClusterAccountingMode)[keyof typeof ClusterAccountingMode]; export declare const ClusterEndpointType: { readonly Slurmctld: "SLURMCTLD"; readonly Slurmdbd: "SLURMDBD"; readonly Slurmrestd: "SLURMRESTD"; }; /** * Indicates the type of endpoint running at the specific IP address. */ export type ClusterEndpointType = (typeof ClusterEndpointType)[keyof typeof ClusterEndpointType]; export declare const ClusterNetworkingPropertiesNetworkType: { readonly Ipv4: "IPV4"; readonly Ipv6: "IPV6"; }; /** * The IP of the cluster (IPV4 or IPV6) */ export type ClusterNetworkingPropertiesNetworkType = (typeof ClusterNetworkingPropertiesNetworkType)[keyof typeof ClusterNetworkingPropertiesNetworkType]; export declare const ClusterSchedulerPropertiesType: { readonly Slurm: "SLURM"; }; /** * The software AWS PCS uses to manage cluster scaling and job scheduling. */ export type ClusterSchedulerPropertiesType = (typeof ClusterSchedulerPropertiesType)[keyof typeof ClusterSchedulerPropertiesType]; export declare const ClusterSize: { readonly Small: "SMALL"; readonly Medium: "MEDIUM"; readonly Large: "LARGE"; }; /** * The size of the cluster. */ export type ClusterSize = (typeof ClusterSize)[keyof typeof ClusterSize]; export declare const ClusterSlurmRestMode: { readonly Standard: "STANDARD"; readonly None: "NONE"; }; /** * The default value is `NONE`. A value of `STANDARD` means that Slurm Rest is enabled. */ export type ClusterSlurmRestMode = (typeof ClusterSlurmRestMode)[keyof typeof ClusterSlurmRestMode]; export declare const ClusterStatus: { readonly Creating: "CREATING"; readonly Active: "ACTIVE"; readonly Updating: "UPDATING"; readonly Deleting: "DELETING"; readonly CreateFailed: "CREATE_FAILED"; readonly DeleteFailed: "DELETE_FAILED"; readonly UpdateFailed: "UPDATE_FAILED"; }; /** * The provisioning status of the cluster. The provisioning status doesn't indicate the overall health of the cluster. */ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus]; export declare const ComputeNodeGroupPurchaseOption: { readonly Ondemand: "ONDEMAND"; readonly Spot: "SPOT"; readonly CapacityBlock: "CAPACITY_BLOCK"; }; /** * Specifies how EC2 instances are purchased on your behalf. AWS PCS supports On-Demand, Spot and Capacity Block instances. For more information, see Instance purchasing options in the Amazon Elastic Compute Cloud User Guide. If you don't provide this option, it defaults to On-Demand. */ export type ComputeNodeGroupPurchaseOption = (typeof ComputeNodeGroupPurchaseOption)[keyof typeof ComputeNodeGroupPurchaseOption]; export declare const ComputeNodeGroupSpotOptionsPropertiesAllocationStrategy: { readonly LowestPrice: "lowest-price"; readonly CapacityOptimized: "capacity-optimized"; readonly PriceCapacityOptimized: "price-capacity-optimized"; }; /** * The Amazon EC2 allocation strategy AWS PCS uses to provision EC2 instances. AWS PCS supports lowest price, capacity optimized, and price capacity optimized. If you don't provide this option, it defaults to price capacity optimized. */ export type ComputeNodeGroupSpotOptionsPropertiesAllocationStrategy = (typeof ComputeNodeGroupSpotOptionsPropertiesAllocationStrategy)[keyof typeof ComputeNodeGroupSpotOptionsPropertiesAllocationStrategy]; export declare const ComputeNodeGroupStatus: { readonly Creating: "CREATING"; readonly Active: "ACTIVE"; readonly Updating: "UPDATING"; readonly Deleting: "DELETING"; readonly CreateFailed: "CREATE_FAILED"; readonly DeleteFailed: "DELETE_FAILED"; readonly UpdateFailed: "UPDATE_FAILED"; }; /** * The provisioning status of the compute node group. The provisioning status doesn't indicate the overall health of the compute node group. */ export type ComputeNodeGroupStatus = (typeof ComputeNodeGroupStatus)[keyof typeof ComputeNodeGroupStatus]; export declare const QueueStatus: { readonly Creating: "CREATING"; readonly Active: "ACTIVE"; readonly Updating: "UPDATING"; readonly Deleting: "DELETING"; readonly CreateFailed: "CREATE_FAILED"; readonly DeleteFailed: "DELETE_FAILED"; readonly UpdateFailed: "UPDATE_FAILED"; }; /** * The provisioning status of the queue. The provisioning status doesn't indicate the overall health of the queue. */ export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];