aws-cdk-lib.aws_omics.CfnRunGroupProps

interface CfnRunGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Omics.CfnRunGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnRunGroupProps
Javasoftware.amazon.awscdk.services.omics.CfnRunGroupProps
Pythonaws_cdk.aws_omics.CfnRunGroupProps
TypeScript aws-cdk-lib » aws_omics » CfnRunGroupProps

Properties for defining a CfnRunGroup.

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,
  maxRuns: 123,
  name: 'name',
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
maxCpus?numberThe group's maximum CPU count setting.
maxDuration?numberThe group's maximum duration setting in minutes.
maxRuns?numberThe group's maximum concurrent run setting.
name?stringThe 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.


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.