Interface CfnRunGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRunGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.540Z")
@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) .maxRuns(123) .name("name") .tags(Map.of( "tagsKey", "tags")) .build();
-
Nested Class Summary
Modifier 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 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. -
getMaxDuration
The group's maximum duration setting in minutes. -
getMaxRuns
The group's maximum concurrent run setting. -
getName
The group's name. -
getTags
Tags for the group. -
builder
- Returns:
- a
CfnRunGroupProps.Builder
ofCfnRunGroupProps
-