Interface CfnRunGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRunGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:25:01.726Z")
@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 class
A builder forCfnRunGroupProps
static final class
An implementation forCfnRunGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRunGroupProps.Builder
builder()
default Number
The group's maximum CPU count setting.default Number
The group's maximum duration setting in minutes.default Number
The maximum GPUs that can be used by a run group.default Number
The group's maximum concurrent run setting.default String
getName()
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.Builder
ofCfnRunGroupProps
-