Interface CfnRunGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRunGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:40.934Z")
@Stability(Stable)
public interface CfnRunGroupProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
CfnRunGroupProps cfnRunGroupProps = CfnRunGroupProps.builder()
.maxCpus(123)
.maxDuration(123)
.maxGpus(123)
.maxRuns(123)
.name("name")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRunGroupPropsstatic final classAn implementation forCfnRunGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRunGroupProps.Builderbuilder()default NumberThe group's maximum CPU count setting.default NumberThe group's maximum duration setting in minutes.default NumberThe maximum GPUs that can be used by a run group.default NumberThe group's maximum concurrent run setting.default StringgetName()The group's name.getTags()Tags for the group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxCpus
The group's maximum CPU count setting.- See Also:
-
getMaxDuration
The group's maximum duration setting in minutes.- See Also:
-
getMaxGpus
The maximum GPUs that can be used by a run group.- See Also:
-
getMaxRuns
The group's maximum concurrent run setting.- See Also:
-
getName
The group's name.- See Also:
-
getTags
Tags for the group.- See Also:
-
builder
- Returns:
- a
CfnRunGroupProps.BuilderofCfnRunGroupProps
-