interface CfnRunGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Omics.CfnRunGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnRunGroupProps |
Java | software.amazon.awscdk.services.omics.CfnRunGroupProps |
Python | aws_cdk.aws_omics.CfnRunGroupProps |
TypeScript | aws-cdk-lib » aws_omics » CfnRunGroupProps |
Properties for defining a CfnRunGroup
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_omics as omics } from 'aws-cdk-lib';
const cfnRunGroupProps: omics.CfnRunGroupProps = {
maxCpus: 123,
maxDuration: 123,
maxGpus: 123,
maxRuns: 123,
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
max | number | The group's maximum CPU count setting. |
max | number | The group's maximum duration setting in minutes. |
max | number | The maximum GPUs that can be used by a run group. |
max | number | The group's maximum concurrent run setting. |
name? | string | The group's name. |
tags? | { [string]: string } | Tags for the group. |
maxCpus?
Type:
number
(optional)
The group's maximum CPU count setting.
maxDuration?
Type:
number
(optional)
The group's maximum duration setting in minutes.
maxGpus?
Type:
number
(optional)
The maximum GPUs that can be used by a run group.
maxRuns?
Type:
number
(optional)
The group's maximum concurrent run setting.
name?
Type:
string
(optional)
The group's name.
tags?
Type:
{ [string]: string }
(optional)
Tags for the group.