interface CfnRunGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Omics.CfnRunGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsomics#CfnRunGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.omics.CfnRunGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_omics.CfnRunGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_omics » 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 { aws_omics as omics } from '@aws-cdk/cfn-property-mixins';
const cfnRunGroupMixinProps: omics.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