Class CfnRunGroup

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:06.060Z") @Stability(Stable) public class CfnRunGroup extends CfnResource implements IInspectable, ITaggable
You can optionally create a run group to limit the compute resources for the runs that you add to the group.

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.*;
 CfnRunGroup cfnRunGroup = CfnRunGroup.Builder.create(this, "MyCfnRunGroup")
         .maxCpus(123)
         .maxDuration(123)
         .maxGpus(123)
         .maxRuns(123)
         .name("name")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnRunGroup

      protected CfnRunGroup(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnRunGroup

      protected CfnRunGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnRunGroup

      @Stability(Stable) public CfnRunGroup(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnRunGroupProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties.
    • CfnRunGroup

      @Stability(Stable) public CfnRunGroup(@NotNull software.constructs.Construct scope, @NotNull String id)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The run group's ARN.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      When the run group was created.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The run group's ID.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getMaxCpus

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

      @Stability(Stable) public void setMaxCpus(@Nullable Number value)
      The group's maximum CPU count setting.
    • getMaxDuration

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

      @Stability(Stable) public void setMaxDuration(@Nullable Number value)
      The group's maximum duration setting in minutes.
    • getMaxGpus

      @Stability(Stable) @Nullable public Number getMaxGpus()
      The maximum GPUs that can be used by a run group.
    • setMaxGpus

      @Stability(Stable) public void setMaxGpus(@Nullable Number value)
      The maximum GPUs that can be used by a run group.
    • getMaxRuns

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

      @Stability(Stable) public void setMaxRuns(@Nullable Number value)
      The group's maximum concurrent run setting.
    • getName

      @Stability(Stable) @Nullable public String getName()
      The group's name.
    • setName

      @Stability(Stable) public void setName(@Nullable String value)
      The group's name.
    • getTagsRaw

      @Stability(Stable) @Nullable public Map<String,String> getTagsRaw()
      Tags for the group.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable Map<String,String> value)
      Tags for the group.