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();
 
  • Method Details

    • getMaxCpus

      @Stability(Stable) @Nullable default Number getMaxCpus()
      The group's maximum CPU count setting.
    • getMaxDuration

      @Stability(Stable) @Nullable default Number getMaxDuration()
      The group's maximum duration setting in minutes.
    • getMaxRuns

      @Stability(Stable) @Nullable default Number getMaxRuns()
      The group's maximum concurrent run setting.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The group's name.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      Tags for the group.
    • builder

      @Stability(Stable) static CfnRunGroupProps.Builder builder()
      Returns:
      a CfnRunGroupProps.Builder of CfnRunGroupProps