Interface ICfnRunGroupMixinProps
Properties for CfnRunGroupPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Omics
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnRunGroupMixinProps
Syntax (vb)
Public Interface 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
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. |
Properties
MaxCpus
The group's maximum CPU count setting.
double? MaxCpus { get; }
Property Value
Remarks
MaxDuration
The group's maximum duration setting in minutes.
double? MaxDuration { get; }
Property Value
Remarks
MaxGpus
The maximum GPUs that can be used by a run group.
double? MaxGpus { get; }
Property Value
Remarks
MaxRuns
The group's maximum concurrent run setting.
double? MaxRuns { get; }
Property Value
Remarks
Name
The group's name.
string? Name { get; }
Property Value
Remarks
Tags
Tags for the group.
IDictionary<string, string>? Tags { get; }