Class CfnRunGroupMixinProps
Properties for CfnRunGroupPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Omics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRunGroupMixinProps : ICfnRunGroupMixinProps
Syntax (vb)
Public Class CfnRunGroupMixinProps Implements ICfnRunGroupMixinProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Omics;
var cfnRunGroupMixinProps = new CfnRunGroupMixinProps {
MaxCpus = 123,
MaxDuration = 123,
MaxGpus = 123,
MaxRuns = 123,
Name = "name",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
| CfnRunGroupMixinProps() | Properties for CfnRunGroupPropsMixin. |
Properties
| MaxCpus | The group's maximum CPU count setting. |
| MaxDuration | The group's maximum duration setting in minutes. |
| MaxGpus | The maximum GPUs that can be used by a run group. |
| MaxRuns | The group's maximum concurrent run setting. |
| Name | The group's name. |
| Tags | Tags for the group. |
Constructors
CfnRunGroupMixinProps()
Properties for CfnRunGroupPropsMixin.
public CfnRunGroupMixinProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-rungroup.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Omics;
var cfnRunGroupMixinProps = new CfnRunGroupMixinProps {
MaxCpus = 123,
MaxDuration = 123,
MaxGpus = 123,
MaxRuns = 123,
Name = "name",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Properties
MaxCpus
The group's maximum CPU count setting.
public double? MaxCpus { get; set; }
Property Value
Remarks
MaxDuration
The group's maximum duration setting in minutes.
public double? MaxDuration { get; set; }
Property Value
Remarks
MaxGpus
The maximum GPUs that can be used by a run group.
public double? MaxGpus { get; set; }
Property Value
Remarks
MaxRuns
The group's maximum concurrent run setting.
public double? MaxRuns { get; set; }
Property Value
Remarks
Name
The group's name.
public string? Name { get; set; }
Property Value
Remarks
Tags
Tags for the group.
public IDictionary<string, string>? Tags { get; set; }