@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
62 lines (61 loc) • 1.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Definition of AWS::Omics::RunGroup Resource Type
*/
export declare function getRunGroup(args: GetRunGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetRunGroupResult>;
export interface GetRunGroupArgs {
/**
* The run group's ID.
*/
id: string;
}
export interface GetRunGroupResult {
/**
* The run group's ARN.
*/
readonly arn?: string;
/**
* When the run group was created.
*/
readonly creationTime?: string;
/**
* The run group's ID.
*/
readonly id?: string;
/**
* The group's maximum CPU count setting.
*/
readonly maxCpus?: number;
/**
* The group's maximum duration setting in minutes.
*/
readonly maxDuration?: number;
/**
* The maximum GPUs that can be used by a run group.
*/
readonly maxGpus?: number;
/**
* The group's maximum concurrent run setting.
*/
readonly maxRuns?: number;
/**
* The group's name.
*/
readonly name?: string;
/**
* Tags for the group.
*/
readonly tags?: {
[key: string]: string;
};
}
/**
* Definition of AWS::Omics::RunGroup Resource Type
*/
export declare function getRunGroupOutput(args: GetRunGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRunGroupResult>;
export interface GetRunGroupOutputArgs {
/**
* The run group's ID.
*/
id: pulumi.Input<string>;
}