interface CfnRunGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnRunGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnRunGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnRunGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnRunGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnRunGroupMixinProps |
Properties for CfnRunGroupPropsMixin.
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 { mixins as omics_mixins } from '@aws-cdk/mixins-preview/aws-omics';
const cfnRunGroupMixinProps: omics_mixins.CfnRunGroupMixinProps = {
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.

.NET
Go
Java
Python
TypeScript