Interface CfnRunGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRunGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.986Z")
@Stability(Stable)
public interface CfnRunGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRunGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.omics.*;
CfnRunGroupMixinProps cfnRunGroupMixinProps = CfnRunGroupMixinProps.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 forCfnRunGroupMixinPropsstatic final classAn implementation forCfnRunGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()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
CfnRunGroupMixinProps.BuilderofCfnRunGroupMixinProps
-